fix: структура как у BG — class-based, debug=True, Dockerfile, чистый requirements

This commit is contained in:
2026-06-01 18:22:44 +03:00
parent 6ff52e1b75
commit a5efb6acbc
3 changed files with 29 additions and 12 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY site site
EXPOSE 5000
CMD ["python", "site/app.py"]