From 555ec5c39289e2693a7e3c6683202c7a3928c737 Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Fri, 27 Oct 2023 18:21:32 +0200 Subject: [PATCH] chore: use 7.0 as tag for sdk/runtime --- Server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Dockerfile b/Server/Dockerfile index 88fb317..5bcbaf6 100644 --- a/Server/Dockerfile +++ b/Server/Dockerfile @@ -1,7 +1,7 @@ FROM mcr.microsoft.com/dotnet/runtime:7.0 AS base WORKDIR /app -FROM mcr.microsoft.com/dotnet/sdk:7.0.401 AS build +FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build WORKDIR /src COPY ["Server/Server.csproj", "Server/"] RUN dotnet restore "Server/Server.csproj"