caidaoli commited on
Commit
0ecab23
·
verified ·
1 Parent(s): 1495c67

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -2
Dockerfile CHANGED
@@ -1,2 +1,11 @@
1
- FROM deanxv/kilo2api:latest
2
- ENV TZ=Asia/Shanghai
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+ # 安装pip依赖
3
+ WORKDIR /workspace
4
+ COPY requirements.txt .
5
+ RUN pip install --no-cache-dir -r requirements.txt
6
+ # 复制你的源码
7
+ COPY . .
8
+ # Space 必须监听 0.0.0.0:7860 或 3000,建议 7860!
9
+ ENV PORT=7860
10
+ EXPOSE 7860
11
+ CMD ["python", "openai_ondemand_adapter.py"]