mirror of
https://github.com/ViViDboarder/drone-webdav.git
synced 2025-01-04 19:47:33 +00:00
8 lines
157 B
Docker
8 lines
157 B
Docker
FROM alpine:3.17
|
|
|
|
RUN apk --no-cache add bash=~5 curl=~8 ca-certificates=~20230506
|
|
COPY push.sh /bin/
|
|
RUN chmod +x /bin/push.sh
|
|
|
|
ENTRYPOINT ["/bin/push.sh"]
|