mirror of
https://github.com/friendica/docker
synced 2024-11-13 13:03:41 +01:00
Philipp Holzer
fec33c98be
- changed sendmail to ssmtp support - deleted smtp-examples (not necessary anymore) - added vendor libraries in stable-docker images ("full" package) - changed stack.yml to new SMTP behavior
103 lines
2.6 KiB
Plaintext
103 lines
2.6 KiB
Plaintext
FROM php:%%PHP_VERSION%%-%%VARIANT%%
|
|
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 \
|
|
# For mail() support
|
|
ssmtp \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*;
|
|
|
|
# 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 \
|
|
libpng-dev \
|
|
libjpeg62-turbo-dev \
|
|
libtool \
|
|
libmcrypt4 \
|
|
libmcrypt-dev \
|
|
imagemagick \
|
|
libmagick++-dev \
|
|
libgraphicsmagick1-dev \
|
|
libfreetype6 \
|
|
libfreetype6-dev \
|
|
librsvg2-2 \
|
|
libcurl4-openssl-dev \
|
|
curl \
|
|
; \
|
|
\
|
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
|
pecl install imagick-%%IMAGICK_VERSION%%; \
|
|
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 \
|
|
; \
|
|
# 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
|
|
%%VARIANT_EXTRAS%%
|
|
|
|
RUN {\
|
|
echo sendmail_path = "/usr/sbin/sendmail -t -i" ;\
|
|
} > /usr/local/etc/php/conf.d/sendmail.ini;
|
|
|
|
ENV AUTOINSTALL false
|
|
ENV VALIDATION true
|
|
ENV SITENAME "Friendica Social Network"
|
|
|
|
ENV FRIENDICA_VERSION %%VERSION%%
|
|
ENV FRIENDICA_ADDONS %%VERSION%%
|
|
|
|
COPY bin/* /usr/local/bin/
|
|
COPY config/* /usr/src/config/
|
|
COPY *.sh /
|
|
RUN chmod +x /*.sh
|
|
RUN chmod +x /usr/local/bin/*
|
|
|
|
%%INSTALL_EXTRAS%%
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["%%CMD%%"]
|