From 2710cf610bdd6107b57f3ec869ed90732d54167e Mon Sep 17 00:00:00 2001 From: Sebastian Leheis Date: Wed, 19 Mar 2025 00:50:15 +0100 Subject: [PATCH] tried to remove error --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 677db87..b1479db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN dotnet restore # Now the code. COPY . . -RUN dotnet publish --self-contained -r debian.12-x64 -c Release -o out +RUN dotnet publish --self-contained -r debian.12-x64 -c Release -o out; exit 0 FROM mcr.microsoft.com/dotnet/runtime:6.0-bookworm-slim AS runtime WORKDIR /app