From cd96f7d9c38339db4217a4ff2f657462a082ff3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20N=C3=A9meth?= <6349914+abalage@users.noreply.github.com> Date: Tue, 23 Mar 2021 14:31:58 +0100 Subject: [PATCH] Install lief from pip instead of broken snapshot url Lief snapshot url does not exist anymore. Use pip. --- container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/Dockerfile b/container/Dockerfile index e79d745..869e29c 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -62,7 +62,7 @@ RUN sudo pip3 install --upgrade pip ; \ sudo pip3 install /var/www/MISP/cti-python-stix2 ; \ sudo pip3 install /var/www/MISP/PyMISP ; \ sudo pip3 install git+https://github.com/kbandla/pydeep.git ; \ - sudo pip3 install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.9.0.dev.zip ; \ + sudo pip3 install lief ; \ sudo pip3 install jsonschema ; \ sudo pip3 install reportlab ; \ sudo pip3 install python-magic ; \