xxyy95 commited on
Commit
4ddf9c6
·
verified ·
1 Parent(s): 0c9b357

Create dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +11 -0
dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM deanxv/chutesai2api
2
+
3
+ # 设置工作目录 (可选,如果镜像中没有定义)
4
+ WORKDIR /app/chutesai2api
5
+
6
+ # 设置变量
7
+ ENV TZ=Asia/Shanghai
8
+ ENV PORT=7860
9
+
10
+ # 暴露端口
11
+ EXPOSE 7860