Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
13 lines
214 B
Docker
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
|