From b5214973ce31253cf2457730f32ff4b0bda8d4ee Mon Sep 17 00:00:00 2001 From: Anatolii Grynchuk Date: Sat, 2 May 2026 03:23:04 +0300 Subject: [PATCH] chore: exclude NuGet.Config from docker build context NuGet.Config sets globalPackagesFolder to %USERPROFILE% for Windows. Docker Linux builds must not inherit this - they use /root/.nuget/packages by default. Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .dockerignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index c366a5d..a67c691 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,4 +5,5 @@ **/obj **/*.user **/*.suo -**/TestResults \ No newline at end of file +**/TestResults +NuGet.Config \ No newline at end of file