mirror of
https://github.com/TREX-CoE/trexio.git
synced 2024-11-03 20:54:07 +01:00
16 lines
521 B
Plaintext
16 lines
521 B
Plaintext
|
# ===========================================================================
|
||
|
# Script from the hdf5-manylinux repo:
|
||
|
# https://github.com/h5py/hdf5-manylinux/blob/master/Dockerfile_x86_64
|
||
|
# ===========================================================================
|
||
|
|
||
|
FROM quay.io/pypa/manylinux2010_x86_64
|
||
|
|
||
|
ENV HDF5_DIR /usr/local
|
||
|
ENV HDF5_VERSION 1.12.1
|
||
|
|
||
|
COPY install_libaec.sh /tmp/install_libaec.sh
|
||
|
RUN bash /tmp/install_libaec.sh
|
||
|
COPY install_hdf5_centos.sh /tmp/install_hdf5.sh
|
||
|
RUN bash /tmp/install_hdf5.sh
|
||
|
|