aboutsummaryrefslogtreecommitdiff
path: root/docker/tests/php74/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/tests/php74/Dockerfile')
-rw-r--r--docker/tests/php74/Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/tests/php74/Dockerfile b/docker/tests/php74/Dockerfile
index 49149a9..17d404a 100644
--- a/docker/tests/php74/Dockerfile
+++ b/docker/tests/php74/Dockerfile
@@ -7,14 +7,15 @@ RUN apt update && apt install -y --no-install-recommends \
lsb-release \
zip \
tar \
+ libwebp-dev \
&& rm -rf /var/lib/apt/lists/*
# Install php extensions
-RUN docker-php-ext-configure gd --with-jpeg
+RUN docker-php-ext-configure gd --with-jpeg --with-webp
RUN docker-php-ext-install pdo gettext curl gd mbstring zip pdo pdo_mysql mysqli intl json
-# Install npm using nvm
-RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
+# Install node
+RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
RUN apt update && apt install -y --no-install-recommends nodejs \
curl apt-transport-https ca-certificates gnupg unzip git \
&& rm -rf /var/lib/apt/lists/*