diff --git a/frontend/Dockerfile b/frontend/Dockerfile index d19cb91..489cebd 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -8,6 +8,6 @@ RUN npm run build # Production Stage FROM nginx:stable-alpine AS production -COPY --from=build /app/build /usr/share/nginx/html +COPY --from=build /app/.next /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]