Initial commit
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user