File size: 728 Bytes
55efbd8
 
e265ec8
 
fb9e2ce
8ac172a
2fdcbdb
fb9e2ce
3405af1
fb9e2ce
 
2fdcbdb
fb9e2ce
ba92a43
fb9e2ce
ba92a43
fb9e2ce
3405af1
55efbd8
 
8ac172a
 
 
 
 
 
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 eceasy/cli-proxy-api:latest

USER root

# 1. 安装 Nginx 和 Go 兼容库
RUN apk add --no-cache nginx libc6-compat gcompat bash curl

# 2. 准备工作目录
WORKDIR /app
RUN cp /CLIProxyAPI/CLIProxyAPI ./cli-proxy-api && chmod +x ./cli-proxy-api
RUN mkdir -p /tmp/.cli-proxy-api /tmp/logs /run/nginx && chmod -R 777 /tmp /run/nginx

# 3. 拷贝配置
COPY config.yaml /app/config.yaml
COPY nginx.conf /etc/nginx/nginx.conf

# 4. 环境变量
ENV TZ=Asia/Shanghai
EXPOSE 7860

# 5. 健康检查
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
    CMD curl -f http://127.0.0.1:7860/ || exit 1

# 6. 启动脚本:后台运行 Nginx,前台运行 API
CMD ["sh", "-c", "nginx && ./cli-proxy-api"]