Compare commits
No commits in common. "master" and "hbins" have entirely different histories.
1 changed files with 9 additions and 3 deletions
12
Dockerfile
12
Dockerfile
|
@ -6,8 +6,7 @@ RUN dnf install -y dnf-plugins-core
|
||||||
RUN dnf install -y openmpi openmpi-devel
|
RUN dnf install -y openmpi openmpi-devel
|
||||||
RUN dnf install -y hdf5 hdf5-devel hdf5-static
|
RUN dnf install -y hdf5 hdf5-devel hdf5-static
|
||||||
RUN dnf group install -y development-tools
|
RUN dnf group install -y development-tools
|
||||||
RUN dnf install -y mpfr-devel gmp-devel libmpc-devel zlib-devel glibc-devel.i686 glibc-devel isl-devel g++ gcc-gnat gcc-gdc libgphobos-static openssl-devel
|
RUN dnf install -y mpfr-devel gmp-devel libmpc-devel zlib-devel glibc-devel.i686 glibc-devel isl-devel g++ gcc-gnat gcc-gdc libgphobos-static
|
||||||
RUN dnf install -y node
|
|
||||||
|
|
||||||
ARG user=researcher
|
ARG user=researcher
|
||||||
ARG group=researcher
|
ARG group=researcher
|
||||||
|
@ -30,8 +29,15 @@ WORKDIR ${prefix}/lime-1.3.2
|
||||||
RUN ./configure --prefix ${prefix}
|
RUN ./configure --prefix ${prefix}
|
||||||
RUN make all install
|
RUN make all install
|
||||||
|
|
||||||
|
WORKDIR ${prefix}
|
||||||
|
RUN wget https://www.openssl.org/source/openssl-1.1.0l.tar.gz
|
||||||
|
RUN tar xvzf openssl-1.1.0l.tar.gz
|
||||||
|
WORKDIR ${prefix}/openssl-1.1.0l
|
||||||
|
RUN ./config --prefix=${prefix}
|
||||||
|
RUN make all install
|
||||||
|
|
||||||
ENV PATH=/usr/lib64/openmpi/bin:$PATH
|
ENV PATH=/usr/lib64/openmpi/bin:$PATH
|
||||||
ENV LD_LIBRARY_PATH=/usr/lib64/openmpi/lib
|
ENV LD_LIBRARY_PATH=/usr/lib64/openmpi/lib:$LD_LIBRARY_PATH
|
||||||
|
|
||||||
WORKDIR /home/${user}
|
WORKDIR /home/${user}
|
||||||
RUN git clone https://github.com/paboyle/Grid.git
|
RUN git clone https://github.com/paboyle/Grid.git
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue