1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-26 08:01:26 +00:00

add discord bot

This commit is contained in:
2023-09-03 12:46:18 -06:00
parent 4cf0330734
commit e4280d808b
5 changed files with 297 additions and 0 deletions

18
discord/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM python:3.11-buster AS builder
COPY discord/requirements.txt .
RUN pip install --user -r requirements.txt
FROM python:3.11-slim
ENV MPLBACKEND=Agg
COPY --from=builder /root/.local /root/.local
COPY common common
COPY discord .
CMD [ "python", "./bot.py" ]