From 7de4f3784bcec23940cfe0d9090a17e78fdd3d2b Mon Sep 17 00:00:00 2001 From: shahdlala66 Date: Wed, 6 May 2026 09:19:03 +0200 Subject: [PATCH] fix: path problem Co-authored-by: Copilot --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1bf6edc..1f05e67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ FROM nginx:stable-alpine COPY nginx.conf /etc/nginx/conf.d/default.conf -COPY --from=build /app/dist/nowchess-frontend /usr/share/nginx/html +COPY --from=build /app/dist/nowchess-frontend/browser /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]