12 lines
276 B
Docker
12 lines
276 B
Docker
|
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . /app/
|
||
|
RUN dotnet publish -c Release -o out
|
||
|
|
||
|
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS runtime
|
||
|
WORKDIR /app
|
||
|
COPY --from=build /app/out ./
|
||
|
EXPOSE 80
|
||
|
ENTRYPOINT ["dotnet", "BlazingPizza.Server.dll"]
|