initial upload

This commit is contained in:
2023-07-19 00:47:09 -05:00
commit c993ea8b6a
13 changed files with 881 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.11-bookworm
WORKDIR /api
COPY requirements.txt .
COPY app/ ./app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]