tried to remove error
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
/ build (push) Has been cancelled

This commit is contained in:
Sebastian Leheis 2025-03-19 00:50:15 +01:00
parent 9263093ca0
commit 2710cf610b
Signed by: sebleh
GPG key ID: 423BA83CB094FAE3

View file

@ -8,7 +8,7 @@ RUN dotnet restore
# Now the code. # Now the code.
COPY . . 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 FROM mcr.microsoft.com/dotnet/runtime:6.0-bookworm-slim AS runtime
WORKDIR /app WORKDIR /app