sd_telegram/dockerfile
Alexander Borisov 04ee8ef369 dockerfile fix
2024-01-23 14:16:24 +00:00

9 lines
174 B
Plaintext

FROM python:3.11
LABEL maintainer="info@borisov-ab.ru"
COPY requirements.txt /bot
WORKDIR /bot
RUN pip install -r requirements.txt
COPY . /bot
CMD ["python", "/bot/bot.py"]