Spaces:
Paused
Paused
| FROM eceasy/cli-proxy-api:latest | |
| RUN mkdir -p /tmp/cli-proxy-api && \ | |
| chmod -R 777 /tmp | |
| RUN cat > /CLIProxyAPI/config.yaml << 'EOF' | |
| host: "0.0.0.0" | |
| port: 7860 | |
| tls: | |
| enable: false | |
| remote-management: | |
| allow-remote: true | |
| secret-key: "MyKey2026" | |
| auth-dir: "/tmp/cli-proxy-api" | |
| EOF | |
| EXPOSE 7860 | |
| CMD ["/CLIProxyAPI/CLIProxyAPI"] |