Files
webapitest/Dockerfile
2026-03-03 14:53:47 +02:00

13 lines
383 B
Docker

FROM mcr.microsoft.com/dotnet/sdk:8.0 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
WORKDIR /app
# Copy the compiled files from the 'build' stage to this stage
COPY --from=build /app/publish .
ENTRYPOINT ["dotnet", "SampleApi.dll"]