2018-05-24 21:20:25 +02:00
|
|
|
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
2018-05-18 21:20:22 +02:00
|
|
|
FROM php:7.1-apache
|
|
|
|
LABEL maintainer="Philipp Holzer <admin@philipp.info>"
|
|
|
|
|
|
|
|
# entrypoint.sh and cron.sh dependencies
|
|
|
|
RUN set -ex; \
|
|
|
|
\
|
|
|
|
apt-get update; \
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
rsync \
|
|
|
|
bzip2 \
|
|
|
|
git \
|
2018-05-20 15:44:03 +02:00
|
|
|
# For mail() support
|
2018-06-06 20:37:02 +02:00
|
|
|
ssmtp \
|
2018-05-18 21:20:22 +02:00
|
|
|
; \
|
2018-05-21 21:32:26 +02:00
|
|
|
rm -rf /var/lib/apt/lists/*;
|
2018-05-18 21:20:22 +02:00
|
|
|
|
|
|
|
# install the PHP extensions we need
|
|
|
|
# see https://friendi.ca/resources/requirements/
|
|
|
|
RUN set -ex; \
|
|
|
|
\
|
|
|
|
savedAptMark="$(apt-mark showmanual)"; \
|
|
|
|
\
|
|
|
|
apt-get update; \
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
libxml2-dev \
|
|
|
|
mysql-client \
|
|
|
|
bash \
|
|
|
|
autoconf \
|
|
|
|
g++ \
|
|
|
|
make \
|
|
|
|
openssl \
|
|
|
|
libssl-dev \
|
2018-05-24 21:20:25 +02:00
|
|
|
libpng-dev \
|
2018-05-18 21:20:22 +02:00
|
|
|
libjpeg62-turbo-dev \
|
|
|
|
libtool \
|
|
|
|
libmcrypt4 \
|
|
|
|
libmcrypt-dev \
|
|
|
|
imagemagick \
|
|
|
|
libmagick++-dev \
|
2018-06-22 21:12:06 +02:00
|
|
|
libmemcached-dev \
|
2018-05-18 21:20:22 +02:00
|
|
|
libgraphicsmagick1-dev \
|
|
|
|
libfreetype6 \
|
|
|
|
libfreetype6-dev \
|
|
|
|
librsvg2-2 \
|
|
|
|
libcurl4-openssl-dev \
|
|
|
|
curl \
|
|
|
|
; \
|
|
|
|
\
|
|
|
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
2018-05-24 21:20:25 +02:00
|
|
|
pecl install imagick-3.4.3; \
|
2018-05-18 21:20:22 +02:00
|
|
|
docker-php-ext-enable imagick; \
|
|
|
|
pecl clear-cache \
|
|
|
|
; \
|
|
|
|
docker-php-ext-configure gd \
|
|
|
|
--with-gd \
|
|
|
|
--enable-gd-native-ttf \
|
|
|
|
--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 mcrypt \
|
|
|
|
; \
|
2018-06-22 21:12:06 +02:00
|
|
|
# pecl will claim success even if one install fails, so we need to perform each install separately
|
|
|
|
pecl install memcached-3.0.4; \
|
|
|
|
pecl install redis-3.1.6; \
|
|
|
|
\
|
|
|
|
docker-php-ext-enable \
|
|
|
|
memcached \
|
|
|
|
redis \
|
|
|
|
; \
|
|
|
|
\
|
2018-05-18 21:20:22 +02: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/*
|
|
|
|
|
|
|
|
RUN chown -R www-data:root /var/www; \
|
|
|
|
chmod -R g=u /var/www
|
|
|
|
|
|
|
|
VOLUME /var/www/html
|
|
|
|
|
|
|
|
RUN a2enmod rewrite remoteip ;\
|
|
|
|
{\
|
2018-05-24 21:20:25 +02:00
|
|
|
echo RemoteIPHeader X-Real-IP ;\
|
|
|
|
echo RemoteIPTrustedProxy 10.0.0.0/8 ;\
|
|
|
|
echo RemoteIPTrustedProxy 172.16.0.0/12 ;\
|
|
|
|
echo RemoteIPTrustedProxy 192.168.0.0/16 ;\
|
2018-05-18 21:20:22 +02:00
|
|
|
} > /etc/apache2/conf-available/remoteip.conf;\
|
|
|
|
a2enconf remoteip
|
|
|
|
|
2018-05-20 15:44:03 +02:00
|
|
|
RUN {\
|
|
|
|
echo sendmail_path = "/usr/sbin/sendmail -t -i" ;\
|
|
|
|
} > /usr/local/etc/php/conf.d/sendmail.ini;
|
|
|
|
|
2018-05-24 21:20:25 +02:00
|
|
|
ENV AUTOINSTALL false
|
2018-06-06 20:37:02 +02:00
|
|
|
ENV VALIDATION true
|
|
|
|
ENV SITENAME "Friendica Social Network"
|
2018-05-24 21:20:25 +02:00
|
|
|
|
2018-06-01 19:03:37 +02:00
|
|
|
ENV FRIENDICA_VERSION 2018.05
|
|
|
|
ENV FRIENDICA_ADDONS 2018.05
|
2018-05-24 21:20:25 +02:00
|
|
|
|
2018-06-06 20:37:02 +02:00
|
|
|
COPY bin/* /usr/local/bin/
|
|
|
|
COPY config/* /usr/src/config/
|
|
|
|
COPY *.sh /
|
|
|
|
RUN chmod +x /*.sh
|
|
|
|
RUN chmod +x /usr/local/bin/*
|
|
|
|
|
2018-06-01 19:03:37 +02:00
|
|
|
RUN set -ex; \
|
|
|
|
curl -fsSL -o friendica.tar.gz \
|
|
|
|
"https://github.com/friendica/friendica/archive/${FRIENDICA_VERSION}.tar.gz"; \
|
|
|
|
tar -xzf friendica.tar.gz -C /usr/src/; \
|
|
|
|
rm friendica.tar.gz; \
|
|
|
|
mv -f /usr/src/friendica-${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 /usr/src/friendica/addon; \
|
|
|
|
tar -xzf friendica_addons.tar.gz -C /usr/src/friendica/addon --strip-components=1; \
|
2018-06-06 20:37:02 +02:00
|
|
|
rm friendica_addons.tar.gz; \
|
|
|
|
friendica composer install;
|
2018-05-18 21:20:22 +02:00
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
2018-05-24 21:20:25 +02:00
|
|
|
CMD ["apache2-foreground"]
|