Skip to content

Commit ec0784b

Browse files
authored
Merge pull request #39 from Scott-Caldwell/net5-preview4
Update to .NET 5.0 preview 4
2 parents 971593c + 47b4c6e commit ec0784b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM mcr.microsoft.com/dotnet/core/sdk:5.0 as dotnet-build
1+
FROM mcr.microsoft.com/dotnet/sdk:5.0 as dotnet-build
22
WORKDIR /src
33
COPY . .
44
RUN dotnet --info
55
RUN dotnet restore CSDiscord.sln --configfile .nuget/nuget.config
66
RUN dotnet test CSDiscordService.Tests/CSDiscordService.Tests.csproj
77
RUN dotnet publish CSDiscordService/CSDiscordService.csproj -o /app
8-
FROM mcr.microsoft.com/dotnet/core/aspnet:5.0
8+
FROM mcr.microsoft.com/dotnet/aspnet:5.0
99
RUN apt-get update && apt-get install -y ca-certificates
1010
WORKDIR /app
1111
COPY --from=dotnet-build /app .

0 commit comments

Comments
 (0)