From 2ee47eac4daaeb596f4ab1d3f063de0fb7f1d7c5 Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Wed, 21 Feb 2024 16:16:26 -0500 Subject: [PATCH] Add in missing dependency for nightly-sp-test --- Docker/Dockerfile.cross-compiler | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/Dockerfile.cross-compiler b/Docker/Dockerfile.cross-compiler index a89a9d5b5..a9868d38d 100644 --- a/Docker/Dockerfile.cross-compiler +++ b/Docker/Dockerfile.cross-compiler @@ -3,7 +3,7 @@ FROM $DOCKER_BASE_IMAGE USER root -ARG DEPS_TESTING="gcc-arm-linux-gnueabi gcc-aarch64-linux-gnu" +ARG DEPS_TESTING="gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu" RUN DEBIAN_FRONTEND=noninteractive apt update \ && apt install -y ${DEPS_TESTING} \ && apt clean -y && rm -rf /var/lib/apt/lists/*