add read perms to nginx-entrypoint

This commit is contained in:
Salah Aldin Fateh 2023-01-20 19:16:03 +03:00 committed by GitHub
parent e9f28c9932
commit 7c96ff6653
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ RUN useradd -ms /bin/bash frappe \
&& chown -R frappe:frappe /var/log/nginx \
&& chown -R frappe:frappe /var/lib/nginx \
&& chown -R frappe:frappe /run/nginx.pid \
&& chmod +x /usr/local/bin/nginx-entrypoint.sh
&& chmod 755 /usr/local/bin/nginx-entrypoint.sh
FROM base AS builder