mirror of https://github.com/MISP/docker-misp
Fix for misp-modules and python3 until it's fixed upstream - thanks to @angarod for finding/testing
parent
901c50a3a7
commit
112a556905
|
@ -1,6 +1,6 @@
|
||||||
Docker MISP Container
|
Docker MISP Container
|
||||||
=====================
|
=====================
|
||||||
### Latest Update: 3-17-2019
|
### Latest Update: 5-21-2019
|
||||||
|
|
||||||
Following the Official MISP Ubuntu 18.04 LTS build instructions.
|
Following the Official MISP Ubuntu 18.04 LTS build instructions.
|
||||||
|
|
||||||
|
|
|
@ -88,10 +88,11 @@ RUN sudo pip3 install jsonschema ; \
|
||||||
sudo pip3 install redis
|
sudo pip3 install redis
|
||||||
|
|
||||||
WORKDIR /usr/local/src
|
WORKDIR /usr/local/src
|
||||||
RUN sudo -H git clone https://github.com/MISP/misp-modules.git
|
RUN sudo -H git clone https://github.com/MISP/misp-modules.git ; \
|
||||||
|
|
||||||
WORKDIR /usr/local/src/misp-modules
|
WORKDIR /usr/local/src/misp-modules
|
||||||
RUN sudo pip3 install -I -r REQUIREMENTS ; \
|
RUN sudo -H git checkout -b v2.4.104 ; \
|
||||||
|
sudo pip3 install -I -r REQUIREMENTS ; \
|
||||||
sudo pip3 install -I .
|
sudo pip3 install -I .
|
||||||
|
|
||||||
#RUN sudo pip uninstall -y cybox
|
#RUN sudo pip uninstall -y cybox
|
||||||
|
|
Loading…
Reference in New Issue