X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/78a1c41c40bb216e3879220fc544f8ae816d3c1b..b6f423726c6f71c769fc7d7f3b842f623595a808:/Dockerfile?ds=inline

diff --git a/Dockerfile b/Dockerfile
index fe59b7e..f0071d0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,10 @@
 FROM php:7.3-fpm-alpine
 MAINTAINER "Jérôme Jutteau <jerome@jutteau.fr>"
-ARG USER_UID=2009
+
+# lighttpd user
+ARG USER_UID=100
+# www-data group
+ARG GROUP_UID=82
 
 # install base
 RUN apk update && \
@@ -15,7 +19,7 @@ COPY .git .git
 RUN apk add git && \
     git reset --hard && rm -rf .git .gitignore .gitlab-ci.yml CONTRIBUTING.md Dockerfile README.md && \
     apk del git && \
-    chown -R $USER_UID /www && \
+    chown -R $USER_UID.$GROUP_UID /www && \
     chmod o=,ug=rwX -R /www && \
     chmod +x docker/cleanup
 
@@ -35,4 +39,4 @@ RUN rm -rf /var/cache/apk/*
 
 
 CMD /www/docker/cleanup & php-fpm -D && lighttpd -D -f /etc/lighttpd/lighttpd.conf
-EXPOSE 80
+EXPOSE 80
\ No newline at end of file