Skip to content

Instantly share code, notes, and snippets.

@NilsMoller
Created February 17, 2021 14:07
Show Gist options
  • Save NilsMoller/bd88f9f7581b18fc2a0413a0ce873746 to your computer and use it in GitHub Desktop.
Save NilsMoller/bd88f9f7581b18fc2a0413a0ce873746 to your computer and use it in GitHub Desktop.
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
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 ["API.csproj", ""]
RUN dotnet restore "./API.csproj"
COPY . .
WORKDIR "/src/."
RUN dotnet build "API.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "API.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "API.dll"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment