chore: use 7.0 as tag for sdk/runtime
All checks were successful
Test if Server can be built / build-server (push) Successful in 22s

This commit is contained in:
Timothy Schenk 2023-10-27 18:21:32 +02:00
parent c0219cc0f7
commit 555ec5c392

View file

@ -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"