This commit is contained in:
2025-03-04 17:43:38 +03:00
parent 607af48ad2
commit 01b1515172
10 changed files with 368 additions and 334 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY templates/ ./templates/
EXPOSE 8001
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8001"]