diff --git a/README.md b/README.md index 07662d6..9dc37f1 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ Docker MISP Container ===================== -### Latest Update: 9-4-2018 +### Latest Update: 10-10-2018 Following the Official MISP Ubuntu 18.04 LTS build instructions. -Latest Upstream Change Included: f72fc1f1f8a7fc901a54821d6f036fabc7540f6a +Latest Upstream Change Included: 2050c864a4d838e93e69b839763b72e4a76c979a Github repo + build script here: https://github.com/harvard-itsecurity/docker-misp diff --git a/container/Dockerfile b/container/Dockerfile index 1513ef7..9fcde47 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -48,7 +48,8 @@ RUN chown -R www-data:www-data /var/www/MISP /root/.config /root/.git; \ WORKDIR /var/www/MISP/app/files/scripts RUN sudo -u www-data -H git clone https://github.com/CybOXProject/python-cybox.git ; \ - sudo -u www-data -H git clone https://github.com/STIXProject/python-stix.git + sudo -u www-data -H git clone https://github.com/STIXProject/python-stix.git ; \ + sudo -u www-data -H git clone https://github.com/MAECProject/python-maec.git WORKDIR /var/www/MISP/app/files/scripts/python-cybox RUN sudo python3 setup.py install @@ -56,6 +57,9 @@ RUN sudo python3 setup.py install WORKDIR /var/www/MISP/app/files/scripts/python-stix RUN sudo python3 setup.py install +WORKDIR /var/www/MISP/app/files/scripts/python-maec +RUN sudo python3 setup.py install + WORKDIR /var/www/MISP/app/files/scripts/ RUN sudo -u www-data -H git clone https://github.com/CybOXProject/mixbox.git ; \ cd /var/www/MISP/app/files/scripts/mixbox ; \