# .dockerignore for ColaFlow API # Optimizes Docker build context by excluding unnecessary files # ================================================================================================ # Build Artifacts # ================================================================================================ **/bin/ **/obj/ [Dd]ebug/ [Rr]elease/ x64/ x86/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ # ================================================================================================ # IDE and Editor Files # ================================================================================================ .vs/ .vscode/ .idea/ *.user *.suo *.userosscache *.sln.docstates *.swp *~ # ================================================================================================ # Test Results # ================================================================================================ [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* *.trx *.coverage *.coveragexml TestResults/ # ================================================================================================ # NuGet # ================================================================================================ *.nupkg *.snupkg packages/ .nuget/ # ================================================================================================ # Git # ================================================================================================ .git/ .gitignore .gitattributes # ================================================================================================ # Docker # ================================================================================================ Dockerfile .dockerignore docker-compose*.yml # ================================================================================================ # Documentation and Others # ================================================================================================ *.md *.log *.bak *.tmp .DS_Store Thumbs.db .editorconfig # ================================================================================================ # Environment and Secrets (should never be in Docker context) # ================================================================================================ .env .env.local appsettings.Development.json appsettings.*.json *.pfx *.pem