mirror of https://github.com/MISP/misp-docker
Re-order apt install for clairity
parent
52f6810177
commit
18a7e8919a
|
@ -60,6 +60,7 @@ ARG PHP_VER=20180731
|
||||||
|
|
||||||
# OS Packages
|
# OS Packages
|
||||||
RUN apt-get update; apt-get install -y --no-install-recommends \
|
RUN apt-get update; apt-get install -y --no-install-recommends \
|
||||||
|
# Requirements:
|
||||||
sudo \
|
sudo \
|
||||||
apache2 \
|
apache2 \
|
||||||
supervisor \
|
supervisor \
|
||||||
|
@ -67,22 +68,22 @@ ARG PHP_VER=20180731
|
||||||
cron \
|
cron \
|
||||||
openssl \
|
openssl \
|
||||||
gpg-agent gpg \
|
gpg-agent gpg \
|
||||||
|
ssdeep \
|
||||||
|
libfuzzy2 \
|
||||||
|
mariadb-client \
|
||||||
|
# Python Requirements
|
||||||
python3 \
|
python3 \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
ssdeep \
|
# PHP Requirements
|
||||||
mariadb-client \
|
|
||||||
|
|
||||||
zip unzip \
|
|
||||||
|
|
||||||
php \
|
php \
|
||||||
php-xml \
|
php-xml \
|
||||||
php-mbstring \
|
php-mbstring \
|
||||||
php-mysql \
|
php-mysql \
|
||||||
# php-dev \
|
|
||||||
php-redis \
|
php-redis \
|
||||||
php-gd \
|
php-gd \
|
||||||
libfuzzy2 \
|
# Unsure we need these
|
||||||
|
zip unzip \
|
||||||
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# MISP code
|
# MISP code
|
||||||
|
|
Loading…
Reference in New Issue