1
0
mirror of https://gitlab.com/simple-stock-bots/simple-discord-stock-bot.git synced 2025-08-02 11:31:26 +00:00

get bot working with telegram changes

This commit is contained in:
2023-04-16 15:09:45 -06:00
parent 32d83afdea
commit 31f12e0b45
3 changed files with 13 additions and 60 deletions

View File

@@ -2,18 +2,20 @@ FROM python:3.11-buster AS builder
COPY requirements.txt /requirements.txt
RUN pip install --user -r requirements.txt
COPY dev-reqs.txt /dev-reqs.txt
RUN pip install --user -r dev-reqs.txt
FROM python:3.11-slim
ENV MPLBACKEND=Agg
COPY --from=builder /root/.local /root/.local
RUN pip install --no-cache-dir black
ENV TELEGRAM=TOKEN
ENV MARKETDATA=TOKEN
ENV MPLBACKEND=Agg
ENV DISCORD=NTMyMDQ1MjAwODIzMDI1NjY2.XDQftA.Px-arL5wDMB4XKcoPOS1r4gCGmA
ENV MARKETDATA=a01mVUZ4cW1sUUFOVWlEZ3NNTHFNeHYzS2diUUhTUVJZbzNxVVEwTUxVMD0
COPY . .