From: Lukas M Date: Sat, 1 Feb 2020 07:55:49 +0000 (+0100) Subject: Update Dockerfile X-Git-Tag: v1.0~9^2 X-Git-Url: https://git.immae.eu/?p=github%2Fbastienwirtz%2Fhomer.git;a=commitdiff_plain;h=fc69081c940f44f89a1faca73a321cb8e1dea3b8 Update Dockerfile --- 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/"]