Skip to content

Commit b8b9ce2

Browse files
joppltjmpalet
andauthored
chore: update base image to php 8.4.11 + install apcu (#2)
Co-authored-by: Josep Palet <jm.palet@gmail.com>
1 parent ec5a685 commit b8b9ce2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

8.4/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.4.5-fpm-alpine3.21 AS base
1+
FROM php:8.4.11-fpm-alpine3.21 AS base
22
WORKDIR /app
33
VOLUME /app
44
COPY config/php.ini /usr/local/etc/php/php.ini
@@ -30,9 +30,13 @@ RUN apk --update add --no-cache --virtual .build-deps \
3030
opcache \
3131
pcntl \
3232
zip \
33-
&& pecl install -o -f redis \
33+
&& pecl install -o -f \
34+
redis \
35+
apcu \
3436
&& docker-php-ext-enable \
3537
redis \
38+
apcu \
39+
&& pecl clear-cache \
3640
# Cleanup
3741
&& apk del .build-deps
3842

0 commit comments

Comments
 (0)