fiewolf1000 commited on
Commit
8c06542
·
verified ·
1 Parent(s): 4142f73

Create Dockerfile

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