mirror of https://github.com/MISP/docker-misp
Upstream update to install process: 2050c864a4d838e93e69b839763b72e4a76c979a and 11a9b93a3e8cc67a78b03d4c904d3be50522ba6f - added python MAEC, and updated git submodule pulls to be recursive
parent
c3e98ab669
commit
ccab1de24a
|
@ -1,10 +1,10 @@
|
||||||
Docker MISP Container
|
Docker MISP Container
|
||||||
=====================
|
=====================
|
||||||
### Latest Update: 9-4-2018
|
### Latest Update: 10-10-2018
|
||||||
|
|
||||||
Following the Official MISP Ubuntu 18.04 LTS build instructions.
|
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:
|
Github repo + build script here:
|
||||||
https://github.com/harvard-itsecurity/docker-misp
|
https://github.com/harvard-itsecurity/docker-misp
|
||||||
|
|
|
@ -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
|
WORKDIR /var/www/MISP/app/files/scripts
|
||||||
RUN sudo -u www-data -H git clone https://github.com/CybOXProject/python-cybox.git ; \
|
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
|
WORKDIR /var/www/MISP/app/files/scripts/python-cybox
|
||||||
RUN sudo python3 setup.py install
|
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
|
WORKDIR /var/www/MISP/app/files/scripts/python-stix
|
||||||
RUN sudo python3 setup.py install
|
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/
|
WORKDIR /var/www/MISP/app/files/scripts/
|
||||||
RUN sudo -u www-data -H git clone https://github.com/CybOXProject/mixbox.git ; \
|
RUN sudo -u www-data -H git clone https://github.com/CybOXProject/mixbox.git ; \
|
||||||
cd /var/www/MISP/app/files/scripts/mixbox ; \
|
cd /var/www/MISP/app/files/scripts/mixbox ; \
|
||||||
|
|
Loading…
Reference in New Issue