php-petlandia/Dockerfile
Andrey Sokolovskiy 38c8c9cf39
All checks were successful
PHP Image build / Build and Push image to registry (push) Successful in 7m28s
fix
2024-12-12 21:38:41 +07:00

12 lines
384 B
Docker

FROM php:7.4-fpm
RUN apt-get update && apt-get install -y \
libfreetype-dev \
libjpeg62-turbo-dev \
libpng-dev \
libxslt1-dev \
libxml2-dev \
libffi7 \
libffi-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