drone-webdav/Dockerfile

8 lines
157 B
Docker
Raw Permalink Normal View History

2023-07-25 22:06:04 +00:00
FROM alpine:3.17
2017-05-27 06:56:22 +00:00
2023-07-25 22:06:04 +00:00
RUN apk --no-cache add bash=~5 curl=~8 ca-certificates=~20230506
COPY push.sh /bin/
2017-05-27 06:56:22 +00:00
RUN chmod +x /bin/push.sh
ENTRYPOINT ["/bin/push.sh"]