From 5278fc4724aec64f109f57ce57f3bcae46db2b4d Mon Sep 17 00:00:00 2001 From: Alexander Borisov <113920954+Sosiaka@users.noreply.github.com> Date: Tue, 23 Jan 2024 14:19:18 +0000 Subject: [PATCH] dockerfile directory fix. (why do I use master???) --- dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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