fix(DOCKERFILE): missing backslash in run cmd

This commit is contained in:
Asif Bacchus 2021-01-07 10:10:35 -07:00
parent c08d3f1c37
commit 4901116443
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ RUN chown -R www-docker:www-docker /usr/share/nginx \
&& find /usr/share/nginx -type f -exec chmod 644 {} \; \
&& chown -R www-docker:www-docker /etc/nginx \
&& find /etc/nginx -type d -exec chmod 750 {} \; \
&& find /etc/nginx -type f -exec chmod 640 {} \;
&& find /etc/nginx -type f -exec chmod 640 {} \; \
&& chown www-docker:www-docker /var/cache/nginx \
&& chown www-docker:www-docker /var/log/nginx
USER www-docker