fiewolf1000 commited on
Commit
48b3b1e
·
verified ·
1 Parent(s): 0bef1cd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -8
Dockerfile CHANGED
@@ -1,8 +1,3 @@
1
- # 使用项目官方镜像
2
- FROM adryfish/llm-web-api:latest
3
-
4
- # 暴露容器端口(项目默认端口为 5000)
5
- EXPOSE 5000
6
-
7
- # 启动命令(镜像内置启动逻辑,无需额外配置)
8
- CMD ["python", "app.py"]
 
1
+ FROM docker/compose:latest
2
+ COPY docker-compose.yml .
3
+ CMD ["up"]