Files
wordpress/Dockerfile
magdev e1f5165222
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
Initial commit
2026-02-03 18:27:33 +01:00

13 lines
214 B
Docker

#syntax=docker/dockerfile:1
ARG PHP_VERSION=8.4
FROM wordpress:php${PHP_VERSION} AS upstream
RUN pecl install redis apcu; \
docker-php-ext-enable redis apcu;
FROM upstream AS runtime
WORKDIR /var/www/html