diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-10-29 01:53:14 +0200 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-10-29 17:24:06 +0200 |
commit | 5f186754fe54e9a5b0f7cdea1b295778ddd6796a (patch) | |
tree | f8b12b248042e2123f1dd35e76438a2cb1c31f95 /data/live-build-config/hooks | |
parent | 21118557c0d4080cff99c09c53df815b0dd64ea7 (diff) | |
download | vyos-build-5f186754fe54e9a5b0f7cdea1b295778ddd6796a.tar.gz vyos-build-5f186754fe54e9a5b0f7cdea1b295778ddd6796a.zip |
containers: T2216: Include busybox container image, used in smoketests (1MB)
Diffstat (limited to 'data/live-build-config/hooks')
-rwxr-xr-x | data/live-build-config/hooks/live/41-init-podman-images.chroot | 8 |
1 files changed, 8 insertions, 0 deletions
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 |