From a5becb517c9ac251be73490e73a28e6dbfd3937b Mon Sep 17 00:00:00 2001 From: Timofei Larkin Date: Tue, 20 May 2025 15:21:20 +0300 Subject: [PATCH] [e2e] Return genisoimage to the e2e-test Dockerfile (#962) commit 7a7512da308eeb8559577bb9f901bebf04f29269 removed genisoimage package installation from Dockerfile which leds to test fail due to the fact that genisoimage is missing and runner enable to create image. [issue reference](https://github.com/cozystack/cozystack/actions/runs/15084476654/job/42406141954). restored genisoimage package installation in Dockerfile. (cherry picked from commit 8d74a35e9c8962f523e814205f0b1f4d48742d3c) Signed-off-by: Timofei Larkin --- packages/core/testing/images/e2e-sandbox/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/testing/images/e2e-sandbox/Dockerfile b/packages/core/testing/images/e2e-sandbox/Dockerfile index 3b25dfc6..9d948e7c 100755 --- a/packages/core/testing/images/e2e-sandbox/Dockerfile +++ b/packages/core/testing/images/e2e-sandbox/Dockerfile @@ -8,7 +8,7 @@ ARG TARGETOS ARG TARGETARCH RUN apt update -q -RUN apt install -yq --no-install-recommends ca-certificates qemu-kvm qemu-utils iproute2 iptables wget xz-utils netcat curl jq make git +RUN apt install -yq --no-install-recommends genisoimage ca-certificates qemu-kvm qemu-utils iproute2 iptables wget xz-utils netcat curl jq make git RUN curl -sSL "https://github.com/siderolabs/talos/releases/download/v${TALOSCTL_VERSION}/talosctl-${TARGETOS}-${TARGETARCH}" -o /usr/local/bin/talosctl \ && chmod +x /usr/local/bin/talosctl RUN curl -sSL "https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/${TARGETOS}/${TARGETARCH}/kubectl" -o /usr/local/bin/kubectl \