Created
May 27, 2019 22:23
-
-
Save xximjasonxx/d2be0efbc3e91f2cdded7fb70e6748b0 to your computer and use it in GitHub Desktop.
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 | |
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 as runtime | |
WORKDIR /app | |
COPY --from=build /code/output ./ | |
EXPOSE 80 | |
ENTRYPOINT [ "dotnet", "StockPriceApi.dll", "--environment=Cluster" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment