Last active
September 11, 2017 04:06
-
-
Save leofang/e70e0dbdfc256c6793616c07dfc31acd to your computer and use it in GitHub Desktop.
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
# build locally at the root of cthyb-ohmic: | |
# docker build --build-arg arg_build_time="$(date +"%b. %d, %T %Z, %Y")" --squash -t leofang/cthyb-ohmic . | |
FROM centos:latest | |
# get cthyb-ohmic; this layer will expose the source, so remember to squash when building! | |
ADD . /opt/cthyb-ohmic/ | |
# get alps; note the pipe slot after tar | |
RUN curl -s http://alps.comp-phys.org/static/software/releases/alps-2.2.b3-r7462-src-with-boost.tar.gz | \ | |
tar -xzf - -C /opt/ | |
# install build tools | |
RUN yum -y install epel-release \ | |
&& yum -y install gcc gcc-c++ gcc-gfortran make cmake blas blas-devel lapack lapack-devel hdf5 hdf5-devel | |
# install alps | |
RUN mkdir /opt/alps_build && cd /opt/alps_build && cmake \ | |
-D ALPS_BUILD_TESTS=OFF \ | |
-D ALPS_BUILD_EXAMPLES=OFF \ | |
-D ALPS_BUILD_APPLICATIONS=OFF \ | |
-D ALPS_BUILD_PYTHON=OFF \ | |
-D ALPS_ENABLE_MPI=OFF \ | |
-D LAPACK_64_BIT=ON \ | |
-D CMAKE_C_COMPILER=/usr/bin/gcc \ | |
-D CMAKE_CXX_COMPILER=/usr/bin/g++ \ | |
-D CMAKE_INSTALL_PREFIX=/usr/local/ \ | |
-D Boost_ROOT_DIR=/opt/alps-2.2.b3-r7462-src-with-boost/boost/ \ | |
/opt/alps-2.2.b3-r7462-src-with-boost/alps/ \ | |
&& make -j 2 && make install | |
# install cthyb-ohmic | |
RUN cd /opt/cthyb-ohmic/ && cmake ./ && make -j 2 && mv cthyb_ohmic /usr/local/bin/ | |
# clean up; again, this layer has no effect without squashing | |
RUN yum clean all && rm -rf /opt/ | |
# create labels | |
ARG arg_build_time | |
LABEL Maintainer="Leo Fang <[email protected]>" Description="A Docker image for cthyb-ohmic" License="WTFPL v2" "Build time"=$arg_build_time | |
# set Docker command | |
ENTRYPOINT ["/usr/local/bin/cthyb_ohmic"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment