Skip to content
Snippets Groups Projects
Commit b38fecdb authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

added freetype to gd extension

parent 061c7b5c
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,10 @@ RUN groupadd -g ${GID} metager && \ ...@@ -19,7 +19,10 @@ RUN groupadd -g ${GID} metager && \
# Install required php modules # Install required php modules
RUN apt update && apt install -y \ RUN apt update && apt install -y \
libzip-dev \ libzip-dev \
libpng-dev && \ libpng-dev \
libfreetype-dev \
libjpeg62-turbo-dev && \
docker-php-ext-configure gd --with-freetype --with-jpeg && \
docker-php-ext-install zip gd pcntl pdo_mysql && \ docker-php-ext-install zip gd pcntl pdo_mysql && \
yes '' | pecl install xdebug-3.1.4 redis-5.3.7 && \ yes '' | pecl install xdebug-3.1.4 redis-5.3.7 && \
docker-php-ext-enable redis && \ docker-php-ext-enable redis && \
......
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