From b063e3bcd55f53611f2f7bcb57e261d83c9d4fb2 Mon Sep 17 00:00:00 2001 From: Ventz Petkov Date: Wed, 27 Feb 2019 08:54:00 -0500 Subject: [PATCH] Fix for installing latest PyMISP - reportlab requirement as per: https://github.com/MISP/PyMISP/issues/351 --- README.md | 2 +- container/Dockerfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e6a868..25756cf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ Docker MISP Container ===================== -### Latest Update: 1-15-2019 +### Latest Update: 2-27-2019 Following the Official MISP Ubuntu 18.04 LTS build instructions. diff --git a/container/Dockerfile b/container/Dockerfile index e110385..79baa91 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -72,6 +72,7 @@ RUN sudo -u www-data -H git submodule init ; \ sudo -u www-data -H git submodule update RUN sudo pip3 install jsonschema ; \ + sudo pip3 install reportlab ; \ sudo pip3 install pymisp WORKDIR /var/www/MISP/PyMISP