Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions images/yourls/.php-version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
php:8.4.14-apache@sha256:2e8ef5f8a353d88fd93fa8b1ec6549511701bed888c6d2cb20d5c774f9dae4ee
php:8.4.14-fpm@sha256:c3d78497d86f1a08df18d1b211208b37f38c14b35eac35e3538b6439ad4bb107
php:8.4.14-fpm-alpine@sha256:994527feb1fe228e1f28f657abb6ae0e835b68b2dc0c8ef3d05c3fa06416371a
php:8.5.1-apache@sha256:ceff12272a11843b83874fd37c41921a2f90fd492cad2d4b951fbcc640e62ebf
php:8.5.1-fpm@sha256:d4871a19b9e56a00263921ebb1aea25ba57010e98c8861f33fef42e9ceb62614
php:8.5.1-fpm-alpine@sha256:ed2ee37265a0122a92c972faf3968a50f557c9a5b594fe5f3d541654cd881b98
9 changes: 6 additions & 3 deletions images/yourls/Dockerfile.template
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
FROM php:8.4-%%VARIANT%%
FROM php:8.5-%%VARIANT%%

# install the PHP extensions we need
RUN set -eux; \
docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli
docker-php-ext-install -j "$(nproc)" \
bcmath \
pdo_mysql \
mysqli

# set recommended PHP.ini settings
# see https://www.php.net/manual/en/opcache.installation.php
Expand All @@ -12,7 +15,7 @@ RUN { \
echo 'opcache.max_accelerated_files=4000'; \
echo 'opcache.revalidate_freq=2'; \
echo 'opcache.fast_shutdown=1'; \
} > /usr/local/etc/php/conf.d/opcache-recommended.ini
} > "$PHP_INI_DIR/conf.d/opcache-recommended.ini"

%%VARIANT_EXTRAS%%

Expand Down
Loading