From 70f68e5c8bf3a2ac126c72fe3943774e2a38e332 Mon Sep 17 00:00:00 2001 From: James Brumond Date: Sun, 14 May 2023 17:43:38 -0700 Subject: [PATCH] update file permissions --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6db3543..3639170 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM --platform=arm64 nginx +FROM --platform=${ARCH} nginx EXPOSE 80 # actual web content COPY www/ /usr/share/nginx/html -RUN chmod -R 444 /usr/share/nginx/html +RUN chmod -R +rX /usr/share/nginx/html # nginx config files COPY conf/nginx.conf /etc/nginx/nginx.conf