align: классовый app.py, static/, Dockerfile как в шаблоне

This commit is contained in:
2026-06-13 11:45:04 +04:00
parent bbf65527b1
commit 96d85189c1
4 changed files with 42 additions and 13 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY site /app/site
EXPOSE 5000
CMD ["python", "site/app.py"]