Initial commit
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled

This commit is contained in:
2026-02-03 18:27:33 +01:00
commit e1f5165222
6 changed files with 180 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
#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