mirror of
https://github.com/triqs/dft_tools
synced 2024-11-07 06:33:48 +01:00
11 lines
276 B
Docker
11 lines
276 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
|
|
RUN cmake ${SRC}/dft_tools -DTRIQS_ROOT=${INSTALL} && make -j2 && make test
|
|
USER root
|
|
RUN make install
|