diff --git a/Dockerfile b/Dockerfile index df88934..66788b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,14 @@ FROM alpine:3.11 COPY ./ /www/ -ENV USER abc -ENV GROUP abc +ENV USER darkhttpd +ENV GROUP darkhttpd 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 +USER darkhttpd ENTRYPOINT ["darkhttpd","/www/"]