Hi, I hope this is the right forum for this. I’m trying to install scikit-image in a Docker image and cannot seem to do so.
Here is the DockerFile I have so far:
FROM openjdk:8-jre-alpine
RUN apk add --no-cache tesseract-ocr python3 py3-numpy imagemagick && \
pip3 install --upgrade pip setuptools wheel && \
apk add --no-cache --virtual .build-deps gcc g++ zlib-dev make python3-dev py-numpy-dev jpeg-dev && \
pip3 install matplotlib && \
pip3 install scikit-image && \
apk del .build-deps
If I remove the line for scikit-image, it works fine. But I cannot add scikit-image without generating a whole bunch of errors. What dependencies am I missing?