From cc80e80d6c2a11d7b7195ad04a370c28a3a2e15d Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Sat, 21 Jan 2023 16:44:04 +0530 Subject: [PATCH] chore: set file permission for custom image accepted as per suggestion from users not required for linux runners --- images/custom/Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/images/custom/Containerfile b/images/custom/Containerfile index 52f37ac7..0b12e377 100644 --- a/images/custom/Containerfile +++ b/images/custom/Containerfile @@ -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