Update README.md. Remove deploy and docker. Add zip and unzip to dependencies

This commit is contained in:
2026-09-21 04:30:51 +01:00
parent a681354eab
commit 501b99cbc8
6 changed files with 7 additions and 122 deletions
+4 -4
View File
@@ -79,16 +79,16 @@ install_deps() {
debian | ubuntu | linuxmint | raspbian)
export DEBIAN_FRONTEND=noninteractive
apt-get update -y
apt-get install -y git curl ca-certificates openssl
apt-get install -y git curl ca-certificates openssl zip unzip
;;
fedora | rhel | centos | rocky | almalinux | ol)
dnf install -y git curl ca-certificates openssl
dnf install -y git curl ca-certificates openssl zip unzip
;;
arch | manjaro | endeavouros)
pacman -Syu --noconfirm --needed git curl ca-certificates openssl
pacman -Syu --noconfirm --needed git curl ca-certificates openssl zip unzip
;;
alpine)
apk add --no-cache bash curl ca-certificates-bundle git openssl
apk add --no-cache bash curl ca-certificates-bundle git openssl zip unzip
;;
*)
fail "unsupported distro: $DISTRO"