Skip to content

Commit 422020f

Browse files
Bump Dockerfile to sdk 9.0
1 parent f5d39e4 commit 422020f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
22
WORKDIR /app
33

4-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS dotnet-build-base
4+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS dotnet-build-base
55
WORKDIR /src
66
COPY Modix.sln .
77
COPY Directory.* .
88
COPY src/ ./src/
99
COPY test/ ./test/
1010
RUN dotnet restore Modix.sln
11-
COPY . .
11+
COPY . .
1212

1313
FROM dotnet-build-base AS dotnet-build
1414
RUN dotnet build -maxcpucount:1 -c Release --no-restore Modix.sln

0 commit comments

Comments
 (0)