From 96bf2628847b1389928e8e850decdb52b49752db Mon Sep 17 00:00:00 2001 From: jafreli Date: Sat, 31 Jan 2026 01:50:34 +0100 Subject: [PATCH] test --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 07cae67..e063d87 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -26,7 +26,7 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf # Copy the built application from the builder stage to Nginx's web root directory # I am assuming the project name is 'dashboard'. If not, you may need to change the path 'dist/dashboard/browser'. -COPY --from=builder /app/dist/frontend/. /usr/share/nginx/html +COPY --from=builder /app/dist/frontend/browser/. /usr/share/nginx/html # Expose port 80 for the web server EXPOSE 80