mirror of
https://github.com/friendica/docker
synced 2024-11-10 18:11:40 +01:00
989de98414
- Adding APCu - Bump PHP to 7.3 - Remove deprecated mcrypt - Dynamic version checking for depending PECL libraries - Add production default 512M for memory_limit (see https://github.com/friendica/docker/issues/56) - Re-Add FRIENDICA_PHP_PATH because of Bugfix in upstream
115 lines
2.7 KiB
Plaintext
115 lines
2.7 KiB
Plaintext
FROM php:%%PHP_VERSION%%-%%VARIANT%%
|
|
LABEL maintainer="Philipp Holzer <admin@philipp.info>"
|
|
|
|
# entrypoint.sh and cron.sh dependencies
|
|
RUN set -ex; \
|
|
apk add --no-cache \
|
|
rsync \
|
|
git \
|
|
# For mail() support
|
|
ssmtp;
|
|
|
|
# install the PHP extensions we need
|
|
# see https://friendi.ca/resources/requirements/
|
|
RUN set -ex; \
|
|
\
|
|
apk add -U --no-cache --virtual .build-deps \
|
|
libxml2-dev \
|
|
mysql-client \
|
|
bash \
|
|
autoconf \
|
|
g++ \
|
|
make \
|
|
openssl \
|
|
openssl-dev \
|
|
libpng \
|
|
libpng-dev \
|
|
libjpeg-turbo-dev \
|
|
imagemagick-dev \
|
|
imagemagick \
|
|
libtool \
|
|
libmemcached-dev \
|
|
cyrus-sasl-dev \
|
|
freetype \
|
|
libpng \
|
|
libjpeg-turbo-dev \
|
|
freetype-dev \
|
|
librsvg \
|
|
libcurl \
|
|
curl \
|
|
curl-dev \
|
|
rsync \
|
|
bzip2 \
|
|
pcre-dev \
|
|
libzip-dev \
|
|
; \
|
|
\
|
|
docker-php-ext-configure gd \
|
|
--with-gd \
|
|
--with-freetype-dir=/usr/include/ \
|
|
--with-png-dir=/usr/include/ \
|
|
--with-jpeg-dir=/usr/include/ \
|
|
; \
|
|
\
|
|
docker-php-ext-install -j 4 \
|
|
curl \
|
|
pdo \
|
|
pdo_mysql \
|
|
xml \
|
|
gd \
|
|
zip \
|
|
opcache \
|
|
mbstring \
|
|
posix \
|
|
ctype \
|
|
json \
|
|
iconv \
|
|
; \
|
|
\
|
|
# 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%%; \
|
|
pecl install imagick-%%IMAGICK_VERSION%%; \
|
|
\
|
|
docker-php-ext-enable \
|
|
apcu \
|
|
memcached \
|
|
redis \
|
|
imagick \
|
|
; \
|
|
\
|
|
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 .friendica-phpext-rundeps $runDeps; \
|
|
apk del .build-deps;
|
|
|
|
RUN {\
|
|
echo sendmail_path = "/usr/sbin/sendmail -t -i" ;\
|
|
} > /usr/local/etc/php/conf.d/sendmail.ini; \
|
|
\
|
|
echo 'apc.enable_cli=1' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini; \
|
|
\
|
|
echo 'memory_limit=512M' > /usr/local/etc/php/conf.d/memory-limit.ini; \
|
|
\
|
|
mkdir /var/www/data; \
|
|
chown -R www-data:root /var/www; \
|
|
chmod -R g=u /var/www
|
|
|
|
VOLUME /var/www/html
|
|
%%VARIANT_EXTRAS%%
|
|
|
|
COPY *.sh upgrade.exclude /
|
|
RUN chmod +x /*.sh
|
|
|
|
ENV FRIENDICA_VERSION %%VERSION%%
|
|
ENV FRIENDICA_ADDONS %%VERSION%%
|
|
%%INSTALL_EXTRAS%%
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["%%CMD%%"]
|