first commit

This commit is contained in:
2025-07-08 11:52:05 +00:00
commit 8110ec10e1
3 changed files with 94 additions and 0 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
# server/Dockerfile
FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]