Remove package-lock.json from .dockerignore to ensure dependencies are installed correctly during Docker build.

This commit is contained in:
2026-01-10 16:02:57 +00:00
parent ad3101fea3
commit 146814084b
2 changed files with 2 additions and 1 deletions

View File

@@ -6,6 +6,5 @@ dist
*.md *.md
Dockerfile Dockerfile
.dockerignore .dockerignore
package-lock.json

View File

@@ -22,3 +22,5 @@ This plan outlines the steps for dockerizing the Nemia application for deploymen
Removed "free for up to 3 decks" claim, simplified footer by removing Product/Resource columns and GitHub icon, updated copyright year to 2026, and replaced all placeholder logos with assets/images/icon.png. Removed "free for up to 3 decks" claim, simplified footer by removing Product/Resource columns and GitHub icon, updated copyright year to 2026, and replaced all placeholder logos with assets/images/icon.png.
9. Implement Launchlist Waitlist. [Done] 9. Implement Launchlist Waitlist. [Done]
Added email input forms in Hero and CallToAction components that submit directly to the Launchlist action URL. Added email input forms in Hero and CallToAction components that submit directly to the Launchlist action URL.
10. Fix Docker Build Context. [Done]
Removed `package-lock.json` from `.dockerignore` to allow the build stage to correctly install dependencies.