]> git.p6c8.net - jirafeau.git/blobdiff - Dockerfile
[TASK] better to test docker image before releasing
[jirafeau.git] / Dockerfile
index e88b532b52c3e8012314c660a2ae203acf772c8e..f0071d0679aa563b3b4371cfd021427686f21d09 100644 (file)
@@ -1,6 +1,10 @@
 FROM php:7.3-fpm-alpine
-MAINTAINER "Jérôme Jutteau <mojo@jirafeau.net>"
-ARG USER_UID=2009
+MAINTAINER "Jérôme Jutteau <jerome@jutteau.fr>"
+
+# 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

patrick-canterino.de