forked from extern/homer
Create Dockerfile
This commit is contained in:
parent
5fe53dce3c
commit
7d5c71d7ae
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -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
Block a user