summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-10-07 22:01:05 +0200
committerChristian Poessinger <christian@poessinger.com>2022-10-07 22:01:05 +0200
commita11fbbaae5b451e33a871cafb0b4d76f77a96321 (patch)
tree507607791c04af4b272800db36870e258b2a25c2 /docker
parentede30648181da0f1b66a6b3bb057c302eeaa18a4 (diff)
downloadvyos-build-a11fbbaae5b451e33a871cafb0b4d76f77a96321.tar.gz
vyos-build-a11fbbaae5b451e33a871cafb0b4d76f77a96321.zip
Docker: T3664: install yq dependency which has a jq like tool for toml files
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index ee91e046..76190333 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -94,6 +94,9 @@ RUN apt-get update && apt-get install -y \
debootstrap \
live-build
+# vyos-build now also makes use of TOML - install yq which has toml support
+RUN pip install yq==3.1.0
+
# Syslinux and Grub2 is only supported on x86 and x64 systems
RUN if dpkg-architecture -ii386 || dpkg-architecture -iamd64; then \
apt-get update && apt-get install -y \