Upstream update to install process: 2050c864a4d838e93e69b839763b72e4a76c979a and 11a9b93a3e8cc67a78b03d4c904d3be50522ba6f - added python MAEC, and updated git submodule pulls to be recursive

pull/4/head
Ventz Petkov 2018-10-10 08:46:53 -04:00
parent c3e98ab669
commit ccab1de24a
2 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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 ; \