Update to released .NET Core 3.0

This commit is contained in:
2019-10-19 08:48:14 -04:00
parent 8c6847253c
commit 642fe09869
2 changed files with 3 additions and 4 deletions

View File

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