FROM python:3.9-buster AS builder COPY requirements.txt /requirements.txt RUN pip install --user -r requirements.txt FROM python:3.9-slim ENV MPLBACKEND=Agg COPY --from=builder /root/.local /root/.local RUN pip install --no-cache-dir black ENV TELEGRAM=724630968:AAFmLveRXhtTU_0dgzC724eGUpVK9b3Cw8w COPY . . # CMD [ "python", "./bot.py" ]