From 715bb919af10e41f6be492b35793facf1398d2fe Mon Sep 17 00:00:00 2001 From: khwezi Date: Tue, 3 Mar 2026 14:57:13 +0200 Subject: [PATCH] Added debug lines --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 409f19a..faa657a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,11 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR . COPY . . +RUN ls . +RUN ls ./SampleApi RUN dotnet publish "SampleApi/SampleApi.csproj" -c Release -o /app/publish + # Stage 2: Run the app using the Runtime FROM ://mcr.microsoft.com WORKDIR /app -- 2.47.3