2018-01-01 16:26:42 +00:00
|
|
|
FROM php:7.1-apache
|
2018-01-30 16:30:06 +00:00
|
|
|
LABEL maintainer="Michael Babker <michael.babker@joomla.org> (@mbabker)"
|
2016-03-22 19:36:36 +00:00
|
|
|
|
2017-07-27 08:56:00 +00:00
|
|
|
# Disable remote database security requirements.
|
|
|
|
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1
|
|
|
|
|
2016-03-22 19:36:36 +00:00
|
|
|
# Enable Apache Rewrite Module
|
|
|
|
RUN a2enmod rewrite
|
|
|
|
|
|
|
|
# Install PHP extensions
|
2018-01-30 17:41:09 +00:00
|
|
|
RUN set -ex; \
|
|
|
|
\
|
|
|
|
savedAptMark="$(apt-mark showmanual)"; \
|
|
|
|
\
|
|
|
|
apt-get update; \
|
|
|
|
apt-get install -y --no-install-recommends \
|
2018-02-08 23:41:04 +00:00
|
|
|
libbz2-dev \
|
2018-01-30 17:41:09 +00:00
|
|
|
libjpeg-dev \
|
2018-02-09 02:52:57 +00:00
|
|
|
libldap2-dev \
|
2018-01-30 17:41:09 +00:00
|
|
|
libmcrypt-dev \
|
2018-02-09 02:27:35 +00:00
|
|
|
libmemcached-dev \
|
2018-01-30 17:41:09 +00:00
|
|
|
libpng12-dev \
|
2018-02-08 23:41:04 +00:00
|
|
|
libpq-dev \
|
2018-01-30 17:41:09 +00:00
|
|
|
; \
|
|
|
|
\
|
|
|
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
2018-02-09 02:52:57 +00:00
|
|
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
|
|
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
2018-01-30 17:41:09 +00:00
|
|
|
docker-php-ext-install \
|
2018-02-08 23:41:04 +00:00
|
|
|
bz2 \
|
2018-01-30 17:41:09 +00:00
|
|
|
gd \
|
2018-02-09 02:52:57 +00:00
|
|
|
ldap \
|
2018-01-30 17:41:09 +00:00
|
|
|
mcrypt \
|
|
|
|
mysqli \
|
2018-02-08 23:41:04 +00:00
|
|
|
pdo \
|
|
|
|
pdo_mysql \
|
|
|
|
pdo_pgsql \
|
|
|
|
pgsql \
|
2018-01-30 17:41:09 +00:00
|
|
|
zip \
|
|
|
|
; \
|
|
|
|
\
|
2018-02-09 02:27:35 +00:00
|
|
|
pecl install \
|
2018-04-19 17:18:35 +00:00
|
|
|
APCu-5.1.11 \
|
2018-02-09 02:27:35 +00:00
|
|
|
memcached-3.0.4 \
|
|
|
|
redis-3.1.6 \
|
|
|
|
; \
|
|
|
|
\
|
|
|
|
docker-php-ext-enable \
|
|
|
|
apcu \
|
|
|
|
memcached \
|
|
|
|
redis \
|
|
|
|
; \
|
|
|
|
\
|
2018-01-30 17:41:09 +00:00
|
|
|
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
|
|
|
|
apt-mark auto '.*' > /dev/null; \
|
|
|
|
apt-mark manual $savedAptMark; \
|
|
|
|
ldd "$(php -r 'echo ini_get("extension_dir");')"/*.so \
|
|
|
|
| awk '/=>/ { print $3 }' \
|
|
|
|
| sort -u \
|
|
|
|
| xargs -r dpkg-query -S \
|
|
|
|
| cut -d: -f1 \
|
|
|
|
| sort -u \
|
|
|
|
| xargs -rt apt-mark manual; \
|
|
|
|
\
|
|
|
|
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2016-03-22 19:36:36 +00:00
|
|
|
|
|
|
|
VOLUME /var/www/html
|
|
|
|
|
|
|
|
# Define Joomla version and expected SHA1 signature
|
2018-04-18 22:58:53 +00:00
|
|
|
ENV JOOMLA_VERSION 3.8.7
|
|
|
|
ENV JOOMLA_SHA1 c917407cb9b3984b47173317a2d23cd63b74f65b
|
2016-03-22 19:36:36 +00:00
|
|
|
|
|
|
|
# Download package and extract to web volume
|
2018-02-09 00:07:04 +00:00
|
|
|
RUN curl -o joomla.tar.bz2 -SL https://github.com/joomla/joomla-cms/releases/download/${JOOMLA_VERSION}/Joomla_${JOOMLA_VERSION}-Stable-Full_Package.tar.bz2 \
|
|
|
|
&& echo "$JOOMLA_SHA1 *joomla.tar.bz2" | sha1sum -c - \
|
2016-03-22 19:36:36 +00:00
|
|
|
&& mkdir /usr/src/joomla \
|
2018-02-09 00:07:04 +00:00
|
|
|
&& tar -xf joomla.tar.bz2 -C /usr/src/joomla \
|
|
|
|
&& rm joomla.tar.bz2 \
|
2016-03-22 19:36:36 +00:00
|
|
|
&& chown -R www-data:www-data /usr/src/joomla
|
|
|
|
|
|
|
|
# Copy init scripts and custom .htaccess
|
|
|
|
COPY docker-entrypoint.sh /entrypoint.sh
|
|
|
|
COPY makedb.php /makedb.php
|
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["apache2-foreground"]
|