From 42289f140560d4fd5353f4efa58a136650496ae2 Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 8 May 2024 15:10:32 -0400 Subject: [PATCH] Update Attachments Dockerfile to .NET 8 --- util/Attachments/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/Attachments/Dockerfile b/util/Attachments/Dockerfile index e7a97dc0f0..623b5c7466 100644 --- a/util/Attachments/Dockerfile +++ b/util/Attachments/Dockerfile @@ -1,7 +1,7 @@ ############################################### # Build stage # ############################################### -FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:6.0 AS build +FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0 AS build # Docker buildx supplies the value for this arg ARG TARGETPLATFORM @@ -40,7 +40,7 @@ WORKDIR /app ############################################### # App stage # ############################################### -FROM mcr.microsoft.com/dotnet/aspnet:6.0 +FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden"