From 9e6844ba29dabca623da99168ef326bb9b31f5ef Mon Sep 17 00:00:00 2001 From: Koen Van Impe Date: Fri, 4 Dec 2020 14:35:54 +0100 Subject: [PATCH] Fixate to misp-modules 2.4.134 Avoid running into https://github.com/MISP/misp-modules/issues/453 ; which blocks deployment of Docker container. --- web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 3d57533..3578938 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -137,7 +137,7 @@ RUN sudo -E apt-get -y install libpoppler73 libpoppler-dev libpoppler-cpp-dev # Install MISP Modules WORKDIR /opt -RUN git clone https://github.com/MISP/misp-modules.git +RUN git clone --branch v2.4.134 https://github.com/MISP/misp-modules.git RUN cd misp-modules && \ pip3 install --upgrade pip setuptools wheel && \ pip3 install scikit-build && \