initial commit

This commit is contained in:
YuanHui
2024-11-19 13:48:29 +08:00
parent 03af2e7107
commit 946f4eac22
10 changed files with 461 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]