misp-docker/server/Dockerfile

149 lines
5.0 KiB
Docker
Raw Normal View History

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 \
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
RUN cp /usr/lib/x86_64-linux-gnu/libfuzzy.* /usr/lib; pecl install ssdeep
FROM debian:buster-slim as python-build
RUN apt-get update; apt-get install -y --no-install-recommends \
gcc \
git \
python3 \
python3-dev \
python3-setuptools \
python3-wheel \
libfuzzy-dev \
ca-certificates \
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
WORKDIR /tmp
RUN git clone --depth 1 https://github.com/CybOXProject/mixbox.git; \
cd mixbox; python3 setup.py bdist_wheel
# install python-maec
RUN git clone --depth 1 https://github.com/MAECProject/python-maec.git; \
cd python-maec; python3 setup.py bdist_wheel
# install python-cybox
RUN git clone --depth 1 https://github.com/CybOXProject/python-cybox.git; \
cd python-cybox; python3 setup.py bdist_wheel
# install python stix
RUN git clone --depth 1 https://github.com/STIXProject/python-stix.git; \
cd python-stix; python3 setup.py bdist_wheel
# install STIX2.0 library to support STIX 2.0 export:
RUN git clone --depth 1 https://github.com/MISP/cti-python-stix2.git; \
cd cti-python-stix2; python3 setup.py bdist_wheel
# install PyMISP
RUN git clone --depth 1 https://github.com/MISP/PyMISP.git; \
cd PyMISP; python3 setup.py bdist_wheel
# install pydeep
RUN git clone --depth 1 https://github.com/coolacid/pydeep.git; \
cd pydeep; python3 setup.py bdist_wheel
2019-11-25 22:58:18 +01:00
FROM debian:buster-slim
ENV DEBIAN_FRONTEND noninteractive
2019-11-28 15:33:55 +01:00
ARG MISP_TAG=2.4.118
2019-11-28 17:33:12 +01:00
ARG PHP_VER=20180731
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 \
sudo \
apache2 \
supervisor \
2019-11-28 17:33:12 +01:00
git \
cron \
2019-11-25 22:58:18 +01:00
openssl \
2019-11-26 18:06:19 +01:00
gpg-agent gpg \
2019-11-25 22:58:18 +01:00
python3 \
python3-setuptools \
python3-pip \
ssdeep \
2019-11-28 17:33:12 +01:00
mariadb-client \
zip unzip \
2019-11-25 22:58:18 +01:00
php \
php-xml \
php-mbstring \
php-mysql \
2019-11-28 17:33:12 +01:00
# php-dev \
2019-11-25 22:58:18 +01:00
php-redis \
php-gd \
2019-11-28 17:33:12 +01:00
libfuzzy2 \
2019-11-25 22:58:18 +01:00
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
# MISP code
# 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; \
cd /var/www/MISP/app; git submodule update --init --recursive .;
2019-11-25 22:58:18 +01:00
# Python Modules
COPY --from=python-build /tmp/PyMISP/dist/*.whl /tmp
COPY --from=python-build /tmp/cti-python-stix2/dist/*.whl /tmp
COPY --from=python-build /tmp/mixbox/dist/*.whl /tmp
COPY --from=python-build /tmp/python-cybox/dist/*.whl /tmp
COPY --from=python-build /tmp/python-maec/dist/*.whl /tmp
COPY --from=python-build /tmp/python-stix/dist/*.whl /tmp
COPY --from=python-build /tmp/pydeep/dist/*.whl /tmp
2019-11-25 22:58:18 +01:00
RUN pip3 install --no-cache-dir /tmp/*.whl plyara pyzmq redis python-magic lief
2019-11-25 22:58:18 +01:00
# CakePHP
2019-11-28 15:33:55 +01:00
# Once done, install CakeResque, first get latest composer
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
2019-11-25 22:58:18 +01:00
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
WORKDIR /var/www/MISP/app
RUN composer install \
2019-11-25 22:58:18 +01:00
# Enable CakeResque with php-redis
;phpenmod redis \
# 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
# Configure Apache
# add HTTP MISP Config
RUN rm /etc/apache2/sites-enabled/*;
COPY files/etc/apache2/sites-enabled/misp.conf /etc/apache2/sites-enabled/
COPY files/etc/apache2/sites-enabled/misp-ssl.conf /etc/apache2/sites-enabled/
COPY files/etc/apache2/ports.conf /etc/apache2/ports.conf
RUN set -eu \
;chmod 640 /etc/apache2/ports.conf \
;chown root.root /etc/apache2/ports.conf \
;chmod 640 /etc/apache2/sites-available/* \
;chown root.root /etc/apache2/sites-available/* \
# Configure Apache
;a2dismod status \
;a2enmod ssl \
;a2enmod rewrite \
;a2enmod headers
# 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
# Entrypoints
COPY files/etc/supervisor/supervisor.conf /etc/supervisor/conf.d/supervisord.conf
COPY files/entrypoint_apache.sh /
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