From 405b05fe59f4bc544155241cbeb9f244f7824920 Mon Sep 17 00:00:00 2001 From: nicugnm Date: Tue, 9 Jan 2024 18:26:50 +0200 Subject: [PATCH] fix arm/aarch64 builds. --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c620826..bf0bbd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,12 @@ WORKDIR /app # Update the system and install various dependencies RUN apt-get update && \ - apt-get install -y git cmake build-essential tar curl zip unzip pkg-config autoconf python3 \ + apt-get install -y git cmake ninja-build build-essential tar curl zip unzip pkg-config autoconf python3 \ libdevil-dev libncurses5-dev libbsd-dev +# Arm specific +ENV VCPKG_FORCE_SYSTEM_BINARIES=1 + # Install vcpkg and the required libraries RUN git clone https://github.com/Microsoft/vcpkg.git RUN bash ./vcpkg/bootstrap-vcpkg.sh