diff --git a/docker/armv7l_wheel.Dockerfile b/docker/armv7l_wheel.Dockerfile index 159c3b9b..b62a7f13 100644 --- a/docker/armv7l_wheel.Dockerfile +++ b/docker/armv7l_wheel.Dockerfile @@ -16,9 +16,13 @@ RUN \ pkg-config \ autoconf \ automake \ - cmake \ - patchelf && \ + cmake && \ python3 -m pip install --upgrade pip && \ + echo "**** Installing patchelf ****" && \ + git clone https://github.com/NixOS/patchelf.git && \ + cd patchelf && \ + ./bootstrap.sh && ./configure && make && make check && make install && \ + cd .. && \ echo "**** Install python build dependencies ****" && \ python3 -m pip install cffi pytest && \ echo "**** Start building ****" && \