Skip to content

Commit 411b9e2

Browse files
committed
docs: remove prebuild extensions
1 parent 45e90ee commit 411b9e2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

utils/README.blueprint.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,12 @@ FROM thecodingmachine/php:{{ $image.php_version }}-v4-slim-apache
147147

148148
Beware! The `ARG PHP_EXTENSIONS` command must be written before the `FROM`. This is not a typo.
149149

150-
Note: the slim image comes with literally no extensions. Not even "opcache" which is definitely useful performance-wise.
151-
We highly recommend to install at least the "opcache" extension.
152-
153150
**Heads up**: if you are using multistage builds, the "ARG" variable must be put at the very top of the file (before the
154151
first FROM):
155152

156153
```Dockerfile
157154
# The PHP_EXTENSIONS ARG will apply to the "slim" image
158-
ARG PHP_EXTENSIONS="apcu mysqli opcache pdo_mysql zip soap"
155+
ARG PHP_EXTENSIONS="apcu mysqli pdo_mysql soap"
159156

160157
FROM thecodingmachine/php:7.2-v4-apache-node10 AS builder
161158

0 commit comments

Comments
 (0)