diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-11-05 20:04:24 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-11-05 20:04:24 +0100 |
commit | 3a29e22dcd579349aac987b5825073527af38e58 (patch) | |
tree | 3bb1f97380c657cb9231d72fdf4df38fbce6ec89 | |
parent | 3871fb67ec18f841c5168be0b267427efaf74cdb (diff) | |
download | vyos-build-3a29e22dcd579349aac987b5825073527af38e58.tar.gz vyos-build-3a29e22dcd579349aac987b5825073527af38e58.zip |
Docker: T2216: add required skopeo package to build container
skopeo is required for container registry download to satisfy the vyos-1x
container based smoketest(s).
-rw-r--r-- | docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 71ba81ad..0f9193ba 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -92,7 +92,8 @@ RUN apt-get update && apt-get install -y \ python3-flake8 \ python3-autopep8 \ debootstrap \ - live-build + live-build \ + skopeo # vyos-build now also makes use of TOML - install yq which has toml support RUN pip install yq==3.1.0 |