sd_telegram/dockerfile

9 lines
174 B
Plaintext
Raw Normal View History

FROM python:3.11
LABEL maintainer="info@borisov-ab.ru"
2024-01-23 14:12:51 +00:00
COPY requirements.txt /bot
WORKDIR /bot
RUN pip install -r requirements.txt
2024-01-23 14:12:51 +00:00
COPY . /bot
CMD ["python", "/bot/bot.py"]