From 078c41ef7509709b277de009c9b4ede39b432ebe Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sun, 5 Oct 2025 17:14:27 +0300 Subject: [PATCH] fix: update Dockerfile to copy content files from builder stage and add runtime configuration file for frontend --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eda9cf2..938cc39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN npm ci COPY src/ ./src/ # Copy content files needed for build -COPY --from=builder /app/content ./content +COPY content ./content # Build both frontend and backend ARG APP_SUBFOLDER=""