This commit is contained in:
lubiana 2024-12-12 02:16:30 +01:00
commit 4a197eed1d
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
4 changed files with 91 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM alpine:latest
RUN apk add --no-cache \
openssh \
rsync
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoints.sh
ENTRYPOINT ["/entrypoint.sh"]