diff options
-rw-r--r-- | data/build-types/development.toml | 1 | ||||
-rwxr-xr-x | data/live-build-config/hooks/live/41-init-podman-images.chroot | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/data/build-types/development.toml b/data/build-types/development.toml index f0207a6a..31c50522 100644 --- a/data/build-types/development.toml +++ b/data/build-types/development.toml @@ -2,6 +2,7 @@ packages = [ "gdb", "strace", "apt-rdepends", + "skopeo", "tshark", "vim", "vyos-1x-smoketest" diff --git a/data/live-build-config/hooks/live/41-init-podman-images.chroot b/data/live-build-config/hooks/live/41-init-podman-images.chroot new file mode 100755 index 00000000..1915a40f --- /dev/null +++ b/data/live-build-config/hooks/live/41-init-podman-images.chroot @@ -0,0 +1,8 @@ +#!/bin/sh + +# Download busybox container image for smoketests (only ~1MB) +# Skopeo only added on development builds + +if command -v skopeo &>/dev/null; then + skopeo copy --additional-tag docker.io/library/busybox:stable docker://docker.io/library/busybox:stable docker-archive://usr/share/vyos/busybox-stable.tar +fi |