From 5fa0de102d286e15c5ec4f1ba08f0cc43e9444db Mon Sep 17 00:00:00 2001 From: henrik Date: Wed, 13 Nov 2024 17:48:02 +0100 Subject: [PATCH] fix: Updated dockerfile version --- Pushy/Pushy/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pushy/Pushy/Dockerfile b/Pushy/Pushy/Dockerfile index 6cafed6..9f2c761 100644 --- a/Pushy/Pushy/Dockerfile +++ b/Pushy/Pushy/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base USER $APP_UID WORKDIR /app EXPOSE 8080 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src COPY ["Pushy/Pushy/Pushy.csproj", "Pushy/Pushy/"]