From 1860245751f753c69ae070621c580ad2eef9d2bf Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Fri, 23 Feb 2018 15:05:06 -0800 Subject: [PATCH] Dockerfile: Run make with output syncing an more warnings. Signed-off-by: Tim 'mithro' Ansell --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2544951..12dfd20e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM ${DEV_ENV_IMAGE} AS db_builder ARG NUM_PARALLEL_JOBS=1 COPY . /source -RUN cd /source && make -j${NUM_PARALLEL_JOBS} database +RUN cd /source && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefined-variables database RUN find /source/database -mindepth 1 -maxdepth 1 -type d -exec /source/htmlgen/htmlgen.py --settings={}/settings.sh --output=/output/html \; RUN mkdir -p /output/raw && find /source/database -mindepth 1 -maxdepth 1 -type d -exec cp -R {} /output/raw \;