fix: Add .dockerignore to prevent .nixpacks auto-generation

- Block .nixpacks folder from being used
- Force Easypanel to use root Dockerfile
- Ignore node_modules, dist, .git, IDE files
This commit is contained in:
Kunthawat Greethong
2026-03-03 14:05:27 +07:00
parent 924ef0d9f6
commit 74bee2ab92

View File

@@ -1,10 +1,20 @@
# See https://docs.docker.com/desktop/extensions-sdk/extensions/ignore/ for more details. # Ignore auto-generated nixpacks folder
node_modules .nixpacks/
dist node_modules/
*.log dist/
.git .git/
.gitignore .gitignore
README.md *.log
.DS_Store
# Development
.env .env
.env.* .env.local
!node_modules/.dockerignore .env.*.local
# IDE
.vscode/
.idea/
# Build
.astro/