Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created December 31, 2020 03:54
Show Gist options
  • Save PradeepLoganathan/fca460dff36b39db92c25be4d2925290 to your computer and use it in GitHub Desktop.
Save PradeepLoganathan/fca460dff36b39db92c25be4d2925290 to your computer and use it in GitHub Desktop.
FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:5.0-buster-slim AS build
WORKDIR /src
COPY ["sampleapp.csproj", ""]
RUN dotnet restore "./sampleapp.csproj"
COPY . .
WORKDIR "/src/."
RUN dotnet build "sampleapp.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "sampleapp.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "sampleapp.dll"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment