diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-05-03 11:41:22 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-05-03 11:41:22 +0000 |
| commit | d066e3494ba0b661d149dcd7bb267aed8f4e65ea (patch) | |
| tree | 7c0748a56f27475292ce653c75b2c55d03a40bc8 /docker/studip | |
| parent | 2b25082b266b650d9a0496a2a25468484b40efce (diff) | |
increase php minimal version to 8.1, fixes #3805
Closes #3805
Merge request studip/studip!2814
Diffstat (limited to 'docker/studip')
| -rw-r--r-- | docker/studip/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/studip/Dockerfile b/docker/studip/Dockerfile index 76fe2d9..0689c3a 100644 --- a/docker/studip/Dockerfile +++ b/docker/studip/Dockerfile @@ -1,5 +1,5 @@ # Setup php, apache and stud.ip -FROM php:7.4-apache as base +FROM php:8.1-apache as base # Install system requirements RUN apt update && apt install -y --no-install-recommends \ @@ -17,7 +17,7 @@ RUN apt update && apt install -y --no-install-recommends \ # Install php extensions 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 +RUN docker-php-ext-install gettext gd zip pdo_mysql mysqli intl FROM node:16 as nodejs |
