Add 'Dockerfile'

This commit is contained in:
Danny Bessems 2020-11-08 19:17:31 +00:00
parent 6f42cf2422
commit ae5589781c
1 changed files with 14 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
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 []