Browse Source

simplify dockerfile

master
Nicolas Constant 2 years ago
parent
commit
bc0e6e95d6
No known key found for this signature in database GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      Dockerfile

+ 1
- 6
Dockerfile View File

@ -5,13 +5,8 @@ WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS publish
COPY ./src/ ./src/
RUN dotnet restore "/src/BirdsiteLive/BirdsiteLive.csproj"
RUN dotnet restore "/src/BSLManager/BSLManager.csproj"
RUN dotnet build "/src/BirdsiteLive/BirdsiteLive.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "/src/BirdsiteLive/BirdsiteLive.csproj" -c Release -o /app/publish
RUN dotnet publish "/src/BSLManager/BSLManager.csproj" -r linux-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -c Release -o /app/publish


Loading…
Cancel
Save