Skip to content

Commit c7aa947

Browse files
Update Dockerfile - .NET 9.0 (#158)
1 parent adae336 commit c7aa947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://mcr.microsoft.com/v2/dotnet/sdk/tags/list
33
# https://mcr.microsoft.com/product/dotnet/nightly/sdk
44
# https://mcr.microsoft.com/v2/dotnet/nightly/sdk/tags/list
5-
FROM mcr.microsoft.com/dotnet/nightly/sdk:9.0.100-rc.2-noble-aot AS builder
5+
FROM mcr.microsoft.com/dotnet/nightly/sdk:9.0.100-noble-aot AS builder
66
WORKDIR /app
77
COPY my-sample-app.csproj .
88
RUN dotnet restore my-sample-app.csproj \
@@ -21,7 +21,7 @@ RUN dotnet publish my-sample-app.csproj \
2121
# https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list
2222
# https://mcr.microsoft.com/product/dotnet/nightly/runtime-deps
2323
# https://mcr.microsoft.com/v2/dotnet/nightly/runtime-deps/tags/list
24-
FROM mcr.microsoft.com/dotnet/nightly/runtime-deps:9.0.0-rc.2-noble-chiseled-aot
24+
FROM mcr.microsoft.com/dotnet/nightly/runtime-deps:9.0.0-noble-chiseled-aot
2525
WORKDIR /app
2626
COPY --from=builder /my-sample-app .
2727
EXPOSE 8080

0 commit comments

Comments
 (0)