initial deployment

This commit is contained in:
2024-03-31 14:00:53 -05:00
commit 6918c077fd
7 changed files with 450 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.12-slim-bookworm
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0"]