docker/Dockerfile-alpine.template

87 lines
2.1 KiB
Plaintext
Raw Normal View History

FROM php:%%PHP_VERSION%%-%%VARIANT%%
2020-08-25 08:26:29 +00:00
LABEL maintainer="Harald Leithner <harald.leithner@community.joomla.org> (@HLeithner)"
# Disable remote database security requirements.
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1
# entrypoint.sh dependencies
RUN apk add --no-cache \
bash
# Install PHP extensions
RUN set -ex; \
\
apk add --no-cache --virtual .build-deps \
2018-06-03 17:37:46 +00:00
$PHPIZE_DEPS \
autoconf \
bzip2-dev \
2020-08-09 14:50:54 +00:00
gmp-dev \
libjpeg-turbo-dev \
2020-08-09 14:50:54 +00:00
libmcrypt-dev \
libmemcached-dev \
libpng-dev \
2018-12-10 23:10:20 +00:00
libzip-dev \
openldap-dev \
pcre-dev \
postgresql-dev \
; \
\
2019-12-03 11:04:16 +00:00
docker-php-ext-configure gd --with-jpeg; \
docker-php-ext-configure ldap; \
docker-php-ext-install -j "$(nproc)" \
bz2 \
gd \
2020-08-09 14:50:54 +00:00
gmp \
ldap \
mysqli \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-%%APCU_VERSION%%; \
2020-08-09 14:50:54 +00:00
pecl install mcrypt-%%MCRYPT_VERSION%%; \
pecl install memcached-%%MEMCACHED_VERSION%%; \
pecl install redis-%%REDIS_VERSION%%; \
\
docker-php-ext-enable \
apcu \
2020-08-09 14:50:54 +00:00
mcrypt \
memcached \
redis \
; \
rm -r /tmp/pear; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
| tr ',' '\n' \
| sort -u \
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
)"; \
apk add --virtual .joomla-phpext-rundeps $runDeps; \
apk del .build-deps
VOLUME /var/www/html
# Define Joomla version and expected SHA1 signature
ENV JOOMLA_VERSION %%VERSION%%
2019-01-11 14:33:53 +00:00
ENV JOOMLA_SHA512 %%SHA512%%
# Download package and extract to web volume
2019-08-05 08:20:44 +00:00
RUN set -ex; \
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_SHA512 *joomla.tar.bz2" | sha512sum -c -; \
mkdir /usr/src/joomla; \
tar -xf joomla.tar.bz2 -C /usr/src/joomla; \
rm joomla.tar.bz2; \
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 ["%%CMD%%"]