mirror of
https://github.com/triqs/dft_tools
synced 2024-12-21 11:53:41 +01:00
73d37c6836
and publish; copied from triqs docs build, but with different BUILD_DOC cmake option.
12 lines
317 B
Docker
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
|