Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active August 17, 2019 16:24
Embed
What would you like to do?
FROM microsoft/dotnet:2.2-sdk AS build-env
WORKDIR /app
# Copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore
# Copy everything else and build
COPY . ./
RUN dotnet publish -c Release -o out
# Build runtime image
FROM microsoft/dotnet:2.2-aspnetcore-runtime
WORKDIR /app
COPY --from=build-env /app/out .
CMD dotnet AspNetCoreHerokuDocker.dll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment