File size: 480 Bytes
0051a6e a15febc 0051a6e a15febc 0051a6e a15febc 0051a6e a15febc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM eceasy/cli-proxy-api:latest
USER root
RUN apk add --no-cache bash libc6-compat gcompat
WORKDIR /app
RUN cp /CLIProxyAPI/CLIProxyAPI ./cli-proxy-api && chmod +x ./cli-proxy-api
RUN mkdir -p /tmp/.cli-proxy-api /tmp/logs /tmp/pg_cache/pgstore && chmod -R 777 /tmp
COPY config.yaml /app/config.yaml
# 修复 config.example.yaml 缺失
RUN cp /app/config.yaml /app/config.example.yaml
ENV TZ=Asia/Shanghai
EXPOSE 7860
CMD ["./cli-proxy-api", "--config", "/app/config.yaml"] |