Spaces:
Running
Running
File size: 363 Bytes
c07511c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
# current folder
WORKDIR /
# Copy everything
COPY . ./
# Restore as distinct layers
RUN dotnet restore
# Build and publish a release
RUN dotnet publish -c Release -o out
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:8.0
WORKDIR /
COPY --from=build-env /out .
ENTRYPOINT ["dotnet", "QuotesAPI.dll"] |