add chmod to dockerfile so nginx has access to all files
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
James Brumond 2023-05-14 13:13:22 -07:00
parent 656d2346f6
commit 1bab107bad
Signed by: james
GPG Key ID: E8F2FC44BAA3357A

View File

@ -4,6 +4,7 @@ EXPOSE 80
# actual web content # actual web content
COPY www/ /usr/share/nginx/html COPY www/ /usr/share/nginx/html
RUN chmod -R 444 /usr/share/nginx/html
# nginx config files # nginx config files
COPY conf/nginx.conf /etc/nginx/nginx.conf COPY conf/nginx.conf /etc/nginx/nginx.conf