From 8921d159b103d77d2e665d87201c13814a85ffa2 Mon Sep 17 00:00:00 2001 From: To-om Date: Fri, 12 May 2017 16:19:58 +0200 Subject: [PATCH] Use master branch of cortex analyzers to build docker --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index f4212af3b..75bf94c82 100644 --- a/build.sbt +++ b/build.sbt @@ -124,8 +124,8 @@ dockerCommands ~= { dc => "apt-get update && " + "apt-get install -y --no-install-recommends python-pip python2.7-dev ssdeep libfuzzy-dev libfuzzy2 libimage-exiftool-perl libmagic1 build-essential git && " + "cd /opt && " + - "git clone -b develop https://github.com/CERT-BDF/Cortex-Analyzers.git && " + - "pip install $(cat Cortex-Analyzers/analyzers/*/requirements.txt | grep -v hashlib | sort -u)"), + "git clone https://github.com/CERT-BDF/Cortex-Analyzers.git && " + + "pip install $(sort -u Cortex-Analyzers/analyzers/*/requirements.txt)"), Cmd("ADD", "var", "/var"), Cmd("ADD", "etc", "/etc"), ExecCmd("RUN", "chown", "-R", "daemon:daemon", "/var/log/cortex")) ++