PIP Install uamqp on a RaspberryPi
Solution 1:
In the error message, we can see
/bin/sh: 1: cmake: not found
So you are lacking cmake
which you should be able to install with
RUN apt install -y cmake
In the error message, we can see
/bin/sh: 1: cmake: not found
So you are lacking cmake
which you should be able to install with
RUN apt install -y cmake