From d8007c08877289d94a2ab01748cb17dcfa61e29d Mon Sep 17 00:00:00 2001 From: David Date: Mon, 17 Nov 2025 12:33:10 +0100 Subject: [PATCH] fix: allow package-lock.json in frontend Docker build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- apps/frontend/.dockerignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/.dockerignore b/apps/frontend/.dockerignore index 692bc6e..2995108 100644 --- a/apps/frontend/.dockerignore +++ b/apps/frontend/.dockerignore @@ -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