File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
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
3
3
WORKDIR /app
4
4
5
5
# Copy csproj and restore as distinct layers
@@ -11,7 +11,7 @@ COPY . ./
11
11
RUN dotnet publish Cliptok.csproj -c Release --property:PublishDir=$PWD/out
12
12
13
13
# 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
15
15
WORKDIR /out
16
16
COPY . .
17
17
RUN touch dummy.txt && \
@@ -22,7 +22,7 @@ RUN touch dummy.txt && \
22
22
fi
23
23
24
24
# 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
26
26
LABEL com.centurylinklabs.watchtower.enable=true
27
27
WORKDIR /app
28
28
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \
You can’t perform that action at this time.
0 commit comments