From 364c99d2924a0bcc246158ac64259171916be387 Mon Sep 17 00:00:00 2001 From: Dylan Simon Date: Fri, 6 Apr 2018 11:55:25 -0400 Subject: [PATCH] [jenkins] expand LLVM arg Doesn't propagate from parent image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 39978459..87991393 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,6 @@ WORKDIR $BUILD/$APPNAME RUN chown build . USER build ARG BUILD_DOC=0 -RUN cmake $SRC/$APPNAME -DTRIQS_ROOT=${INSTALL} -DBuild_Documentation=${BUILD_DOC} -DCPP2RST_INCLUDE_COMMAND=--includes=/usr/lib/llvm-${LLVM}/include/c++/v1 && make -j2 && make test +RUN cmake $SRC/$APPNAME -DTRIQS_ROOT=${INSTALL} -DBuild_Documentation=${BUILD_DOC} -DCPP2RST_INCLUDE_COMMAND=--includes=/usr/lib/llvm-5.0/include/c++/v1 && make -j2 && make test USER root RUN make install