Update to RC 1.4.8 and PHP 7.4

This commit is contained in:
Torben Nehmer 2020-08-18 21:14:51 +02:00
parent ed0d1e312e
commit 158ee000d5
3 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM php:7.1-apache
FROM php:7.4-apache
LABEL maintainer="Torben Nehmer <torben@nehmer.net>"
RUN set -ex; \
@ -20,7 +20,7 @@ RUN set -ex; \
; \
\
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-png-dir=/usr --with-jpeg-dir=/usr; \
docker-php-ext-configure gd ; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-install \
exif \
@ -57,7 +57,7 @@ RUN set -ex; \
VOLUME /var/roundcube/config
# Define Roundcubemail version
ENV ROUNDCUBEMAIL_VERSION 1.4.7
ENV ROUNDCUBEMAIL_VERSION 1.4.8
# Set the entry point
ENTRYPOINT ["/docker-entrypoint.sh"]

View File

@ -2,4 +2,5 @@
set -ex
docker pull php:7.4-apache
docker build --force-rm --no-cache -t nathan/roundcube -f Dockerfile build

View File

@ -3,7 +3,7 @@
set -ex
# Configuration options you usually edit go here
ROUNDCUBEMAIL_VERSION=1.4.7
ROUNDCUBEMAIL_VERSION=1.4.8
CHECK_GPG=false
CLEAN_INTERMEDIATES=false
CONTAINER_VOLUME_CONFIG=/var/roundcube/config