Skip to content

Commit

Permalink
Migrate docker configuration to .NET 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
liborpansky committed Jan 6, 2021
1 parent 44afe67 commit ad4ab34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim AS base
WORKDIR /app
EXPOSE 80

FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["./AspNetCoreVueStarter.csproj", "app/"]
RUN dotnet restore "app/AspNetCoreVueStarter.csproj"
Expand Down

0 comments on commit ad4ab34

Please sign in to comment.