Step 0: rename site/ → app/ (Python stdlib conflict fix)

This commit is contained in:
2026-07-14 22:24:24 +04:00
parent ca7b70fe41
commit 976e59b496
18 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY site /app/site
COPY app /app/app
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "site.app:app"]
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "app.app:app"]
View File

Before

Width:  |  Height:  |  Size: 246 B

After

Width:  |  Height:  |  Size: 246 B

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB