From 599d15b64ec1bcaa591d077c4d71c4ee21581ee7 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Mon, 7 Jan 2019 23:22:14 -0800 Subject: [PATCH] Try again updating Dockerfile. Signed-off-by: Tim 'mithro' Ansell --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f4db0ab1..9b7de2d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG NUM_PARALLEL_JOBS=1 COPY . /source RUN cd /source && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefined-variables build -RUN source /source/database/artix7/settings.sh; cd /source/fuzzer && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefined-variables +RUN . /source/database/artix7/settings.sh; cd /source/fuzzers && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefined-variables #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 \;