mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-10 15:57:53 +00:00
Massive refactor of pretty much everything in the bot
This commit is contained in:
parent
086fa84b4b
commit
8936029dc8
27 changed files with 1799 additions and 1450 deletions
11
src/bot.Dockerfile
Normal file
11
src/bot.Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM python:3.6-alpine
|
||||
|
||||
RUN apk --no-cache add build-base
|
||||
|
||||
WORKDIR /app
|
||||
ADD requirements.txt /app
|
||||
RUN pip install --trusted-host pypi.python.org -r requirements.txt
|
||||
|
||||
ADD . /app
|
||||
ENTRYPOINT ["python", "bot_main.py"]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue