Skip to content

Commit 898b784

Browse files
committed
Merge branch 'master' into develop
2 parents 66e05f7 + 89f2037 commit 898b784

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • src/Examples/Simplify.Scheduler.SimpleApp

src/Examples/Simplify.Scheduler.SimpleApp/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# build
22

3-
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 as build
3+
FROM mcr.microsoft.com/dotnet/sdk:10.0 as build
44
WORKDIR /src
55

66
COPY . .
7-
RUN dotnet publish -f netcoreapp3.1 -c release -o out
7+
RUN dotnet publish -f net10.0 -c release -o out
88

99
# launch
1010

11-
FROM mcr.microsoft.com/dotnet/core/runtime:3.1
11+
FROM mcr.microsoft.com/dotnet/runtime:10.0
1212
WORKDIR /app
1313

1414
COPY --from=build /src/out /app

0 commit comments

Comments
 (0)