FROM php:8.1-apache LABEL maintainer="Thomas Bruederli " RUN set -ex; \ apt-get update; \ \ savedAptMark="$(apt-mark showmanual)"; \ \ apt-get install -y --no-install-recommends \ libfreetype6-dev \ libicu-dev \ libjpeg62-turbo-dev \ libldap2-dev \ libmagickwand-dev \ libpng-dev \ libpq-dev \ libsqlite3-dev \ libzip-dev \ libpspell-dev \ libonig-dev \ libldap-common \ ; \ \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ docker-php-ext-configure gd --with-jpeg --with-freetype; \ docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \ docker-php-ext-install \ exif \ gd \ intl \ ldap \ pdo_mysql \ pdo_pgsql \ pdo_sqlite \ zip \ pspell \ ; \ pecl install imagick redis; \ docker-php-ext-enable imagick opcache 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/* # installto.sh dependencies RUN set -ex; \ \ apt-get update; \ apt-get install -y --no-install-recommends \ aspell \ aspell-en \ rsync \ unzip \ ; \ rm -rf /var/lib/apt/lists/* COPY --from=composer:2 /usr/bin/composer /usr/bin/composer RUN a2enmod rewrite # Define Roundcubemail version ENV ROUNDCUBEMAIL_VERSION 1.6.1 # Define the GPG key used for the bundle verification process ENV ROUNDCUBEMAIL_KEYID "F3E4 C04B B3DB 5D42 15C4 5F7F 5AB2 BAA1 41C4 F7D5" # Download package and extract to web volume RUN set -ex; \ fetchDeps="gnupg dirmngr locales libc-l10n"; \ apt-get -qq update; \ apt-get install -y --no-install-recommends $fetchDeps; \ curl -o roundcubemail.tar.gz -fSL https://github.com/roundcube/roundcubemail/releases/download/${ROUNDCUBEMAIL_VERSION}/roundcubemail-${ROUNDCUBEMAIL_VERSION}-complete.tar.gz; \ curl -o roundcubemail.tar.gz.asc -fSL https://github.com/roundcube/roundcubemail/releases/download/${ROUNDCUBEMAIL_VERSION}/roundcubemail-${ROUNDCUBEMAIL_VERSION}-complete.tar.gz.asc; \ export GNUPGHOME="$(mktemp -d)"; \ # workaround for "Cannot assign requested address", see e.g. https://github.com/inversepath/usbarmory-debian-base_image/issues/9 echo "disable-ipv6" > "$GNUPGHOME/dirmngr.conf"; \ curl -fSL https://roundcube.net/download/pubkey.asc -o /tmp/pubkey.asc; \ LC_ALL=C.UTF-8 gpg -n --show-keys --with-fingerprint --keyid-format=long /tmp/pubkey.asc | if [ $(grep -c -o 'Key fingerprint') != 1 ]; then echo 'The key file should contain only one GPG key'; exit 1; fi; \ LC_ALL=C.UTF-8 gpg -n --show-keys --with-fingerprint --keyid-format=long /tmp/pubkey.asc | if [ $(grep -c -o "${ROUNDCUBEMAIL_KEYID}") != 1 ]; then echo 'The key ID should be the roundcube one'; exit 1; fi; \ gpg --batch --import /tmp/pubkey.asc; \ rm /tmp/pubkey.asc; \ gpg --batch --verify roundcubemail.tar.gz.asc roundcubemail.tar.gz; \ gpgconf --kill all; \ mkdir /usr/src/roundcubemail; \ tar -xf roundcubemail.tar.gz -C /usr/src/roundcubemail --strip-components=1 --no-same-owner; \ rm -r "$GNUPGHOME" roundcubemail.tar.gz.asc roundcubemail.tar.gz; \ rm -rf /usr/src/roundcubemail/installer; \ chown -R www-data:www-data /usr/src/roundcubemail/logs # include the wait-for-it.sh script RUN curl -fL https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh > /wait-for-it.sh && chmod +x /wait-for-it.sh # use custom PHP settings COPY php.ini /usr/local/etc/php/conf.d/roundcube-defaults.ini COPY --chmod=0755 docker-entrypoint.sh / RUN mkdir -p /var/roundcube/config ENTRYPOINT ["/docker-entrypoint.sh"] CMD ["apache2-foreground"]