3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 16:34:53 +02:00
dft_tools/Dockerfile
Dylan Simon 73d37c6836 [jenkins] Build docs during ubuntu-clang build
and publish; copied from triqs docs build, but with different BUILD_DOC
cmake option.
2018-03-07 15:27:16 -05:00

12 lines
317 B
Docker

# See ../triqs/packaging for other options
FROM flatironinstitute/triqs:master-ubuntu-clang
COPY . ${SRC}/dft_tools
WORKDIR ${BUILD}/dft_tools
RUN chown build .
USER build
ARG BUILD_DOC=0
RUN cmake ${SRC}/dft_tools -DTRIQS_ROOT=${INSTALL} -DBUILD_DOC=${BUILD_DOC} && make -j2 && make test
USER root
RUN make install