Skip to content

Commit b296e3a

Browse files
committed
Upgrade .NET to 9.0.1
1 parent bcf63e3 commit b296e3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM --platform=${BUILDPLATFORM} \
2-
mcr.microsoft.com/dotnet/sdk:9.0.100 AS build-env
2+
mcr.microsoft.com/dotnet/sdk:9.0.102 AS build-env
33
WORKDIR /app
44

55
# Copy csproj and restore as distinct layers
@@ -11,7 +11,7 @@ COPY . ./
1111
RUN dotnet publish Cliptok.csproj -c Release --property:PublishDir=$PWD/out
1212

1313
# We already have this image pulled, its actually quicker to reuse it
14-
FROM mcr.microsoft.com/dotnet/sdk:9.0.100 AS git-collector
14+
FROM mcr.microsoft.com/dotnet/sdk:9.0.102 AS git-collector
1515
WORKDIR /out
1616
COPY . .
1717
RUN touch dummy.txt && \
@@ -22,7 +22,7 @@ RUN touch dummy.txt && \
2222
fi
2323

2424
# Build runtime image
25-
FROM mcr.microsoft.com/dotnet/runtime:9.0.0-alpine3.20
25+
FROM mcr.microsoft.com/dotnet/runtime:9.0.1-alpine3.21
2626
LABEL com.centurylinklabs.watchtower.enable=true
2727
WORKDIR /app
2828
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \

0 commit comments

Comments
 (0)