Last active
January 3, 2021 15:31
-
-
Save nvgoldin/9dc71efc95fb7319f15fa56a5d60deb8 to your computer and use it in GitHub Desktop.
Installing tables, h5py in Alpine Docker(python:2.7.14-alpine)
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 python:2.7.14-alpine | |
RUN apk add --no-cache \ | |
--allow-untrusted \ | |
--repository \ | |
http://dl-3.alpinelinux.org/alpine/edge/testing \ | |
hdf5 \ | |
hdf5-dev && \ | |
apk add --no-cache \ | |
build-base | |
RUN pip install --no-cache-dir --no-binary :all: tables h5py | |
RUN apk --no-cache del build-base |
Good!
Super. This was exactly what I was looking for. Thank you very much :-)
doesn't work
doesn't work
please be specific if you want help: what doesn’t? what’t the error message?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!