From 0998892d7f3ed1d23cde4428d622f01b6f33933c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Mon, 13 Jul 2026 07:31:28 +0400 Subject: [PATCH] =?UTF-8?q?v5.2.1:=20Dockerfile=20=D0=BA=D0=B0=D0=BA=20?= =?UTF-8?q?=D1=83=20=D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D0=B0=20Baldurs-G?= =?UTF-8?q?ate=20(CMD=20python=20site/app.py)=20=E2=80=94=20=D0=B1=D0=B5?= =?UTF-8?q?=D0=B7=20=D0=BD=D0=B5=D0=B3=D0=BE=20ingress=20=D0=B4=D1=80?= =?UTF-8?q?=D0=BE=D0=BF=D0=B0=D0=B5=D1=82=20=D1=81=D0=BE=D0=B5=D0=B4=D0=B8?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 ++++++++ site/app.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fd17096 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.12-slim +WORKDIR /app +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt +COPY site /app/site +COPY drhider /app/drhider +EXPOSE 5000 +CMD ["python", "site/app.py"] diff --git a/site/app.py b/site/app.py index 37e0b4e..0c9efbe 100644 --- a/site/app.py +++ b/site/app.py @@ -20,7 +20,7 @@ if _sys_path_root not in sys.path: sys.path.insert(0, _sys_path_root) # Версия приложения (меняется при изменениях) -VERSION = "5.2.0" +VERSION = "5.2.1" def create_app():