From fc69081c940f44f89a1faca73a321cb8e1dea3b8 Mon Sep 17 00:00:00 2001 From: Lukas M Date: Sat, 1 Feb 2020 08:55:49 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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/"] -- 2.41.0