Add 'Dockerfile'
This commit is contained in:
parent
6f42cf2422
commit
ae5589781c
14
Dockerfile
Normal file
14
Dockerfile
Normal 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 []
|
Loading…
Reference in New Issue
Block a user