diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-10-07 22:01:05 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-10-07 22:01:05 +0200 |
commit | a11fbbaae5b451e33a871cafb0b4d76f77a96321 (patch) | |
tree | 507607791c04af4b272800db36870e258b2a25c2 | |
parent | ede30648181da0f1b66a6b3bb057c302eeaa18a4 (diff) | |
download | vyos-build-a11fbbaae5b451e33a871cafb0b4d76f77a96321.tar.gz vyos-build-a11fbbaae5b451e33a871cafb0b4d76f77a96321.zip |
Docker: T3664: install yq dependency which has a jq like tool for toml files
-rw-r--r-- | docker/Dockerfile | 3 |
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 \ |