mirror of https://github.com/bastienwirtz/homer
Create Dockerfile
parent
5fe53dce3c
commit
7d5c71d7ae
|
@ -0,0 +1,15 @@
|
|||
FROM alpine:3.11
|
||||
|
||||
COPY ./ /www/
|
||||
|
||||
ENV USER abc
|
||||
ENV GROUP abc
|
||||
ENV GID 911
|
||||
ENV UID 911
|
||||
|
||||
RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
|
||||
apk add -U darkhttpd
|
||||
|
||||
USER abc
|
||||
|
||||
ENTRYPOINT ["darkhttpd","/www/"]
|
Loading…
Reference in New Issue