php-petlandia/Dockerfile
Andrey Sokolovskiy 08edf16057
Some checks failed
PHP Image build / Build and Push image to registry (push) Failing after 4m11s
fix php lib
2024-12-12 20:37:28 +07:00

10 lines
376 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 \
&& 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 libffi6 libffi-dev