test #5

Merged
khwezi merged 2 commits from test into main 2026-03-03 14:54:08 +02:00
Showing only changes of commit d58caf67e3 - Show all commits

View File

@@ -3,6 +3,7 @@ FROM ://mcr.microsoft.com AS build
WORKDIR /src
COPY . .
RUN dotnet publish "SampleApi/SampleApi.csproj" -c Release -o /app/publish
COPY /app/publish /app
# Stage 2: Run the app using the Runtime
FROM ://mcr.microsoft.com