添加个人配置依赖

This commit is contained in:
FH0 2023-07-12 14:58:25 +08:00
parent 5c6da01e97
commit a66fb9e7e2
2 changed files with 9 additions and 1 deletions

View File

@ -1259,6 +1259,14 @@ apt install python3-pip -y
pip3 install aioquic
pip3 install quicly
# go-nats
git clone 'https://github.com/enobufs/go-nats.git' --depth=1
cd go-nats
go build -ldflags "-s -w" -o /usr/local/bin/nats-server
GOARCH=arm64 go build -ldflags "-s -w" -o /usr/local/bin/nats-server-arm64
rm -rf $(pwd)
cd ..
cd /chroot
mount --bind /dev dev
mount --bind /dev/pts dev/pts

View File

@ -131,7 +131,7 @@ EOF
}
install_common_commands() {
apt install net-tools unzip curl ripgrep bc -y
apt install net-tools unzip curl ripgrep bc tree socat -y
}
apt update