drone-webdav/Dockerfile

8 lines
162 B
Docker
Raw Normal View History

FROM alpine:3.16
2017-05-27 06:56:22 +00:00
RUN apk --no-cache add bash=~5.1 curl=~7.83 ca-certificates=~20220614
COPY push.sh /bin/
2017-05-27 06:56:22 +00:00
RUN chmod +x /bin/push.sh
ENTRYPOINT ["/bin/push.sh"]