fix/node-modules-named-volumes (#94)
Co-authored-by: openhands <openhands@all-hands.dev> Reviewed-on: https://codeberg.org/johba/harb/pulls/94
This commit is contained in:
parent
19bac420d0
commit
1c6f118f6b
9 changed files with 182 additions and 87 deletions
60
.dockerignore
Normal file
60
.dockerignore
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
# Node.js dependencies (should be in named volumes, not copied to build context)
|
||||
**/node_modules/
|
||||
node_modules/
|
||||
|
||||
# Build outputs
|
||||
**/dist/
|
||||
**/build/
|
||||
**/.next/
|
||||
**/.nuxt/
|
||||
|
||||
# Caches
|
||||
**/.cache/
|
||||
**/.vite/
|
||||
**/.ponder/
|
||||
**/.turbo/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Environment files (should be generated in containers)
|
||||
**/.env.local
|
||||
**/.env.*.local
|
||||
|
||||
# Testing
|
||||
**/coverage/
|
||||
**/.nyc_output/
|
||||
|
||||
# Git
|
||||
.git/
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Docker
|
||||
Dockerfile
|
||||
docker-compose*.yml
|
||||
.dockerignore
|
||||
|
||||
# Documentation
|
||||
*.md
|
||||
!README.md
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
Loading…
Add table
Add a link
Reference in a new issue