fix: ensure package-lock.json is included in Docker build context
Some checks failed
ci / build (push) Failing after 46s

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.
This commit is contained in:
Stephan Lo 2025-10-23 17:15:14 +02:00
parent fb4ecf6df4
commit 1c462af51b

View file

@ -17,3 +17,6 @@ devbox.lock
.htmltest.yml .htmltest.yml
.htmlvalidate.json .htmlvalidate.json
.markdownlint.json .markdownlint.json
# Ensure package-lock.json is included for npm ci
!package-lock.json