git.p6c8.net
/
jirafeau_mojo42.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[TASK] centralize error reporting config
[jirafeau_mojo42.git]
/
Dockerfile
diff --git
a/Dockerfile
b/Dockerfile
index fe59b7ea9e0aba44ffa368cf287e46d03e03387a..f0071d0679aa563b3b4371cfd021427686f21d09 100644
(file)
--- a/
Dockerfile
+++ b/
Dockerfile
@@
-1,6
+1,10
@@
FROM php:7.3-fpm-alpine
MAINTAINER "Jérôme Jutteau <jerome@jutteau.fr>"
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 && \
# 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 && \
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
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
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