From 9abf398273c2c662f6928bf8f03fca1b7b7cf7ea Mon Sep 17 00:00:00 2001 From: Unai Sainz-Estebanez Date: Mon, 23 Dec 2024 11:06:19 +0100 Subject: [PATCH] Add libseccomp-dev to urv container Container building still failing Add libseccomp-dev according to: https://github.com/docker-library/official-images/issues/16829 to see if it gets fixed --- .github/urv-toolchain-spec_def.containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/urv-toolchain-spec_def.containerfile b/.github/urv-toolchain-spec_def.containerfile index ad8051f..2a38b67 100755 --- a/.github/urv-toolchain-spec_def.containerfile +++ b/.github/urv-toolchain-spec_def.containerfile @@ -19,6 +19,7 @@ RUN apt-get update -qq \ && apt-get install -y curl \ && apt-get install -y xz-utils \ && apt-get install -y make \ +&& apt-get install -y libseccomp-dev \ && curl -L -o riscv-11.2-small.tgz https://ohwr.org/project/wrpc-sw/wikis/uploads/9f9224d2249848ed3e854636de9c08dc/riscv-11.2-small.tgz \ && tar xzvf riscv-11.2-small.tgz -C . --no-same-owner --no-overwrite-dir\ && export CROSS_COMPILE="/riscv-11.2-small/bin/riscv32-elf-" \