We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6def21 commit 3f0d8afCopy full SHA for 3f0d8af
1 file changed
Dockerfile
@@ -6,6 +6,25 @@ RUN /usr/bin/composer -v
6
7
# @see https://hub.docker.com/_/php
8
FROM php:8.0.7-cli-alpine AS php
9
+RUN apk add \
10
+ bzip2-dev \
11
+ libsodium-dev \
12
+ libxml2-dev \
13
+ libxslt-dev
14
+
15
+RUN docker-php-ext-install \
16
+ bz2 \
17
+ calendar \
18
+ exif \
19
+ pcntl \
20
+ shmop \
21
+ soap \
22
+ sockets \
23
+ sodium \
24
+ sysvsem \
25
+ sysvshm \
26
+ xsl
27
28
RUN which php; php -v; php -m; php -i | grep etc
29
30
# @see https://hub.docker.com/_/python/
0 commit comments