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"