From 8c61069b7d48ad79f2bd95774c290f26c0fc71a5 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Thu, 12 Feb 2026 19:37:20 -0500 Subject: [PATCH] fix config --- src/Core/API/API.Core/Dockerfile | 3 ++- src/Core/API/API.Specs/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Core/API/API.Core/Dockerfile b/src/Core/API/API.Core/Dockerfile index cd61359..3c57ada 100644 --- a/src/Core/API/API.Core/Dockerfile +++ b/src/Core/API/API.Core/Dockerfile @@ -13,7 +13,8 @@ COPY ["Domain/Domain.csproj", "Domain/"] COPY ["Infrastructure/Infrastructure.Repository/Infrastructure.Repository.csproj", "Infrastructure/Infrastructure.Repository/"] COPY ["Infrastructure/Infrastructure.Jwt/Infrastructure.Jwt.csproj", "Infrastructure/Infrastructure.Jwt/"] COPY ["Infrastructure/Infrastructure.PasswordHashing/Infrastructure.PasswordHashing.csproj", "Infrastructure/Infrastructure.PasswordHashing/"] -COPY ["Service/Service.Core/Service.Core.csproj", "Service/Service.Core/"] +COPY ["Service/Service.Auth/Service.Auth.csproj", "Service/Service.Auth/"] +COPY ["Service/Service.UserManagement/Service.UserManagement.csproj", "Service/Service.UserManagement/"] RUN dotnet restore "API/API.Core/API.Core.csproj" COPY . . WORKDIR "/src/API/API.Core" diff --git a/src/Core/API/API.Specs/Dockerfile b/src/Core/API/API.Specs/Dockerfile index b934157..38a12d2 100644 --- a/src/Core/API/API.Specs/Dockerfile +++ b/src/Core/API/API.Specs/Dockerfile @@ -7,7 +7,8 @@ COPY ["Domain/Domain.csproj", "Domain/"] COPY ["Infrastructure/Infrastructure.Repository/Infrastructure.Repository.csproj", "Infrastructure/Infrastructure.Repository/"] COPY ["Infrastructure/Infrastructure.Jwt/Infrastructure.Jwt.csproj", "Infrastructure/Infrastructure.Jwt/"] COPY ["Infrastructure/Infrastructure.PasswordHashing/Infrastructure.PasswordHashing.csproj", "Infrastructure/Infrastructure.PasswordHashing/"] -COPY ["Service/Service.Core/Service.Core.csproj", "Service/Service.Core/"] +COPY ["Service/Service.Auth/Service.Auth.csproj", "Service/Service.Auth/"] +COPY ["Service/Service.UserManagement/Service.UserManagement.csproj", "Service/Service.UserManagement/"] RUN dotnet restore "API/API.Specs/API.Specs.csproj" COPY . . WORKDIR "/src/API/API.Specs"