diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-04-04 07:54:16 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-04-04 07:54:16 +0000 |
| commit | 6c806100f33789a5c7a54a759dc7e51d0f3c08f1 (patch) | |
| tree | 9890c45e316d3d99e8665ba47834b0e106e1c60f /docker | |
| parent | 798f20f8d55e2a81c4d6c76f4e0d4ca44f2dd534 (diff) | |
re #3935
Merge request studip/studip!2789
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/build_images.sh | 2 | ||||
| -rw-r--r-- | docker/tests/php72/Dockerfile | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docker/build_images.sh b/docker/build_images.sh index 1fb09f6..86c0185 100644 --- a/docker/build_images.sh +++ b/docker/build_images.sh @@ -14,4 +14,4 @@ build_image tests/php74 studip:tests & build_image release-cli release-cli & wait -echo "Images built"
\ No newline at end of file +echo "Images built" diff --git a/docker/tests/php72/Dockerfile b/docker/tests/php72/Dockerfile index b8b277b..0ea46d4 100644 --- a/docker/tests/php72/Dockerfile +++ b/docker/tests/php72/Dockerfile @@ -7,11 +7,13 @@ 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-png-dir=/usr/include/ \ - --with-jpeg-dir=/usr/include/ + --with-jpeg-dir=/usr/include/ \ + --with-webp-dir=/usr/include/ RUN docker-php-ext-install pdo gettext curl gd mbstring zip pdo pdo_mysql mysqli intl json # Install npm using nvm |
