74 lines
		
	
	
		
			759 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			759 B
		
	
	
	
		
			Plaintext
		
	
	
| # .dockerignore - Exclude unnecessary files from Docker build context
 | |
| 
 | |
| # Git
 | |
| .git
 | |
| .gitignore
 | |
| .gitattributes
 | |
| 
 | |
| # Documentation
 | |
| *.md
 | |
| README*
 | |
| 
 | |
| # IDE and editor files
 | |
| .vscode/
 | |
| .vs/
 | |
| *.swp
 | |
| *.swo
 | |
| *~
 | |
| 
 | |
| # OS generated files
 | |
| .DS_Store
 | |
| .DS_Store?
 | |
| ._*
 | |
| .Spotlight-V100
 | |
| .Trashes
 | |
| ehthumbs.db
 | |
| Thumbs.db
 | |
| 
 | |
| # Build outputs
 | |
| bin/
 | |
| obj/
 | |
| out/
 | |
| dist/
 | |
| 
 | |
| # Node modules (will be installed in container)
 | |
| node_modules/
 | |
| npm-debug.log*
 | |
| 
 | |
| # .NET
 | |
| *.user
 | |
| *.userosscache
 | |
| *.sln.docstates
 | |
| *.userprefs
 | |
| 
 | |
| # Test results
 | |
| TestResults/
 | |
| [Dd]ebug/
 | |
| [Dd]ebugPublic/
 | |
| [Rr]elease/
 | |
| [Rr]eleases/
 | |
| x64/
 | |
| x86/
 | |
| build/
 | |
| bld/
 | |
| [Bb]in/
 | |
| [Oo]bj/
 | |
| 
 | |
| # Package files
 | |
| *.nupkg
 | |
| *.snupkg
 | |
| 
 | |
| # Logs
 | |
| logs
 | |
| *.log
 | |
| 
 | |
| # Environment files
 | |
| .env
 | |
| .env.local
 | |
| .env.development.local
 | |
| .env.test.local
 | |
| .env.production.local
 | |
| 
 | |
| # Temporary files
 | |
| *.tmp
 | |
| *.temp |