From e5898aab0d241816302f3ae1ad967588f077aa50 Mon Sep 17 00:00:00 2001 From: Marc Emmanuel Date: Sun, 11 Jan 2026 21:10:14 +0100 Subject: [PATCH] fix: correct nginx config file copy command in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eb179d16..d480ba3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,5 +22,5 @@ FROM nginx:stable-alpine # Copy built files from builder stage COPY --from=builder /app/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 +# Copy the customized nginx config file to the nginx folder +COPY .docker/default.conf /etc/nginx/conf.d/default.conf