Danny Bessems
26cb1f0438
All checks were successful
continuous-integration/drone/push Build is passing
15 lines
300 B
Docker
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 [] |