# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template FROM php:7.3-fpm-alpine # entrypoint.sh and cron.sh dependencies RUN set -ex; \ apk add --no-cache \ rsync \ git \ # For mail() support ssmtp \ shadow \ tini; # install the PHP extensions we need # see https://friendi.ca/resources/requirements/ RUN set -ex; \ \ apk add --no-cache --virtual .build-deps \ mysql-client \ bash \ $PHPIZE_DEPS \ libpng-dev \ libjpeg-turbo-dev \ imagemagick-dev \ libtool \ libmemcached-dev \ cyrus-sasl-dev \ libjpeg-turbo-dev \ freetype-dev \ librsvg \ pcre-dev \ libzip-dev \ icu-dev \ openldap-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 "$(nproc)" \ pdo_mysql \ gd \ zip \ opcache \ pcntl \ ldap \ ; \ \ # pecl will claim success even if one install fails, so we need to perform each install separately pecl install APCu-5.1.18; \ pecl install memcached-3.1.5; \ pecl install redis-5.2.2; \ pecl install imagick-3.4.4; \ \ 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 --no-network --virtual .friendica-phpext-rundeps $runDeps; \ apk del --no-network .build-deps; # set recommended PHP.ini settings RUN set -ex; \ { \ echo 'opcache.enable=1' ; \ echo 'opcache.interned_strings_buffer=8'; \ echo 'opcache.max_accelerated_files=10000'; \ echo 'opcache.memory_consumption=128'; \ echo 'opcache.save_comments=1'; \ echo 'opcache.revalidte_freq=1'; \ } > /usr/local/etc/php/conf.d/opcache-recommended.ini; \ \ { \ 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 ENV FRIENDICA_VERSION 2020.03 ENV FRIENDICA_VERSION_YEAR 2020 ENV FRIENDICA_VERSION_MONTH 03 ENV FRIENDICA_ADDONS 2020.03 RUN set -ex; \ curl -fsSL -o friendica.tar.gz \ "https://friendi.ca/wp-content/uploads/${FRIENDICA_VERSION_YEAR}/${FRIENDICA_VERSION_MONTH}/friendica-full-${FRIENDICA_VERSION}.tar.gz"; \ tar -xzf friendica.tar.gz -C /usr/src/; \ rm friendica.tar.gz; \ mv -f /usr/src/friendica-full-${FRIENDICA_VERSION}/ /usr/src/friendica; \ chmod 777 /usr/src/friendica/view/smarty3; \ curl -fsSL -o friendica_addons.tar.gz \ "https://github.com/friendica/friendica-addons/archive/${FRIENDICA_ADDONS}.tar.gz"; \ mkdir -p /usr/src/friendica/proxy; \ mkdir -p /usr/src/friendica/addon; \ tar -xzf friendica_addons.tar.gz -C /usr/src/friendica/addon --strip-components=1; \ rm friendica_addons.tar.gz; COPY *.sh upgrade.exclude / COPY config/* /usr/src/friendica/config/ ENTRYPOINT ["/entrypoint.sh"] CMD ["php-fpm"]