From db5c90d8bad050fc1d4100e84b372024a348f13a Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 19 May 2025 10:00:58 +0200 Subject: [PATCH] Fix: Dockerfile build path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7d0a453..e799d84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,6 @@ FROM nginxinc/nginx-unprivileged COPY ./nginx.conf /etc/nginx/conf.d/default.conf #### copy artifact build from the 'build environment' -COPY --from=build /usr/src/app/dist/bookproject /usr/share/nginx/html +COPY --from=build /usr/src/app/dist/angular-dot-io /usr/share/nginx/html CMD ["nginx", "-g", "daemon off;"]