diff --git a/docker/Dockerfile b/docker/Dockerfile index de394310..7b5cd9bf 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -39,6 +39,7 @@ RUN set -x && \ tzdata \ perl \ openssl \ + openssh-client \ nginx \ jq \ procps \ diff --git a/shell/start.sh b/shell/start.sh index 7ad43e90..00729f49 100644 --- a/shell/start.sh +++ b/shell/start.sh @@ -47,10 +47,10 @@ if [[ $os_name == 'alpine' ]]; then netcat-openbsd elif [[ $os_name == 'debian' ]] || [[ $os_name == 'ubuntu' ]]; then apt update - apt install -y git curl wget tzdata perl openssl jq nginx procps netcat + apt install -y git curl wget tzdata perl openssl jq nginx procps netcat openssh-client elif [[ $os_name == 'centos' ]]; then yum update - yum install -y epel-release git curl wget tzdata perl openssl jq nginx procps netcat + yum install -y epel-release git curl wget tzdata perl openssl jq nginx procps netcat openssh-client else echo -e "暂不支持此系统部署 $os_name" exit 1