mirror of
https://gitlab.com/simple-stock-bots/simple-stock-bot.git
synced 2025-06-15 23:06:40 +00:00
21 lines
273 B
Docker
21 lines
273 B
Docker
FROM python:3.11-buster AS builder
|
|
|
|
|
|
COPY telegram/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 telegram .
|
|
|
|
|
|
|
|
CMD [ "python", "./bot.py" ] |