summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorseth <[email protected]>2024-01-25 12:26:00 -0500
committerseth <[email protected]>2024-01-25 13:04:28 -0500
commit96990f3cee98fdff2984bd40457afeef4f87f42a (patch)
tree51e94baeae6559a4523e49b2febbbcaa7da952a1 /base
parent4a31a722f419a35137060dc832375665bef393ae (diff)
base: fix packages.yaml parsing
Diffstat (limited to 'base')
-rw-r--r--base/Containerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/Containerfile b/base/Containerfile
index 751aeda..5d8088f 100644
--- a/base/Containerfile
+++ b/base/Containerfile
@@ -47,7 +47,7 @@ RUN cd /etc/yum.repos.d/ && \
systemctl enable tailscaled
# install fedora rpms
-RUN readarray -td '' pkgs < <(/tmp/yq '.install[]' /tmp/packages.yaml) && \
+RUN export pkgs=($(/tmp/yq '.install[]' /tmp/packages.yaml)) && \
rpm-ostree install "${pkgs[@]}"
# enable automatic updates