Skip to content

Commit 1a5fed6

Browse files
Version 12.2 update
1 parent 13b6d95 commit 1a5fed6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
3535
# Note: $savedAptMark var must be assigned & used in the same RUN command.
3636
RUN savedAptMark="$(apt-mark showmanual)"; \
3737
apt-get install -y --no-install-recommends \
38-
libicu-dev libpq-dev libjpeg-dev libpng-dev libldap2-dev libzip-dev libonig-dev; \
38+
libicu-dev libpq-dev libjpeg-dev libpng-dev libwebp-dev libldap2-dev libzip-dev libonig-dev; \
3939
\
4040
# Install PHP extensions (curl, mbstring & xml are already included).
41-
docker-php-ext-configure gd --with-jpeg; \
41+
docker-php-ext-configure gd --with-jpeg --with-webp; \
4242
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
4343
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
4444
docker-php-ext-install -j$(nproc) gd pgsql pdo_pgsql gettext intl zip ldap; \
@@ -89,7 +89,7 @@ RUN cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini
8989
RUN a2enmod rewrite
9090

9191
# Download and extract rosariosis
92-
ENV ROSARIOSIS_VERSION 'v12.1.3'
92+
ENV ROSARIOSIS_VERSION 'v12.2'
9393

9494
# Set the SHELL option -o pipefail before RUN with a pipe in it
9595
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

0 commit comments

Comments
 (0)