From 876bc33573a9a8177a9649ad695a0c119b2c8b4a Mon Sep 17 00:00:00 2001 From: ruberoid Date: Thu, 16 Oct 2025 22:47:14 +0400 Subject: [PATCH] Modified .dockerignore files for more optimizations --- .dockerignore | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index cd967fc..395521e 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,12 +2,15 @@ **/.env **/.git **/.gitignore +**/.gitattributes +**/.gitmodules **/.project **/.settings **/.toolstarget **/.vs **/.vscode **/.idea +**/.fleet **/*.*proj.user **/*.dbmdl **/*.jfm @@ -19,7 +22,43 @@ **/node_modules **/npm-debug.log **/obj +**/packages **/secrets.dev.yaml **/values.dev.yaml LICENSE -README.md \ No newline at end of file +README.md + +# Test artifacts +**/TestResults/ +**/test-results/ +**/tests/ +**/*Tests/ +**/*.Tests/ +**/*Test/ +**/*.Test/ + +# CI/CD +**/.drone.yml +**/_deploy/ + +# Temporary and log files +**/*.tmp +**/*.log +**/*.swp +**/*.swo +**/~* + +# OS files +**/.DS_Store +**/Thumbs.db + +# NuGet packages +**/*.nupkg +**/*.snupkg + +# Development config files +**/appsettings.Development.json +**/appsettings.*.json.example +**/.nocr.env +**/.nocr.env.example +**/launchSettings.json \ No newline at end of file