93 lines
2.5 KiB
Plaintext
93 lines
2.5 KiB
Plaintext
%%HEAD%%
|
|
|
|
# entrypoint.sh dependencies
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
bash \
|
|
busybox-static \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install required PHP extensions
|
|
RUN set -ex; \
|
|
\
|
|
savedAptMark="$(apt-mark showmanual)"; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
libicu-dev \
|
|
zlib1g-dev \
|
|
libzip-dev \
|
|
libpng-dev \
|
|
libxml2-dev \
|
|
libfreetype6-dev \
|
|
libjpeg62-turbo-dev \
|
|
libgmp-dev \
|
|
libsodium-dev \
|
|
libmemcached-dev \
|
|
; \
|
|
\
|
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
|
if [ ! -e /usr/include/gmp.h ]; then ln -s /usr/include/$debMultiarch/gmp.h /usr/include/gmp.h; fi;\
|
|
docker-php-ext-configure intl; \
|
|
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-png-dir=/usr/include/; \
|
|
docker-php-ext-configure gmp --with-gmp="/usr/include/$debMultiarch"; \
|
|
docker-php-ext-install -j$(nproc) \
|
|
intl \
|
|
zip \
|
|
json \
|
|
iconv \
|
|
bcmath \
|
|
gd \
|
|
gmp \
|
|
pdo_mysql \
|
|
mysqli \
|
|
soap \
|
|
sodium \
|
|
mbstring \
|
|
opcache \
|
|
; \
|
|
\
|
|
# pecl will claim success even if one install fails, so we need to perform each install separately
|
|
pecl install APCu-%%APCU_VERSION%%; \
|
|
pecl install memcached-%%MEMCACHED_VERSION%%; \
|
|
pecl install redis-%%REDIS_VERSION%%; \
|
|
\
|
|
docker-php-ext-enable \
|
|
apcu \
|
|
memcached \
|
|
redis \
|
|
; \
|
|
\
|
|
# 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/*
|
|
|
|
%%EXTRA_INSTALL%%
|
|
|
|
RUN set -ex; \
|
|
fetchDeps=" \
|
|
gnupg \
|
|
"; \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends $fetchDeps; \
|
|
\
|
|
%%INSTALL%% \
|
|
\
|
|
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $fetchDeps; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
%%FOOT%%
|