You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
463 B
18 lines
463 B
2 years ago
|
# Build
|
||
|
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
||
|
|
||
|
COPY favicon.ico ./
|
||
|
COPY NuGet.config ./
|
||
|
COPY Directory.Build.props ./
|
||
|
COPY DiscordChatExporter.Core ./DiscordChatExporter.Core
|
||
|
COPY DiscordChatExporter.Cli ./DiscordChatExporter.Cli
|
||
|
|
||
|
RUN dotnet publish DiscordChatExporter.Cli -c Release -o ./publish
|
||
|
|
||
|
# Run
|
||
|
FROM mcr.microsoft.com/dotnet/runtime:6.0 AS run
|
||
|
|
||
|
COPY --from=build ./publish ./
|
||
|
|
||
|
WORKDIR ./out
|
||
|
ENTRYPOINT ["dotnet", "/DiscordChatExporter.Cli.dll"]
|