From 1c462af51be8e7c620b7cc2cfaeed566c7487bf3 Mon Sep 17 00:00:00 2001 From: Stephan Lo Date: Thu, 23 Oct 2025 17:15:14 +0200 Subject: [PATCH] fix: ensure package-lock.json is included in Docker build context npm ci requires package-lock.json to be present in the build context. Explicitly allow package-lock.json in .dockerignore to fix CI build failure. --- .dockerignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.dockerignore b/.dockerignore index 5e7f187..ba5225d 100644 --- a/.dockerignore +++ b/.dockerignore @@ -17,3 +17,6 @@ devbox.lock .htmltest.yml .htmlvalidate.json .markdownlint.json + +# Ensure package-lock.json is included for npm ci +!package-lock.json