|
|
@@ -8,12 +8,12 @@ EXPOSE 16662 |
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build |
|
|
|
ARG BUILD_CONFIGURATION=Release |
|
|
|
WORKDIR /src |
|
|
|
COPY ["nuget.config","."] |
|
|
|
COPY ["NearCardAttendance.TcpServer/NearCardAttendance.TcpServer.csproj", "NearCardAttendance.TcpServer/"] |
|
|
|
COPY ["NearCardAttendance.Model/NearCardAttendance.Model.csproj", "NearCardAttendance.Model/"] |
|
|
|
COPY ["NearCardAttendance.Common/NearCardAttendance.Common.csproj", "NearCardAttendance.Common/"] |
|
|
|
COPY ["NearCardAttendance.Service/NearCardAttendance.Service.csproj", "NearCardAttendance.Service/"] |
|
|
|
RUN dotnet nuget remove source nuget.org |
|
|
|
RUN dotnet nuget add source https://repo.huaweicloud.com/repository/nuget/v3/index.json -n huaweicloud_nuget |
|
|
|
RUN dotnet restore "./NearCardAttendance.TcpServer/./NearCardAttendance.TcpServer.csproj" |
|
|
|
COPY . . |
|
|
|
WORKDIR "/src/NearCardAttendance.TcpServer" |
|
|
|