feat:fix kube config

This commit is contained in:
geffzhang
2019-01-20 13:17:57 +08:00
parent 23248b080e
commit c212604b85
8 changed files with 53 additions and 13 deletions

View File

@ -1,8 +1,8 @@
FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
FROM microsoft/dotnet:2.1-aspnetcore-runtime AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/dotnet:2.2-sdk AS build
FROM microsoft/dotnet:2.1-sdk AS build
WORKDIR /src
COPY ["DownstreamService/DownstreamService.csproj", "DownstreamService/"]
RUN dotnet restore "DownstreamService/DownstreamService.csproj"
@ -16,4 +16,4 @@ RUN dotnet publish "DownstreamService.csproj" -c Release -o /app
FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "DownstreamService.dll"]
ENTRYPOINT ["dotnet", "DownstreamService.dll"]