ASP.NET Core and Heroku - Dockerfile - https://codingblast.com/hosting-asp-net-core-on-heroku-with-dockercircleci-for-free/
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