diff --git a/Dockerfile b/Dockerfile index 34cf8b4..3b212fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN yarn build #Stage 2 FROM nginx:1.20-alpine -COPY --from=build-deps /usr/src/app/build /var/www +COPY --from=build-deps /usr/src/app/public /var/www COPY default.conf /etc/nginx/templates/default.conf.template EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]