From 50ee447e527d8136ae38a97716984749d3b2aada Mon Sep 17 00:00:00 2001 From: Marc Altmann <40744649+MarcA711@users.noreply.github.com> Date: Thu, 9 May 2024 15:22:34 +0200 Subject: [PATCH] Fix aarch64 build (#11289) * fix aarch64 build * change order of packages --- docker/main/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/main/Dockerfile b/docker/main/Dockerfile index 3354a21cc..de823bf1c 100644 --- a/docker/main/Dockerfile +++ b/docker/main/Dockerfile @@ -51,7 +51,7 @@ ARG DEBIAN_FRONTEND # Install OpenVino Runtime and Dev library COPY docker/main/requirements-ov.txt /requirements-ov.txt RUN apt-get -qq update \ - && apt-get -qq install -y wget python3 python3-distutils \ + && apt-get -qq install -y wget python3 python3-dev python3-distutils gcc pkg-config libhdf5-dev \ && wget -q https://bootstrap.pypa.io/get-pip.py -O get-pip.py \ && python3 get-pip.py "pip" \ && pip install -r /requirements-ov.txt