wiki/.actions/rsync/Dockerfile
Ludovic Cartier 8d7a64cc9a
Some checks failed
mkdocs build / build (push) Failing after 3s
remove release action & add rsync action
2024-08-29 16:56:43 +02:00

11 lines
160 B
Docker

FROM debian:stable-slim
RUN apt update
RUN apt install -y rsync
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]