diff --git a/Dockerfile b/Dockerfile index 452478f..0e269b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,10 +18,10 @@ RUN rm -rf /usr/share/nginx/html/* && \ # COPY nginx.conf /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/conf.d/ -COPY --from=builder /app/.output/public /usr/share/nginx/html +COPY --from=builder /app/.output/public /var/www/html -RUN chown -R nginx:nginx /usr/share/nginx/html && \ - chmod -R 755 /usr/share/nginx/html +RUN chown -R nginx:nginx /var/www/html && \ + chmod -R 755 /var/www/html EXPOSE 80