From c2bd13aae95c4a1ee345402d6fc6cde444acb21e Mon Sep 17 00:00:00 2001 From: DerrtSML <93052047+DerrtSML@users.noreply.github.com> Date: Mon, 23 Jun 2025 16:30:57 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9498b63..71c41d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.10-slim-buster WORKDIR /app COPY requirements.txt . +RUN pip install --no-cache-dir --upgrade pip RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD ["python", "bot.py"]