File size: 332 Bytes
649fc67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]