Update docker/7.2-apache/Dockerfile
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
colin 2024-11-13 07:56:19 -05:00
parent a22331ba4c
commit fae9a1f952
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y \
# Enable and configure PHP modules
RUN docker-php-ext-configure intl && \
docker-php-ext-install intl && \
docker-php-ext-configure gd --with-freetype --with-jpeg && \
docker-php-ext-configure gd --with-freetype-dir=/usr/include/freetype2 --with-jpeg-dir=/usr/include && \
docker-php-ext-install -j$(nproc) gd && \
docker-php-ext-install mysqli zip pdo_mysql bcmath && \
docker-php-ext-install opcache