fix: update Dockerfile to copy content files from builder instead of individual configuration files

This commit is contained in:
Tudor Stanciu 2025-10-05 17:12:32 +03:00
parent 07412e620d
commit 6fd9293be1

View File

@ -17,9 +17,8 @@ RUN npm ci
# Copy source code # Copy source code
COPY src/ ./src/ COPY src/ ./src/
# Copy configuration files needed for build # Copy content files needed for build
COPY ReleaseNotes.json ./ COPY --from=builder /app/content ./content
COPY Overview.json ./
# Build both frontend and backend # Build both frontend and backend
ARG APP_SUBFOLDER="" ARG APP_SUBFOLDER=""