]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Update Dockerfile 12/head
authorLukas M <lukas.mrtvy@gmail.com>
Sat, 1 Feb 2020 07:55:49 +0000 (08:55 +0100)
committerGitHub <noreply@github.com>
Sat, 1 Feb 2020 07:55:49 +0000 (08:55 +0100)
Dockerfile

index df889349839d9ba4c0369706f33a50deeec7ed3f..66788b483963f6d583e53426c1bc24f32152b6f6 100644 (file)
@@ -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/"]