This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.203 as build | |
WORKDIR /code | |
COPY . . | |
RUN dotnet restore | |
RUN dotnet publish -o output -c Release --no-restore | |
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 as runtime | |
WORKDIR /app | |
COPY --from=build /code/output ./ | |
EXPOSE 8081 | |
EXPOSE 443 | |
ENTRYPOINT [ "dotnet", "CalcApi.dll" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment