I am trying to install scikit-image in alpine docker but for some reason it is keep throwing No module named 'numpy' error
Here is the Dockerfile
COPY requirements.txt requirements.txt
# Installing System Libraries and Python Dependencies
RUN apk update && apk add --no-cache gcc musl-dev make && ln -s /usr/include/locale.h /usr/include/xlocale.h \
&& pip install -r requirements.txt && apk del gcc musl-dev make
And Here is the requirements.txt
numpy
matplotlib
scikit-image
scikit-learn