File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,19 @@ RUN apt-get update -y && \
9
9
10
10
# Install imagick and redis
11
11
RUN apt-get install -y libmagickwand-dev --no-install-recommends && \
12
- pecl install imagick redis uv
12
+ pecl install redis uv
13
+
14
+ # This is required on PHP 8.3 (check following issue: https://github.com/Imagick/imagick/issues/640)
15
+ ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
16
+ RUN install-php-extensions imagick
13
17
14
18
# Install node and npm
15
19
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - &&\
16
20
apt-get install -y nodejs
17
21
18
22
# Install and enable additional php modules
19
23
RUN docker-php-ext-install ffi pdo pdo_mysql gmp bcmath sodium mysqli sockets pcntl gd
20
- RUN docker-php-ext-enable redis imagick
24
+ RUN docker-php-ext-enable redis
21
25
22
26
# Stage: create-application
23
27
FROM setup-web-server AS create-application
You can’t perform that action at this time.
0 commit comments