chore: set file permission for custom image

accepted as per suggestion from users
not required for linux runners
This commit is contained in:
Revant Nandgaonkar 2023-01-21 16:44:04 +05:30
parent 7c96ff6653
commit cc80e80d6c

View file

@ -64,7 +64,8 @@ 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 755 /usr/local/bin/nginx-entrypoint.sh
&& chmod 755 /usr/local/bin/nginx-entrypoint.sh \
&& chmod 644 /templates/nginx/frappe.conf.template
FROM base AS builder