ManTea commited on
Commit
91e4f36
·
1 Parent(s): 13c0ecb
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile CHANGED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11.10-alpine3.20
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . .
6
+
7
+ RUN pip install -r requirements.txt
8
+
9
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "6868"]