ContainerImage.InotifyRsync/Dockerfile
Danny Bessems 26cb1f0438
All checks were successful
continuous-integration/drone/push Build is passing
Update 'Dockerfile'
2020-11-09 07:54:42 +00:00

15 lines
300 B
Docker

FROM alpine:latest
RUN apk upgrade --update-cache --available && \
apk add \
inotify-tools \
rsync && \
rm -rf /var/lib/apt/lists/* && \
rm /var/cache/apk/*
COPY init/entrypoint.sh /tmp/entrypoint.sh
RUN chmod +x /tmp/entrypoint.sh
ENTRYPOINT ["/tmp/entrypoint.sh"]
CMD []