Skip to content

Instantly share code, notes, and snippets.

@nvgoldin
Last active January 3, 2021 15:31
Show Gist options
  • 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
@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