From: Thomas Bruederli Date: Fri, 3 Feb 2023 20:34:04 +0000 (+0100) Subject: Release version 1.6.1 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=323e25a28509608f8f59e91b489120224821f542;p=roundcube-roundcubemail-docker.git Release version 1.6.1 Fixes #204 --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bc8f8b9..1481b8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,13 +11,13 @@ jobs: include: - variant: 'apache' test-files: 'apache-postgres' - docker-tag: roundcube/roundcubemail:1.6.x-apache,roundcube/roundcubemail:1.6.0-apache,roundcube/roundcubemail:latest-apache,roundcube/roundcubemail:latest + docker-tag: roundcube/roundcubemail:1.6.x-apache,roundcube/roundcubemail:1.6.1-apache,roundcube/roundcubemail:latest-apache,roundcube/roundcubemail:latest - variant: 'fpm' test-files: 'fpm-postgres' - docker-tag: roundcube/roundcubemail:1.6.x-fpm,roundcube/roundcubemail:1.6.0-fpm,roundcube/roundcubemail:latest-fpm + docker-tag: roundcube/roundcubemail:1.6.x-fpm,roundcube/roundcubemail:1.6.1-fpm,roundcube/roundcubemail:latest-fpm - variant: 'fpm-alpine' test-files: 'fpm-postgres' - docker-tag: roundcube/roundcubemail:1.6.x-fpm-alpine,roundcube/roundcubemail:1.6.0-fpm-alpine,roundcube/roundcubemail:latest-fpm-alpine + docker-tag: roundcube/roundcubemail:1.6.x-fpm-alpine,roundcube/roundcubemail:1.6.1-fpm-alpine,roundcube/roundcubemail:latest-fpm-alpine steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/apache/Dockerfile b/apache/Dockerfile index 4f967d2..d39aff9 100644 --- a/apache/Dockerfile +++ b/apache/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.0-apache +FROM php:8.1-apache LABEL maintainer="Thomas Bruederli " RUN set -ex; \ @@ -68,7 +68,7 @@ COPY --from=composer:2 /usr/bin/composer /usr/bin/composer RUN a2enmod rewrite # Define Roundcubemail version -ENV ROUNDCUBEMAIL_VERSION 1.6.0 +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" diff --git a/fpm-alpine/Dockerfile b/fpm-alpine/Dockerfile index 20d3a1d..845e65d 100644 --- a/fpm-alpine/Dockerfile +++ b/fpm-alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.0-fpm-alpine +FROM php:8.1-fpm-alpine LABEL maintainer="Thomas Bruederli " # entrypoint.sh and installto.sh dependencies @@ -58,7 +58,7 @@ COPY --from=composer:2 /usr/bin/composer /usr/bin/composer # Define Roundcubemail version -ENV ROUNDCUBEMAIL_VERSION 1.6.0 +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" diff --git a/fpm/Dockerfile b/fpm/Dockerfile index 243cf40..773f3df 100644 --- a/fpm/Dockerfile +++ b/fpm/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.0-fpm +FROM php:8.1-fpm LABEL maintainer="Thomas Bruederli " RUN set -ex; \ @@ -67,7 +67,7 @@ COPY --from=composer:2 /usr/bin/composer /usr/bin/composer # Define Roundcubemail version -ENV ROUNDCUBEMAIL_VERSION 1.6.0 +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" diff --git a/templates/Dockerfile-alpine.templ b/templates/Dockerfile-alpine.templ index 76fb63b..cf9e64c 100644 --- a/templates/Dockerfile-alpine.templ +++ b/templates/Dockerfile-alpine.templ @@ -1,4 +1,4 @@ -FROM php:8.0-%%VARIANT%% +FROM php:8.1-%%VARIANT%% LABEL maintainer="Thomas Bruederli " # entrypoint.sh and installto.sh dependencies diff --git a/templates/Dockerfile-debian.templ b/templates/Dockerfile-debian.templ index 6a89bf4..365c40d 100644 --- a/templates/Dockerfile-debian.templ +++ b/templates/Dockerfile-debian.templ @@ -1,4 +1,4 @@ -FROM php:8.0-%%VARIANT%% +FROM php:8.1-%%VARIANT%% LABEL maintainer="Thomas Bruederli " RUN set -ex; \