Added debug lines

This commit is contained in:
2026-03-03 14:57:13 +02:00
parent 4ea9b98fd7
commit 715bb919af

View File

@@ -1,8 +1,11 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR . WORKDIR .
COPY . . COPY . .
RUN ls .
RUN ls ./SampleApi
RUN dotnet publish "SampleApi/SampleApi.csproj" -c Release -o /app/publish RUN dotnet publish "SampleApi/SampleApi.csproj" -c Release -o /app/publish
# Stage 2: Run the app using the Runtime # Stage 2: Run the app using the Runtime
FROM ://mcr.microsoft.com FROM ://mcr.microsoft.com
WORKDIR /app WORKDIR /app