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"]