Update to .NET Core 3.0

This commit is contained in:
2019-07-30 21:00:15 -04:00
parent d66fc88aba
commit d07a41a6d3
3 changed files with 15 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
FROM microsoft/dotnet:2.2-aspnetcore-runtime-stretch-slim AS base
FROM mcr.microsoft.com/dotnet/core/aspnet:3.0.0-preview7-buster-slim AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/dotnet:2.2-sdk-stretch AS build
FROM mcr.microsoft.com/dotnet/core/sdk:3.0.100-preview7-buster AS build
WORKDIR /src
COPY ["./Service.csproj", "./"]
RUN dotnet restore "Service.csproj"