From 5588444d0130c4f26caa0bbf4d151aea15665af8 Mon Sep 17 00:00:00 2001 From: Marc Emmanuel Date: Sun, 11 Jan 2026 20:56:18 +0100 Subject: [PATCH] fix: update Dockerfile to copy only the dist folder contents --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fbf5a425..d3d6005e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM nginx:stable-alpine # Copy the contents of the repo to the container -COPY . /usr/share/nginx/html +COPY ./dist /usr/share/nginx/html # Move the customized nginx config file to the nginx folder RUN mv /usr/share/nginx/html/.docker/default.conf /etc/nginx/conf.d/default.conf