mirror of
https://github.com/triqs/dft_tools
synced 2024-12-30 16:15:47 +01:00
12 lines
347 B
Docker
12 lines
347 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_Documentation=0
|
|
RUN cmake ${SRC}/dft_tools -DTRIQS_ROOT=${INSTALL} -DBuild_Documentation=${Build_Documentation} && make -j2 && make test
|
|
USER root
|
|
RUN make install
|