Created
March 31, 2019 08:27
-
-
Save mafshin/5010ddac7aa697561060cf6f7c8c537b to your computer and use it in GitHub Desktop.
This file contains hidden or 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-alpine as build | |
WORKDIR /app | |
COPY *.csproj . | |
RUN dotnet restore -r linux-musl-x64 | |
COPY . . | |
RUN dotnet publish -c Release -r linux-musl-x64 -o out --no-restore | |
FROM mcr.microsoft.com/dotnet/core/runtime-deps:2.2-alpine as runtime | |
WORKDIR /app | |
EXPOSE 80 | |
COPY --from=build /app/out ./ | |
ENTRYPOINT ["./demoapp"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment