File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
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
- 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
- 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"]
You can’t perform that action at this time.
0 commit comments