From 7c18466e958095f61cc9ecb73b9143fabdac7421 Mon Sep 17 00:00:00 2001 From: Glax Date: Mon, 16 Sep 2024 23:09:34 +0200 Subject: [PATCH] Fix NETSDK1194 on build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5162023..f4180cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY Tranga/Tranga.csproj /src/Tranga/Tranga.csproj RUN dotnet restore /src/Tranga.sln COPY . /src/ -RUN dotnet publish -c Release -o /publish -maxcpucount:1 +RUN dotnet publish -c Release --property:OutputPath=/publish -maxcpucount:1 FROM base AS runtime EXPOSE 6531