Skip to content

Instantly share code, notes, and snippets.

@nvgoldin
Last active January 3, 2021 15:31
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nvgoldin/9dc71efc95fb7319f15fa56a5d60deb8 to your computer and use it in GitHub Desktop.
Save nvgoldin/9dc71efc95fb7319f15fa56a5d60deb8 to your computer and use it in GitHub Desktop.
Installing tables, h5py in Alpine Docker(python:2.7.14-alpine)
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
@MartinThoma
Copy link

Thank you!

@josezy
Copy link

josezy commented Jan 13, 2020

Good!

@chfer
Copy link

chfer commented Mar 25, 2020

Super. This was exactly what I was looking for. Thank you very much :-)

@chris1248
Copy link

doesn't work

@flying-sheep
Copy link

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