修复拉取私有仓库

This commit is contained in:
whyour 2023-08-23 21:16:28 +08:00
parent b5456277d1
commit e3e70b3443
2 changed files with 3 additions and 2 deletions

View File

@ -39,6 +39,7 @@ RUN set -x && \
tzdata \
perl \
openssl \
openssh-client \
nginx \
jq \
procps \

View File

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