From b9924382d901a260dd7bc093f8917b00c06c4411 Mon Sep 17 00:00:00 2001 From: To-om Date: Tue, 16 May 2017 13:37:51 +0200 Subject: [PATCH] #21 Fix MISP modules integration Enable MISP modules in docker package Send config to MISP modules Catch exception in MISP modules loader Update documentation --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 2c82422c4..b3eff5f60 100644 --- a/build.sbt +++ b/build.sbt @@ -136,7 +136,7 @@ dockerCommands ~= { dc => "apt-get install -y --no-install-recommends python3-setuptools python3-dev zlib1g-dev libxslt1-dev libxml2-dev libpq5 libjpeg-dev && git clone https://github.com/MISP/misp-modules.git && " + "easy_install3 pip && " + "(cd misp-modules && pip3 install -I -r REQUIREMENTS && pip3 install -I .) && " + - "rm -rf misp_modules /var/lib/apt/lists/*"), + "rm -rf misp_modules /var/lib/apt/lists/* /tmp/*"), Cmd("ADD", "var", "/var"), Cmd("ADD", "etc", "/etc"), ExecCmd("RUN", "chown", "-R", "daemon:daemon", "/var/log/cortex")) ++