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.
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
.htmlvalidate.json
.markdownlint.json
# Ensure package-lock.json is included for npm ci
!package-lock.json