Docker config
This commit is contained in:
49
.dockerignore
Normal file
49
.dockerignore
Normal file
@ -0,0 +1,49 @@
|
||||
# Ignore node_modules (already installed in the container)
|
||||
node_modules/
|
||||
|
||||
# Ignore Next.js build output
|
||||
.next/
|
||||
out/
|
||||
|
||||
# Ignore Git-related files
|
||||
.git/
|
||||
.gitignore
|
||||
|
||||
# Ignore environment files (sensitive data)
|
||||
.env
|
||||
.env.local
|
||||
.env.development
|
||||
.env.production
|
||||
.env*.local
|
||||
|
||||
# Ignore build artifacts and caches
|
||||
.cache/
|
||||
|
||||
# Ignore logs and temporary files
|
||||
logs/
|
||||
*.log
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Ignore editor-specific files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.swp
|
||||
|
||||
# Ignore OS-specific files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Ignore TypeScript build info
|
||||
*.tsbuildinfo
|
||||
|
||||
# Ignore coverage reports
|
||||
coverage/
|
||||
|
||||
# Ignore Docker-related files (optional, since they're small)
|
||||
# Dockerfile
|
||||
# docker-compose.yml
|
||||
Reference in New Issue
Block a user