dockerfile fix

This commit is contained in:
Alexander Borisov 2024-01-23 14:12:51 +00:00
parent c65836e5a6
commit 04ee8ef369

View File

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