updates for newest release

This commit is contained in:
Jared Scott
2017-10-21 08:25:45 -06:00
parent 7595469561
commit 8bac012e59

View File

@@ -9,16 +9,15 @@ RUN apt-get update && apt-get install -y \
curl \
unzip \
apache2 \
php5 \
php5-mysql \
php5-curl \
php5-gd \
php \
php-mysql \
php-curl \
php-gd \
php-fdomdocument \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN /usr/sbin/a2dismod 'mpm_*' \
&& /usr/sbin/a2enmod mpm_prefork \
RUN /usr/sbin/a2enmod mpm_prefork \
&& /usr/sbin/a2enmod ssl \
&& /usr/sbin/a2enmod rewrite \
&& /usr/sbin/a2ensite default-ssl \