From a67a1fef8acd5020f0cfc7f1f5a8174532c577a1 Mon Sep 17 00:00:00 2001 From: JBB0807 <104856796+JBB0807@users.noreply.github.com> Date: Mon, 21 Apr 2025 18:37:54 -0700 Subject: [PATCH] corrected docker file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4adb0bc..be88841 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN npm run build FROM nginx:stable-alpine # Copy built React files into nginx public folder -COPY --from=build /app/build /usr/share/nginx/html +COPY --from=build /app/dist /usr/share/nginx/html # Remove default nginx config RUN rm /etc/nginx/conf.d/default.conf