From 1568aec40854acba4836722e9a662d36bfd3a8e4 Mon Sep 17 00:00:00 2001 From: Erisa A Date: Fri, 25 Oct 2024 18:43:14 +0100 Subject: [PATCH] docker: upgrade .NET to 8.0.10 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b018931a..d69ec355 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM --platform=${BUILDPLATFORM} \ - mcr.microsoft.com/dotnet/sdk:8.0.401 AS build-env + mcr.microsoft.com/dotnet/sdk:8.0.403 AS build-env WORKDIR /app # Copy csproj and restore as distinct layers @@ -11,7 +11,7 @@ COPY . ./ RUN dotnet build -c Release -o out # We already have this image pulled, its actually quicker to reuse it -FROM mcr.microsoft.com/dotnet/sdk:8.0.401 AS git-collector +FROM mcr.microsoft.com/dotnet/sdk:8.0.403 AS git-collector WORKDIR /out COPY . . RUN touch dummy.txt && \ @@ -22,7 +22,7 @@ RUN touch dummy.txt && \ fi # Build runtime image -FROM mcr.microsoft.com/dotnet/runtime:8.0.8-alpine3.20 +FROM mcr.microsoft.com/dotnet/runtime:8.0.10-alpine3.20 LABEL com.centurylinklabs.watchtower.enable=true WORKDIR /app RUN apk add --no-cache git redis openssh