mirror of
https://github.com/triqs/dft_tools
synced 2024-12-23 04:43:42 +01:00
e8a14a3406
Fixed by cpp2py build in triqs efd7b0f7d855a0b5ae260d0fd7a6031cec068072
13 lines
330 B
Docker
13 lines
330 B
Docker
# See ../triqs/packaging for other options
|
|
FROM flatironinstitute/triqs:master-ubuntu-clang
|
|
|
|
ARG APPNAME
|
|
COPY . $SRC/$APPNAME
|
|
WORKDIR $BUILD/$APPNAME
|
|
RUN chown build .
|
|
USER build
|
|
ARG BUILD_DOC=0
|
|
RUN cmake $SRC/$APPNAME -DTRIQS_ROOT=${INSTALL} -DBuild_Documentation=${BUILD_DOC} && make -j2 && make test
|
|
USER root
|
|
RUN make install
|