From 811c0c75f7b8555dd2a214d5ec264d8a8bc40d25 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Mon, 6 Jul 2026 15:57:48 +0100 Subject: [PATCH] feat(install): add podman to system deps --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 8a6d9e7..b82c18c 100755 --- a/install.sh +++ b/install.sh @@ -23,9 +23,9 @@ else fi # ---- System deps ---- -echo "[INSTALL] git, build-essential..." +echo "[INSTALL] git, build-essential, podman..." apt-get update -qq -apt-get install -y -qq git build-essential curl +apt-get install -y -qq git build-essential curl podman # ---- Clone / pull repo ---- REPO_DIR="/opt/NextWks"