Skip to content

Instantly share code, notes, and snippets.

@arne-cl
Created December 2, 2018 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arne-cl/fbe3dc311a64fe533ebcd4c722996492 to your computer and use it in GitHub Desktop.
Save arne-cl/fbe3dc311a64fe533ebcd4c722996492 to your computer and use it in GitHub Desktop.
alpine-python-imagehash-docker
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