Sam Therapy
0b2559724a
Some checks failed
continuous-integration/drone/push Build is failing
Old one doesn't exist anymore, I think Signed-off-by: Sam Therapy <sam@samtherapy.net>
17 lines
No EOL
677 B
Docker
17 lines
No EOL
677 B
Docker
#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:6.0 AS base
|
|
WORKDIR /app
|
|
EXPOSE 80
|
|
EXPOSE 443
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS publish
|
|
WORKDIR /
|
|
COPY ./src/ ./src/
|
|
RUN dotnet publish "/src/BirdsiteLive/BirdsiteLive.csproj" -c Release -o /app/publish \
|
|
&& dotnet publish "/src/BSLManager/BSLManager.csproj" -r linux-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -c Release -o /app/publish
|
|
|
|
FROM base AS final
|
|
WORKDIR /app
|
|
COPY --from=publish /app/publish .
|
|
ENTRYPOINT ["dotnet", "BirdsiteLive.dll"] |