This commit is contained in:
2021-06-29 12:37:08 +03:00
commit 12fdc96d20
282 changed files with 13627 additions and 0 deletions

13
rsync/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
ARG BUILD_FROM
FROM $BUILD_FROM AS RUNNING
RUN apk update && \
apk add --no-cache \
'rsync=3.2.3-r1' \
'openssh-client=8.4_p1-r3' \
'coreutils=8.32-r2'
COPY run.sh /
RUN chmod a+x /run.sh
ENTRYPOINT [ "/run.sh" ]