mirror of https://github.com/MISP/misp-docker
Comments and remove layers we don't need
parent
bb482ddebf
commit
e1eb6be73f
|
@ -98,10 +98,10 @@ ARG PHP_VER
|
||||||
# MISP code
|
# MISP code
|
||||||
# Download MISP using git in the /var/www/ directory.
|
# Download MISP using git in the /var/www/ directory.
|
||||||
RUN git clone --branch v${MISP_TAG} --depth 1 https://github.com/MISP/MISP.git /var/www/MISP; \
|
RUN git clone --branch v${MISP_TAG} --depth 1 https://github.com/MISP/MISP.git /var/www/MISP; \
|
||||||
|
# We build the MISP modules outside, so we don't need to grab those submodules
|
||||||
cd /var/www/MISP/app; git submodule update --init --recursive .;
|
cd /var/www/MISP/app; git submodule update --init --recursive .;
|
||||||
|
|
||||||
# Python Modules
|
# Python Modules
|
||||||
RUN mkdir /wheels
|
|
||||||
COPY --from=python-build /wheels /wheels
|
COPY --from=python-build /wheels /wheels
|
||||||
RUN pip3 install --no-cache-dir /wheels/*.whl plyara pyzmq redis python-magic lief && rm -rf /wheels
|
RUN pip3 install --no-cache-dir /wheels/*.whl plyara pyzmq redis python-magic lief && rm -rf /wheels
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue