Created
December 2, 2018 20:51
-
-
Save arne-cl/fbe3dc311a64fe533ebcd4c722996492 to your computer and use it in GitHub Desktop.
alpine-python-imagehash-docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.8 | |
RUN apk update && \ | |
apk add git build-base py2-pip python-dev zlib-dev jpeg-dev lapack-dev gfortran && \ | |
pip2 install Cython numpy | |
WORKDIR /opt | |
RUN git clone https://github.com/PyWavelets/pywt.git PyWavelets | |
WORKDIR /opt/PyWavelets | |
RUN python setup.py build && pip2 install imagehash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment