Spaces:
Paused
Paused
| FROM eceasy/cli-proxy-api:latest | |
| USER root | |
| # 1. 换成 apt-get 安装 Nginx 和常用工具(去掉了 Alpine 特有的 gcompat) | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| nginx \ | |
| libc6 \ | |
| bash \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # 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. 启动脚本:后台运行 Nginx,前台运行 API | |
| CMD ["sh", "-c", "nginx && ./cli-proxy-api --config /app/config.yaml"] |