kevin1207 commited on
Commit
efff58b
·
verified ·
1 Parent(s): 962d69a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.13-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . /app/
6
+
7
+ RUN pip install --no-cache-dir fastapi httpx uvicorn starlette && chmod 777 -R /app
8
+
9
+ EXPOSE 8080
10
+
11
+ CMD ["python", "server.py"]
12
+
13
+ ENV ADDRESS=0.0.0.0:7860