build: accept build args for extra packages to install (#3060)

This commit is contained in:
Geoff Bourne
2024-09-07 18:42:43 -05:00
committed by GitHub
parent dd3c7a4b77
commit 222b522bc1
5 changed files with 23 additions and 4 deletions
+3 -1
View File
@@ -23,6 +23,7 @@ EOF
dnf update -y
# Install necessary packages
# shellcheck disable=SC2086
dnf install -y \
ImageMagick \
file \
@@ -44,7 +45,8 @@ dnf install -y \
libpcap \
libwebp \
findutils \
which
which \
${EXTRA_DNF_PACKAGES}
# Install Git LFS
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash