Created
December 31, 2020 03:54
-
-
Save PradeepLoganathan/fca460dff36b39db92c25be4d2925290 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/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