2021-11-27 03:24:24 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
2019-08-12 04:49:18 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
2020-08-25 18:37:31 +00:00
|
|
|
# Restore/fetch dependencies excluding app code to make use of caching
|
2021-09-27 22:11:31 +00:00
|
|
|
COPY PluralKit.sln /app/
|
2021-03-03 22:27:54 +00:00
|
|
|
COPY Myriad/Myriad.csproj /app/Myriad/
|
2020-08-25 18:37:31 +00:00
|
|
|
COPY PluralKit.API/PluralKit.API.csproj /app/PluralKit.API/
|
|
|
|
COPY PluralKit.Bot/PluralKit.Bot.csproj /app/PluralKit.Bot/
|
|
|
|
COPY PluralKit.Core/PluralKit.Core.csproj /app/PluralKit.Core/
|
2021-10-15 10:27:38 +00:00
|
|
|
COPY PluralKit.ScheduledTasks/PluralKit.ScheduledTasks.csproj /app/PluralKit.ScheduledTasks/
|
2020-08-25 18:37:31 +00:00
|
|
|
COPY PluralKit.Tests/PluralKit.Tests.csproj /app/PluralKit.Tests/
|
2021-08-01 19:22:23 +00:00
|
|
|
COPY .git/ /app/.git
|
2020-08-25 18:37:31 +00:00
|
|
|
RUN dotnet restore PluralKit.sln
|
|
|
|
|
|
|
|
# Copy the rest of the code and build
|
|
|
|
COPY . /app
|
|
|
|
RUN dotnet build -c Release -o bin
|
2019-08-12 04:49:18 +00:00
|
|
|
|
2021-06-09 10:47:26 +00:00
|
|
|
# Build runtime stage (doesn't include SDK)
|
2021-11-27 03:24:24 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:6.0
|
2021-06-09 10:55:38 +00:00
|
|
|
LABEL org.opencontainers.image.source = "https://github.com/xSke/PluralKit"
|
|
|
|
|
2021-06-09 10:47:26 +00:00
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=build /app ./
|
|
|
|
|
2020-08-25 18:37:31 +00:00
|
|
|
# Allow overriding CMD from eg. docker-compose to run API layer too
|
|
|
|
ENTRYPOINT ["dotnet"]
|
2021-09-27 22:11:31 +00:00
|
|
|
CMD ["bin/PluralKit.Bot.dll"]
|