From 7bf27a405873e9d172896851e101ffcccd2586eb Mon Sep 17 00:00:00 2001 From: DerrtSML <93052047+DerrtSML@users.noreply.github.com> Date: Mon, 23 Jun 2025 16:10:58 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c860a82..aa4f848 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,8 @@ +# ... +RUN pip install --no-cache-dir --upgrade pip +RUN pip install --no-cache-dir -r requirements.txt +# ... + # Используем официальный образ Python FROM python:3.10-slim-buster @@ -12,4 +17,4 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . # Команда для запуска приложения -CMD ["python", "bot.py"] \ No newline at end of file +CMD ["python", "bot.py"]