Browse Source

chore: wrap the node command flag

fred-bf 1 năm trước cách đây
mục cha
commit
e58cb2b0db
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -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