32
3
mirror of https://github.com/joomla-docker/docker-joomla.git synced 2024-06-01 05:40:48 +00:00
docker/php7.3/fpm/Dockerfile

82 lines
2.3 KiB
Docker
Raw Normal View History

2018-12-10 17:59:42 +00:00
FROM php:7.3-fpm
LABEL maintainer="Michael Babker <michael.babker@joomla.org> (@mbabker)"
2016-03-22 19:36:36 +00:00
# Disable remote database security requirements.
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1
2016-03-22 19:36:36 +00:00
# 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 \
libbz2-dev \
2018-01-30 17:41:09 +00:00
libjpeg-dev \
2018-02-09 02:52:57 +00:00
libldap2-dev \
2018-02-09 02:27:35 +00:00
libmemcached-dev \
libpng-dev \
libpq-dev \
2018-12-10 23:10:20 +00:00
libzip-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"; \
docker-php-ext-install -j "$(nproc)" \
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
mysqli \
pdo_mysql \
pdo_pgsql \
pgsql \
2018-01-30 17:41:09 +00:00
zip \
; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
2019-02-12 20:05:02 +00:00
pecl install APCu-5.1.17; \
2019-01-05 16:26:40 +00:00
pecl install memcached-3.1.3; \
2019-03-13 23:03:28 +00:00
pecl install redis-4.3.0; \
2018-02-09 02:27:35 +00:00
\
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
2019-01-11 14:33:53 +00:00
# Define Joomla version and expected SHA512 signature
2019-07-10 17:36:12 +00:00
ENV JOOMLA_VERSION 3.9.10
ENV JOOMLA_SHA512 335b0f15e267c0430bb5eed7ac84bef299602c48f58ab8f4370434c684b956ea4515c5e742b4eb59ffdc9d61fb14618625fd85e81157ee7185097c925bb08708
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 \
2019-01-11 14:33:53 +00:00
&& echo "$JOOMLA_SHA512 *joomla.tar.bz2" | sha512sum -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 ["php-fpm"]