Woodpecker-Webdav/Dockerfile
2023-03-22 15:26:53 -05:00

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"]