3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-02 19:35:32 +02:00
dft_tools/Dockerfile
2018-02-12 14:11:41 -05:00

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