fix: allow package-lock.json in frontend Docker build
All checks were successful
CI/CD Pipeline / Backend - Build, Test & Push (push) Successful in 17m2s
CI/CD Pipeline / Frontend - Build, Test & Push (push) Successful in 31m59s
CI/CD Pipeline / Integration Tests (push) Has been skipped
CI/CD Pipeline / Deployment Summary (push) Successful in 1s

The .dockerignore was excluding package-lock.json, causing npm ci to fail
with "The npm ci command can only install with an existing package-lock.json".

Commented out the package-lock.json line in .dockerignore to allow it to be
copied into the Docker build context.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
David 2025-11-17 12:33:10 +01:00
parent f25dbd7ab9
commit d8007c0887

View File

@ -2,7 +2,7 @@
node_modules
npm-debug.log
yarn-error.log
package-lock.json
# package-lock.json is needed for npm ci in Docker builds
yarn.lock
pnpm-lock.yaml