Woodpecker-Webdav/Dockerfile

9 lines
141 B
Docker

FROM debian:unstable-slim
RUN apt update
RUN apt install curl -y
COPY push.sh /bin/
RUN chmod +x /bin/push.sh
ENTRYPOINT ["/bin/push.sh"]