From c59ec1a03ac15bb10805add7bfa4e1eb253c200f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sat, 27 Jun 2026 13:54:33 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82?= =?UTF-8?q?=D1=83=D1=80=D0=B0=20=D0=BA=D0=B0=D0=BA=20contracts-app=20?= =?UTF-8?q?=E2=80=94=20site/app.py=20+=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- app.py => site/app.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename app.py => site/app.py (100%) diff --git a/Dockerfile b/Dockerfile index 29cab9b..dc02c44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY app.py . +COPY site /app/site EXPOSE 5000 -CMD ["python", "app.py"] +CMD ["python", "site/app.py"] diff --git a/app.py b/site/app.py similarity index 100% rename from app.py rename to site/app.py