From 6fd9293be11e6e0b476bd39d9b0735fe3d4c16ac Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sun, 5 Oct 2025 17:12:32 +0300 Subject: [PATCH] fix: update Dockerfile to copy content files from builder instead of individual configuration files --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b98e16..eda9cf2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,9 +17,8 @@ RUN npm ci # Copy source code COPY src/ ./src/ -# Copy configuration files needed for build -COPY ReleaseNotes.json ./ -COPY Overview.json ./ +# Copy content files needed for build +COPY --from=builder /app/content ./content # Build both frontend and backend ARG APP_SUBFOLDER=""