This commit is contained in:
Andrey Sokolovskiy
2024-12-12 20:00:43 +07:00
parent 707d9ff258
commit 8b04f24430
2 changed files with 47 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM php:7.4-fpm
RUN apt-get update && apt-get install -y \
libfreetype-dev \
libjpeg62-turbo-dev \
libpng-dev \
libxslt1-dev \
libxml2-dev \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd \
&& docker-php-ext-install bcmath xsl xml gettext intl pdo_mysql opcache calendar ffi