From 86e301cad66b1411a6fbcb6010d5a468b574f263 Mon Sep 17 00:00:00 2001 From: Arif Hasanic Date: Fri, 29 Aug 2025 14:28:36 +0200 Subject: [PATCH] fix typo in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 210a55f..d0a0e46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM nginx:alpine RUN rm -rf /usr/share/nginx/html/* # Copy build output from dist folder to nginx html directory -COPY dist/ /usr/share/nginx/html/ +COPY build/ /usr/share/nginx/html/ # Copy custom nginx config COPY nginx.conf /etc/nginx/nginx.conf