bot: .net rewrite skeleton

This commit is contained in:
Ske
2019-04-19 20:48:37 +02:00
parent b5d1b87a72
commit e7fa5625b6
40 changed files with 770 additions and 3980 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM mcr.microsoft.com/dotnet/core/sdk:2.2-alpine
WORKDIR /app
COPY PluralKit/ PluralKit.csproj /app/
RUN dotnet build
ENTRYPOINT ["dotnet", "run"]