From dfee8cd0e317bb5be133bc68d18e458b65dcc33b Mon Sep 17 00:00:00 2001 From: Matthias Maes Date: Wed, 27 Feb 2019 15:04:43 +0100 Subject: [PATCH] [Fix] Add missing reportlab import to Dockerfile --- container/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container/Dockerfile b/container/Dockerfile index 79baa91..281b75d 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -72,8 +72,8 @@ 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 + sudo pip3 install pymisp ; \ + sudo pip3 install reportlab WORKDIR /var/www/MISP/PyMISP RUN python3 setup.py install