We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d39e4 commit 422020fCopy full SHA for 422020f
Dockerfile
@@ -1,14 +1,14 @@
1
-FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
+FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
2
WORKDIR /app
3
4
-FROM mcr.microsoft.com/dotnet/sdk:8.0 AS dotnet-build-base
+FROM mcr.microsoft.com/dotnet/sdk:9.0 AS dotnet-build-base
5
WORKDIR /src
6
COPY Modix.sln .
7
COPY Directory.* .
8
COPY src/ ./src/
9
COPY test/ ./test/
10
RUN dotnet restore Modix.sln
11
-COPY . .
+COPY . .
12
13
FROM dotnet-build-base AS dotnet-build
14
RUN dotnet build -maxcpucount:1 -c Release --no-restore Modix.sln
0 commit comments