From b66bc0cdf24f336341c0f9b927c135254a3ffa9a Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Wed, 2 Apr 2025 17:50:00 +0100 Subject: [PATCH] Fixing Dockerfile --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;"]