2020-02-12 14:47:01 +01:00
|
|
|
FROM composer:1.9 as composer-build
|
2019-12-11 15:31:09 +01:00
|
|
|
ARG MISP_TAG
|
2019-12-11 15:12:41 +01:00
|
|
|
WORKDIR /tmp
|
2020-02-21 16:30:15 +01:00
|
|
|
ADD https://raw.githubusercontent.com/MISP/MISP/${MISP_TAG}/app/composer.json /tmp
|
2019-12-11 15:12:41 +01:00
|
|
|
RUN composer install --ignore-platform-reqs
|
|
|
|
|
2019-11-28 17:33:12 +01:00
|
|
|
FROM debian:buster-slim as php-build
|
|
|
|
RUN apt-get update; apt-get install -y --no-install-recommends \
|
|
|
|
gcc \
|
|
|
|
make \
|
|
|
|
libfuzzy-dev \
|
|
|
|
ca-certificates \
|
|
|
|
php \
|
|
|
|
php-dev \
|
|
|
|
php-pear \
|
2021-04-14 14:02:31 +02:00
|
|
|
librdkafka-dev \
|
2019-11-28 17:33:12 +01:00
|
|
|
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
2021-04-14 14:02:31 +02:00
|
|
|
|
|
|
|
RUN pecl channel-update pecl.php.net
|
2019-11-28 17:33:12 +01:00
|
|
|
RUN cp /usr/lib/x86_64-linux-gnu/libfuzzy.* /usr/lib; pecl install ssdeep
|
2021-04-14 14:02:31 +02:00
|
|
|
RUN pecl install rdkafka
|
2019-11-28 17:33:12 +01:00
|
|
|
|
2019-11-28 16:46:43 +01:00
|
|
|
FROM debian:buster-slim as python-build
|
|
|
|
RUN apt-get update; apt-get install -y --no-install-recommends \
|
|
|
|
gcc \
|
|
|
|
git \
|
|
|
|
python3 \
|
|
|
|
python3-dev \
|
2021-02-16 23:37:51 +01:00
|
|
|
python3-pip \
|
2019-11-28 16:46:43 +01:00
|
|
|
python3-setuptools \
|
|
|
|
python3-wheel \
|
|
|
|
libfuzzy-dev \
|
|
|
|
ca-certificates \
|
|
|
|
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2019-12-11 15:09:57 +01:00
|
|
|
RUN mkdir /wheels
|
|
|
|
|
2019-11-28 16:46:43 +01:00
|
|
|
WORKDIR /tmp
|
2021-02-16 23:37:51 +01:00
|
|
|
|
2019-11-28 16:46:43 +01:00
|
|
|
RUN git clone --depth 1 https://github.com/CybOXProject/mixbox.git; \
|
2021-02-16 23:37:51 +01:00
|
|
|
cd mixbox || exit; python3 setup.py bdist_wheel -d /wheels; \
|
|
|
|
sed -i 's/-e //g' requirements.txt; pip3 wheel -r requirements.txt --no-cache-dir -w /wheels/
|
2019-11-28 16:46:43 +01:00
|
|
|
|
|
|
|
# install python-maec
|
|
|
|
RUN git clone --depth 1 https://github.com/MAECProject/python-maec.git; \
|
2020-02-12 15:37:23 +01:00
|
|
|
cd python-maec || exit; python3 setup.py bdist_wheel -d /wheels
|
2019-11-28 16:46:43 +01:00
|
|
|
|
|
|
|
# install python-cybox
|
|
|
|
RUN git clone --depth 1 https://github.com/CybOXProject/python-cybox.git; \
|
2021-02-16 23:37:51 +01:00
|
|
|
cd python-cybox || exit; python3 setup.py bdist_wheel -d /wheels; \
|
|
|
|
sed -i 's/-e //g' requirements.txt; pip3 wheel -r requirements.txt --no-cache-dir -w /wheels/
|
2019-11-28 16:46:43 +01:00
|
|
|
|
|
|
|
# install python stix
|
|
|
|
RUN git clone --depth 1 https://github.com/STIXProject/python-stix.git; \
|
2021-02-16 23:37:51 +01:00
|
|
|
cd python-stix || exit; python3 setup.py bdist_wheel -d /wheels; \
|
|
|
|
sed -i 's/-e //g' requirements.txt; pip3 wheel -r requirements.txt --no-cache-dir -w /wheels/
|
2019-11-28 16:46:43 +01:00
|
|
|
|
|
|
|
# install STIX2.0 library to support STIX 2.0 export:
|
|
|
|
RUN git clone --depth 1 https://github.com/MISP/cti-python-stix2.git; \
|
2021-02-16 23:37:51 +01:00
|
|
|
cd cti-python-stix2 || exit; python3 setup.py bdist_wheel -d /wheels; \
|
|
|
|
sed -i 's/-e //g' requirements.txt; pip3 wheel -r requirements.txt --no-cache-dir -w /wheels/
|
2019-11-28 16:46:43 +01:00
|
|
|
|
|
|
|
# install PyMISP
|
|
|
|
RUN git clone --depth 1 https://github.com/MISP/PyMISP.git; \
|
2020-02-12 15:37:23 +01:00
|
|
|
cd PyMISP || exit; python3 setup.py bdist_wheel -d /wheels
|
2019-11-28 16:46:43 +01:00
|
|
|
|
|
|
|
# install pydeep
|
|
|
|
RUN git clone --depth 1 https://github.com/coolacid/pydeep.git; \
|
2020-02-12 15:37:23 +01:00
|
|
|
cd pydeep || exit; python3 setup.py bdist_wheel -d /wheels
|
2019-11-28 16:46:43 +01:00
|
|
|
|
2021-02-16 23:37:51 +01:00
|
|
|
# Grab other modules we need
|
|
|
|
RUN pip3 wheel --no-cache-dir -w /wheels/ plyara pyzmq redis python-magic lief
|
|
|
|
|
|
|
|
# Temp workaround for cryptography library
|
|
|
|
RUN pip3 wheel 'cryptography>=3.3.0,<3.4.0' --no-cache-dir -w /wheels/
|
|
|
|
|
|
|
|
# Remove extra packages due to incompatible requirements.txt files
|
|
|
|
WORKDIR /wheels
|
2021-03-10 19:01:52 +01:00
|
|
|
RUN find . -name "tox*" | grep -v "tox-2.7.0" | xargs rm -f
|
|
|
|
RUN find . -name "Sphinx*" | grep -v "Sphinx-1.8.5" | xargs rm -f
|
2021-02-16 23:37:51 +01:00
|
|
|
|
|
|
|
|
2019-11-25 22:58:18 +01:00
|
|
|
FROM debian:buster-slim
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
2019-12-11 15:31:09 +01:00
|
|
|
ARG MISP_TAG
|
|
|
|
ARG PHP_VER
|
2019-11-25 22:58:18 +01:00
|
|
|
|
2019-11-26 01:23:59 +01:00
|
|
|
# OS Packages
|
2019-11-25 22:58:18 +01:00
|
|
|
RUN apt-get update; apt-get install -y --no-install-recommends \
|
2019-11-28 17:48:44 +01:00
|
|
|
# Requirements:
|
2020-02-25 02:14:47 +01:00
|
|
|
procps \
|
2019-11-25 22:58:18 +01:00
|
|
|
sudo \
|
2020-02-20 02:21:49 +01:00
|
|
|
nginx \
|
2019-11-25 22:58:18 +01:00
|
|
|
supervisor \
|
2019-11-28 17:33:12 +01:00
|
|
|
git \
|
2019-11-26 22:18:52 +01:00
|
|
|
cron \
|
2019-11-25 22:58:18 +01:00
|
|
|
openssl \
|
2019-11-26 18:06:19 +01:00
|
|
|
gpg-agent gpg \
|
2019-11-28 17:48:44 +01:00
|
|
|
ssdeep \
|
|
|
|
libfuzzy2 \
|
|
|
|
mariadb-client \
|
2020-05-29 01:49:27 +02:00
|
|
|
rsync \
|
2019-11-28 17:48:44 +01:00
|
|
|
# Python Requirements
|
2019-11-25 22:58:18 +01:00
|
|
|
python3 \
|
|
|
|
python3-setuptools \
|
|
|
|
python3-pip \
|
2019-11-28 17:48:44 +01:00
|
|
|
# PHP Requirements
|
2019-11-25 22:58:18 +01:00
|
|
|
php \
|
|
|
|
php-xml \
|
2021-02-17 01:00:52 +01:00
|
|
|
php-intl \
|
|
|
|
php-bcmath \
|
2019-11-25 22:58:18 +01:00
|
|
|
php-mbstring \
|
|
|
|
php-mysql \
|
|
|
|
php-redis \
|
|
|
|
php-gd \
|
2020-02-20 02:21:49 +01:00
|
|
|
php-fpm \
|
2020-09-11 02:35:10 +02:00
|
|
|
php-zip \
|
2019-11-28 17:48:44 +01:00
|
|
|
# Unsure we need these
|
|
|
|
zip unzip \
|
2020-05-18 15:22:41 +02:00
|
|
|
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
2019-11-25 22:58:18 +01:00
|
|
|
|
|
|
|
# MISP code
|
|
|
|
# Download MISP using git in the /var/www/ directory.
|
2020-02-21 16:30:15 +01:00
|
|
|
RUN git clone --branch ${MISP_TAG} --depth 1 https://github.com/MISP/MISP.git /var/www/MISP; \
|
2019-12-11 15:47:04 +01:00
|
|
|
# We build the MISP modules outside, so we don't need to grab those submodules
|
2020-02-12 15:37:23 +01:00
|
|
|
cd /var/www/MISP/app || exit; git submodule update --init --recursive .;
|
2019-11-25 22:58:18 +01:00
|
|
|
|
|
|
|
# Python Modules
|
2019-12-11 15:09:57 +01:00
|
|
|
COPY --from=python-build /wheels /wheels
|
2021-02-16 23:37:51 +01:00
|
|
|
RUN pip3 install --no-cache-dir /wheels/*.whl && rm -rf /wheels
|
2019-11-25 22:58:18 +01:00
|
|
|
|
2019-11-28 18:11:48 +01:00
|
|
|
# PHP
|
|
|
|
# Install ssdeep prebuild, latest composer, then install the app's PHP deps
|
2019-11-28 17:33:12 +01:00
|
|
|
COPY --from=php-build /usr/lib/php/${PHP_VER}/ssdeep.so /usr/lib/php/${PHP_VER}/ssdeep.so
|
2021-04-14 14:02:31 +02:00
|
|
|
COPY --from=php-build /usr/lib/php/${PHP_VER}/rdkafka.so /usr/lib/php/${PHP_VER}/rdkafka.so
|
|
|
|
|
2019-12-11 15:12:41 +01:00
|
|
|
COPY --from=composer-build /tmp/Vendor /var/www/MISP/app/Vendor
|
|
|
|
COPY --from=composer-build /tmp/Plugin /var/www/MISP/app/Plugin
|
2021-04-14 14:02:31 +02:00
|
|
|
|
2021-04-14 14:04:17 +02:00
|
|
|
RUN for dir in /etc/php/*; do echo "extension=rdkafka.so" > "$dir/mods-available/rdkafka.ini"; done; phpenmod rdkafka
|
|
|
|
|
2021-04-14 14:02:31 +02:00
|
|
|
|
2020-02-19 15:38:41 +01:00
|
|
|
RUN for dir in /etc/php/*; do echo "extension=ssdeep.so" > "$dir/mods-available/ssdeep.ini"; done \
|
2021-04-14 14:04:17 +02:00
|
|
|
;phpenmod redis \
|
2019-11-25 22:58:18 +01:00
|
|
|
# Enable CakeResque with php-gnupgp
|
|
|
|
;phpenmod gnupg \
|
2019-11-28 17:33:12 +01:00
|
|
|
# Enable ssdeep we build earlier
|
|
|
|
;phpenmod ssdeep \
|
2019-11-25 22:58:18 +01:00
|
|
|
# To use the scheduler worker for scheduled tasks, do the following:
|
|
|
|
;cp -fa /var/www/MISP/INSTALL/setup/config.php /var/www/MISP/app/Plugin/CakeResque/Config/config.php
|
|
|
|
|
2020-02-20 02:21:49 +01:00
|
|
|
# nginx
|
2020-05-29 02:23:33 +02:00
|
|
|
RUN rm /etc/nginx/sites-enabled/*; mkdir /run/php /etc/nginx/certs
|
2020-05-29 01:33:54 +02:00
|
|
|
COPY files/etc/nginx/misp /etc/nginx/sites-available/misp
|
|
|
|
COPY files/etc/nginx/misp-secure /etc/nginx/sites-available/misp-secure
|
2020-02-27 21:28:21 +01:00
|
|
|
COPY files/etc/nginx/misp80 /etc/nginx/sites-available/misp80
|
|
|
|
COPY files/etc/nginx/misp80-noredir /etc/nginx/sites-available/misp80-noredir
|
2019-11-25 22:58:18 +01:00
|
|
|
|
|
|
|
# Make a copy of the file store, so we can sync from it
|
|
|
|
RUN cp -R /var/www/MISP/app/files /var/www/MISP/app/files.dist
|
|
|
|
|
2020-02-28 00:10:39 +01:00
|
|
|
# Make a copy of the configurations, so we can sync from it
|
|
|
|
RUN cp -R /var/www/MISP/app/Config /var/www/MISP/app/Config.dist
|
|
|
|
|
2019-11-25 22:58:18 +01:00
|
|
|
# Entrypoints
|
|
|
|
COPY files/etc/supervisor/supervisor.conf /etc/supervisor/conf.d/supervisord.conf
|
2020-02-24 19:31:37 +01:00
|
|
|
COPY files/entrypoint_fpm.sh /
|
2020-02-20 02:21:49 +01:00
|
|
|
COPY files/entrypoint_nginx.sh /
|
2019-11-25 22:58:18 +01:00
|
|
|
COPY files/entrypoint_cron.sh /
|
|
|
|
COPY files/entrypoint_workers.sh /
|
|
|
|
COPY files/entrypoint.sh /
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
|
|
|
|
|
|
# Change Workdirectory
|
2019-11-26 01:23:59 +01:00
|
|
|
WORKDIR /var/www/MISP
|