File tree 8 files changed +12
-12
lines changed 8 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/core/sdk:2 .1 as builder
1
+ FROM mcr.microsoft.com/dotnet/core/sdk:3 .1 as builder
2
2
3
3
WORKDIR /Result
4
4
COPY Result/Result.csproj .
@@ -8,7 +8,7 @@ COPY /Result .
8
8
RUN dotnet publish -c Release -o /out Result.csproj
9
9
10
10
# app image
11
- FROM mcr.microsoft.com/dotnet/core/aspnet:2 .1
11
+ FROM mcr.microsoft.com/dotnet/core/aspnet:3 .1
12
12
13
13
WORKDIR /app
14
14
ENTRYPOINT ["dotnet", "Result.dll"]
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netcoreapp2 .1</TargetFramework >
4
+ <TargetFramework >netcoreapp3 .1</TargetFramework >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/core/sdk:2 .1 as builder
1
+ FROM mcr.microsoft.com/dotnet/core/sdk:3 .1 as builder
2
2
3
3
WORKDIR /Vote
4
4
COPY Vote/Vote.csproj .
@@ -8,7 +8,7 @@ COPY /Vote .
8
8
RUN dotnet publish -c Release -o /out Vote.csproj
9
9
10
10
# app image
11
- FROM mcr.microsoft.com/dotnet/core/aspnet:2 .1
11
+ FROM mcr.microsoft.com/dotnet/core/aspnet:3 .1
12
12
13
13
WORKDIR /app
14
14
ENTRYPOINT ["dotnet", "Vote.dll"]
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netcoreapp2 .1</TargetFramework >
4
+ <TargetFramework >netcoreapp3 .1</TargetFramework >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/core/sdk:2 .1 as builder
1
+ FROM mcr.microsoft.com/dotnet/core/sdk:3 .1 as builder
2
2
3
3
WORKDIR /Worker
4
4
COPY src/Worker/Worker.csproj .
@@ -8,7 +8,7 @@ COPY src/Worker/ .
8
8
RUN dotnet publish -c Release -o /out Worker.csproj
9
9
10
10
# app image
11
- FROM mcr.microsoft.com/dotnet/core/runtime:2 .1
11
+ FROM mcr.microsoft.com/dotnet/core/runtime:3 .1
12
12
13
13
WORKDIR /app
14
14
ENTRYPOINT ["dotnet" , "Worker.dll" ]
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/core/sdk:2 .1 as builder
1
+ FROM mcr.microsoft.com/dotnet/core/sdk:3 .1 as builder
2
2
3
3
WORKDIR /Worker
4
4
COPY Worker/Worker.csproj .
@@ -8,7 +8,7 @@ COPY /Worker .
8
8
RUN dotnet publish -c Release -o /out Worker.csproj
9
9
10
10
# app image
11
- FROM mcr.microsoft.com/dotnet/core/runtime:2 .1
11
+ FROM mcr.microsoft.com/dotnet/core/runtime:3 .1
12
12
13
13
WORKDIR /app
14
14
ENTRYPOINT ["dotnet", "Worker.dll"]
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp2 .1</TargetFramework >
5
+ <TargetFramework >netcoreapp3 .1</TargetFramework >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp2 .1</TargetFramework >
5
+ <TargetFramework >netcoreapp3 .1</TargetFramework >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
You can’t perform that action at this time.
0 commit comments