asterioskryos commited on
Commit
d073844
·
1 Parent(s): a9e2f7f

Add Dockerfile and requirements

Browse files
Files changed (2) hide show
  1. Dockerfile +7 -0
  2. requirements.txt +3 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.12-slim
2
+ WORKDIR /app
3
+ COPY requirements.txt .
4
+ RUN pip install --no-cache-dir -r requirements.txt
5
+ COPY . .
6
+ EXPOSE 7860
7
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ fastapi>=0.115,<1
2
+ uvicorn>=0.32,<1
3
+ httpx>=0.27,<1