-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5099 from mailcow/feat/phpfpm-8.2
Update to PHP 8.2
- Loading branch information
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:8.1-fpm-alpine3.17 | ||
FROM php:8.2-fpm-alpine3.17 | ||
LABEL maintainer "Andre Peters <[email protected]>" | ||
|
||
# renovate: datasource=github-tags depName=krakjoe/apcu versioning=semver-coerced | ||
|
@@ -12,7 +12,7 @@ ARG MEMCACHED_PECL_VERSION=3.2.0 | |
# renovate: datasource=github-tags depName=phpredis/phpredis versioning=semver-coerced | ||
ARG REDIS_PECL_VERSION=5.3.7 | ||
# renovate: datasource=github-tags depName=composer/composer versioning=semver-coerced | ||
ARG COMPOSER_VERSION=2.5.4 | ||
ARG COMPOSER_VERSION=2.5.5 | ||
|
||
RUN apk add -U --no-cache autoconf \ | ||
aspell-dev \ | ||
|
@@ -52,6 +52,7 @@ RUN apk add -U --no-cache autoconf \ | |
libxpm-dev \ | ||
libzip \ | ||
libzip-dev \ | ||
linux-headers \ | ||
make \ | ||
mysql-client \ | ||
openldap-dev \ | ||
|
@@ -75,7 +76,7 @@ RUN apk add -U --no-cache autoconf \ | |
--with-webp \ | ||
--with-xpm \ | ||
--with-avif \ | ||
&& docker-php-ext-install -j 4 exif gd gettext intl ldap opcache pcntl pdo pdo_mysql pspell soap sockets zip bcmath gmp \ | ||
&& docker-php-ext-install -j 4 exif gd gettext intl ldap opcache pcntl pdo pdo_mysql pspell soap sockets sysvsem zip bcmath gmp \ | ||
&& docker-php-ext-configure imap --with-imap --with-imap-ssl \ | ||
&& docker-php-ext-install -j 4 imap \ | ||
&& curl --silent --show-error https://getcomposer.org/installer | php -- --version=${COMPOSER_VERSION} \ | ||
|
@@ -99,6 +100,7 @@ RUN apk add -U --no-cache autoconf \ | |
libxml2-dev \ | ||
libxpm-dev \ | ||
libzip-dev \ | ||
linux-headers \ | ||
make \ | ||
openldap-dev \ | ||
pcre-dev \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters