Update base Docker images

This commit is contained in:
2020-07-18 00:24:53 +00:00
parent 3253a8d7df
commit e893299224
4 changed files with 8 additions and 8 deletions

View File

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