Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active August 17, 2019 16:24
Show Gist options
  • Save Ibro/17a168e51c07bc80ffb09f4b1471b17c to your computer and use it in GitHub Desktop.
Save Ibro/17a168e51c07bc80ffb09f4b1471b17c to your computer and use it in GitHub Desktop.
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