From 1b6e2d55192b87e0e1142b197df14fce62ec68b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Mon, 1 Jun 2026 18:52:25 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20python:3.9-slim=20=D0=BA=D0=B0=D0=BA=20?= =?UTF-8?q?=D1=83=20BG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d83c3fa..c1850b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,12 @@ -FROM python:3.12-slim +FROM python:3.9-slim WORKDIR /app COPY requirements.txt . + RUN pip install --no-cache-dir -r requirements.txt -COPY site site +COPY site /app/site EXPOSE 5000