chore: wrap the node command flag

This commit is contained in:
fred-bf 2024-05-16 14:11:27 +08:00 committed by GitHub
parent cf29a8f2c8
commit e58cb2b0db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ CMD if [ -n "$PROXY_URL" ]; then \
echo "[ProxyList]" >> $conf; \
echo "$protocol $host $port" >> $conf; \
cat /etc/proxychains.conf; \
proxychains -f $conf node server.js --host 0.0.0.0; \
proxychains -f $conf "node server.js --host 0.0.0.0"; \
else \
node server.js; \
fi