File size: 544 Bytes
a33ecb9
b825d1c
9336346
a33ecb9
b825d1c
 
 
 
 
3a14a46
a33ecb9
3a14a46
 
30c2721
 
b825d1c
3a14a46
b825d1c
3a14a46
 
30c2721
 
f1cde28
21f40bd
3a14a46
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 直接用作者已经打包好的官方镜像
#FROM idootop/migpt-next:latest

# 把我们的配置塞进容器里它默认会读 /app/config.js
#COPY config.js /app/config.js

FROM idootop/migpt-next:latest
WORKDIR /app

# 你的私密配置(镜像默认读取 /app/config.js)
COPY config.js /app/config.js

# 启动脚本
COPY start.sh /usr/local/bin/start.sh
RUN chmod +x /usr/local/bin/start.sh

# 告诉 HF 监听端口
ENV PORT=7860

# 用我们的 ENTRYPOINT;不再接力原 entrypoint
ENTRYPOINT ["/usr/local/bin/start.sh"]