ContainerImage.InotifyRsync/Dockerfile

14 lines
286 B
Docker
Raw Normal View History

2020-11-08 19:17:31 +00:00
FROM alpine:latest
RUN apk upgrade --update-cache --available && \
apk add \
inotify-tools && \
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 []