From 1bab107bad311bd9df6987c45c8fbd88acd7aa4e Mon Sep 17 00:00:00 2001 From: James Brumond Date: Sun, 14 May 2023 13:13:22 -0700 Subject: [PATCH] add chmod to dockerfile so nginx has access to all files --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a4487f0..6db3543 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ EXPOSE 80 # actual web content COPY www/ /usr/share/nginx/html +RUN chmod -R 444 /usr/share/nginx/html # nginx config files COPY conf/nginx.conf /etc/nginx/nginx.conf