Files
hassio-addons-avm/rsync-local/Dockerfile
2021-06-29 12:37:08 +03:00

13 lines
195 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM AS RUNNING
RUN apk update && \
apk add --no-cache \
'rsync=3.2.3-r1' \
'coreutils=8.32-r2'
COPY run.sh /
RUN chmod a+x /run.sh
ENTRYPOINT [ "/run.sh" ]