14 lines
276 B
Bash
14 lines
276 B
Bash
#!/bin/sh
|
|
|
|
sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
|
|
apk add --no-cache npm
|
|
|
|
which node
|
|
which npm
|
|
which npx
|
|
|
|
catatonit -- mcp-proxy \
|
|
--named-server-config /config.json \
|
|
--host '0.0.0.0' \
|
|
--port '8080' \
|
|
--allow-origin '*' |