Skip to content
Snippets Groups Projects
Commit f81c53ee authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

allow webp in main docker file as well, re #3935

Merge request studip/studip!2827
parent 922feaed
No related branches found
No related tags found
No related merge requests found
......@@ -11,11 +11,12 @@ RUN apt update && apt install -y --no-install-recommends \
libonig-dev \
libzip-dev \
libicu-dev \
libwebp-dev \
vim \
&& 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
FROM node:16 as nodejs
......
......@@ -11,11 +11,12 @@ RUN apt update && apt install -y --no-install-recommends \
libonig-dev \
libzip-dev \
libicu-dev \
libwebp-dev \
vim \
&& 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment