diff --git a/dockerfile b/dockerfile index 922240f..4f3d2e5 100644 --- a/dockerfile +++ b/dockerfile @@ -1,9 +1,9 @@ FROM python:3.11 LABEL maintainer="info@borisov-ab.ru" -COPY requirements.txt /bot WORKDIR /bot +COPY requirements.txt . RUN pip install -r requirements.txt -COPY . /bot -CMD ["python", "/bot/bot.py"] \ No newline at end of file +COPY . . +CMD ["python", "bot.py"] \ No newline at end of file