-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding container build with lammps and mpich on rocky (#56)
Signed-off-by: vsoch <[email protected]> Co-authored-by: vsoch <[email protected]>
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
ARG tag="tag-8" | ||
FROM ghcr.io/rse-ops/spack-mpich:${tag} | ||
|
||
USER root | ||
WORKDIR /opt/ | ||
RUN yum update -y && \ | ||
yum install -y fftw3-devel fftw3 | ||
|
||
# install laamps alongside spack | ||
RUN cd /opt/spack-environment && \ | ||
. spack/share/spack/setup-env.sh && \ | ||
git clone --depth 1 --branch stable_29Sep2021_update2 https://github.com/lammps/lammps.git /opt/lammps && \ | ||
cd /opt/lammps && \ | ||
mkdir build && \ | ||
cd build && \ | ||
. /etc/profile && \ | ||
cmake ../cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DPKG_REAXFF=yes -DBUILD_MPI=yes -DPKG_OPT=yes -DFFT=FFTW3 -DCMAKE_PREFIX_PATH=/opt/view/lib -DCMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu && \ | ||
make && \ | ||
make install | ||
|
||
# ensure lmp executable is on path for flux user | ||
# And anyone can interact with lammps examples | ||
RUN mkdir -p /home/flux && \ | ||
mv /opt/lammps/examples /home/flux/examples && \ | ||
chown -R flux /home/flux/examples | ||
|
||
WORKDIR /home/flux/examples/reaxff/HNS |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dockerbuild: | ||
build_args: | ||
tag: | ||
key: tag | ||
versions: | ||
- "tag-8" |