chore: update to 1.5.2
This commit is contained in:
parent
24cec8cab4
commit
37eec5dd09
@ -28,3 +28,11 @@ source: droundcubemail-docker/fpm-alpine
|
|||||||
date: 29 June 2021
|
date: 29 June 2021
|
||||||
|
|
||||||
source: droundcubemail-docker/fpm-alpine
|
source: droundcubemail-docker/fpm-alpine
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## roundcubemail-docker 1.5.2 on php 7.4
|
||||||
|
|
||||||
|
date: 13 January 2022
|
||||||
|
|
||||||
|
source: droundcubemail-docker/fpm-alpine
|
||||||
|
@ -7,7 +7,7 @@ spec:
|
|||||||
type: image
|
type: image
|
||||||
params:
|
params:
|
||||||
- name: url
|
- name: url
|
||||||
value: termas.librecloud.online/termas_librecloud/roundcubemail:1.4.11
|
value: termas.librecloud.online/termas_librecloud/roundcubemail:1.5.2
|
||||||
---
|
---
|
||||||
apiVersion: tekton.dev/v1alpha1
|
apiVersion: tekton.dev/v1alpha1
|
||||||
kind: PipelineResource
|
kind: PipelineResource
|
||||||
|
@ -7,8 +7,8 @@ Source: roundcubemail-docker/fpm-alpine
|
|||||||
|
|
||||||
# Name - Version, etc
|
# Name - Version, etc
|
||||||
Name: roundcubemail
|
Name: roundcubemail
|
||||||
Version: 1.4.11
|
Version: 1.5.2
|
||||||
|
|
||||||
# To get latest
|
# To get latest
|
||||||
IMAGE_NAME: roundcube/roundcubemail
|
IMAGE_NAME: roundcube/roundcubemail
|
||||||
IMAGE_MATCH: 1.4
|
IMAGE_MATCH: 1.5
|
||||||
|
@ -8,13 +8,16 @@ RUN set -ex; \
|
|||||||
bash \
|
bash \
|
||||||
coreutils \
|
coreutils \
|
||||||
rsync \
|
rsync \
|
||||||
tzdata
|
tzdata \
|
||||||
|
aspell \
|
||||||
|
aspell-en
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
apk add --no-cache --virtual .build-deps \
|
apk add --no-cache --virtual .build-deps \
|
||||||
$PHPIZE_DEPS \
|
$PHPIZE_DEPS \
|
||||||
icu-dev \
|
icu-dev \
|
||||||
|
freetype-dev \
|
||||||
imagemagick-dev \
|
imagemagick-dev \
|
||||||
libjpeg-turbo-dev \
|
libjpeg-turbo-dev \
|
||||||
libpng-dev \
|
libpng-dev \
|
||||||
@ -23,9 +26,10 @@ RUN set -ex; \
|
|||||||
openldap-dev \
|
openldap-dev \
|
||||||
postgresql-dev \
|
postgresql-dev \
|
||||||
sqlite-dev \
|
sqlite-dev \
|
||||||
|
aspell-dev \
|
||||||
; \
|
; \
|
||||||
\
|
\
|
||||||
docker-php-ext-configure gd; \
|
docker-php-ext-configure gd --with-jpeg --with-freetype; \
|
||||||
docker-php-ext-configure ldap; \
|
docker-php-ext-configure ldap; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install \
|
||||||
exif \
|
exif \
|
||||||
@ -36,9 +40,10 @@ RUN set -ex; \
|
|||||||
pdo_pgsql \
|
pdo_pgsql \
|
||||||
pdo_sqlite \
|
pdo_sqlite \
|
||||||
zip \
|
zip \
|
||||||
|
pspell \
|
||||||
; \
|
; \
|
||||||
pecl install imagick; \
|
pecl install imagick redis; \
|
||||||
docker-php-ext-enable imagick; \
|
docker-php-ext-enable imagick opcache redis; \
|
||||||
\
|
\
|
||||||
runDeps="$( \
|
runDeps="$( \
|
||||||
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
|
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
|
||||||
@ -49,11 +54,7 @@ RUN set -ex; \
|
|||||||
apk add --virtual .roundcubemail-phpext-rundeps imagemagick $runDeps; \
|
apk add --virtual .roundcubemail-phpext-rundeps imagemagick $runDeps; \
|
||||||
apk del .build-deps
|
apk del .build-deps
|
||||||
|
|
||||||
# add composer.phar
|
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||||
ADD https://getcomposer.org/installer /tmp/composer-installer.php
|
|
||||||
|
|
||||||
RUN php /tmp/composer-installer.php --install-dir=/usr/local/bin/; \
|
|
||||||
rm /tmp/composer-installer.php
|
|
||||||
|
|
||||||
|
|
||||||
# expose these volumes
|
# expose these volumes
|
||||||
@ -63,7 +64,10 @@ VOLUME /var/www/html
|
|||||||
VOLUME /tmp/roundcube-temp
|
VOLUME /tmp/roundcube-temp
|
||||||
|
|
||||||
# Define Roundcubemail version
|
# Define Roundcubemail version
|
||||||
ENV ROUNDCUBEMAIL_VERSION 1.4.11
|
ENV ROUNDCUBEMAIL_VERSION 1.5.2
|
||||||
|
|
||||||
|
# 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
|
# Download package and extract to web volume
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@ -76,7 +80,11 @@ RUN set -ex; \
|
|||||||
export GNUPGHOME="$(mktemp -d)"; \
|
export GNUPGHOME="$(mktemp -d)"; \
|
||||||
# workaround for "Cannot assign requested address", see e.g. https://github.com/inversepath/usbarmory-debian-base_image/issues/9
|
# 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"; \
|
echo "disable-ipv6" > "$GNUPGHOME/dirmngr.conf"; \
|
||||||
curl -fSL https://roundcube.net/download/pubkey.asc | gpg --batch --import -; \
|
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; \
|
gpg --batch --verify roundcubemail.tar.gz.asc roundcubemail.tar.gz; \
|
||||||
gpgconf --kill all; \
|
gpgconf --kill all; \
|
||||||
mkdir /usr/src/roundcubemail; \
|
mkdir /usr/src/roundcubemail; \
|
||||||
|
@ -18,7 +18,7 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
|||||||
INSTALLDIR=`pwd`
|
INSTALLDIR=`pwd`
|
||||||
echo >&2 "roundcubemail found in $INSTALLDIR - installing update..."
|
echo >&2 "roundcubemail found in $INSTALLDIR - installing update..."
|
||||||
(cd /usr/src/roundcubemail && bin/installto.sh -y $INSTALLDIR)
|
(cd /usr/src/roundcubemail && bin/installto.sh -y $INSTALLDIR)
|
||||||
composer.phar update --no-dev
|
composer update --no-dev
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f /run/secrets/roundcube_db_user ]; then
|
if [ -f /run/secrets/roundcube_db_user ]; then
|
||||||
@ -68,7 +68,7 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
|||||||
: "${ROUNDCUBEMAIL_SMTP_SERVER:=localhost}"
|
: "${ROUNDCUBEMAIL_SMTP_SERVER:=localhost}"
|
||||||
: "${ROUNDCUBEMAIL_SMTP_PORT:=587}"
|
: "${ROUNDCUBEMAIL_SMTP_PORT:=587}"
|
||||||
: "${ROUNDCUBEMAIL_PLUGINS:=archive,zipdownload}"
|
: "${ROUNDCUBEMAIL_PLUGINS:=archive,zipdownload}"
|
||||||
: "${ROUNDCUBEMAIL_SKIN:=larry}"
|
: "${ROUNDCUBEMAIL_SKIN:=elastic}"
|
||||||
: "${ROUNDCUBEMAIL_TEMP_DIR:=/tmp/roundcube-temp}"
|
: "${ROUNDCUBEMAIL_TEMP_DIR:=/tmp/roundcube-temp}"
|
||||||
|
|
||||||
if [ ! -e config/config.inc.php ]; then
|
if [ ! -e config/config.inc.php ]; then
|
||||||
@ -81,6 +81,8 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
|||||||
\$config['log_driver'] = 'stdout';
|
\$config['log_driver'] = 'stdout';
|
||||||
\$config['zipdownload_selection'] = true;
|
\$config['zipdownload_selection'] = true;
|
||||||
\$config['des_key'] = '${GENERATED_DES_KEY}';
|
\$config['des_key'] = '${GENERATED_DES_KEY}';
|
||||||
|
\$config['enable_spellcheck'] = true;
|
||||||
|
\$config['spellcheck_engine'] = 'pspell';
|
||||||
include(__DIR__ . '/config.docker.inc.php');
|
include(__DIR__ . '/config.docker.inc.php');
|
||||||
" > config/config.inc.php
|
" > config/config.inc.php
|
||||||
|
|
||||||
@ -108,6 +110,11 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
|||||||
echo "\$config['des_key'] = getenv('ROUNDCUBEMAIL_DES_KEY');" >> config/config.docker.inc.php
|
echo "\$config['des_key'] = getenv('ROUNDCUBEMAIL_DES_KEY');" >> config/config.docker.inc.php
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "${ROUNDCUBEMAIL_SPELLCHECK_URI}"]; then
|
||||||
|
echo "\$config['spellcheck_engine'] = 'googie';" >> config/config.docker.inc.php
|
||||||
|
echo "\$config['spellcheck_uri'] = '${ROUNDCUBEMAIL_SPELLCHECK_URI}';" >> config/config.docker.inc.php
|
||||||
|
fi
|
||||||
|
|
||||||
# include custom config files
|
# include custom config files
|
||||||
for fn in `ls /var/roundcube/config/*.php 2>/dev/null || true`; do
|
for fn in `ls /var/roundcube/config/*.php 2>/dev/null || true`; do
|
||||||
echo "include('$fn');" >> config/config.docker.inc.php
|
echo "include('$fn');" >> config/config.docker.inc.php
|
||||||
@ -131,6 +138,13 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
|||||||
echo "${ROUNDCUBEMAIL_LOCALE}" > /etc/locale.gen
|
echo "${ROUNDCUBEMAIL_LOCALE}" > /etc/locale.gen
|
||||||
/usr/sbin/locale-gen
|
/usr/sbin/locale-gen
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "${ROUNDCUBEMAIL_ASPELL_DICTS}" ]; then
|
||||||
|
ASPELL_PACKAGES=`echo -n "aspell-${ROUNDCUBEMAIL_ASPELL_DICTS}" | sed -E "s/[, ]+/ aspell-/g"`
|
||||||
|
which apt-get && apt-get install -y $ASPELL_PACKAGES
|
||||||
|
which apk && apk add --no-cache $ASPELL_PACKAGES
|
||||||
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user