e3436e999a
thanks to mbuchalik for this idea
15 lines
No EOL
460 B
Docker
15 lines
No EOL
460 B
Docker
FROM php:8.2-apache
|
|
|
|
# From the official documentation on https://hub.docker.com/_/php
|
|
RUN apt-get update && apt-get install -y \
|
|
libfreetype6-dev \
|
|
libjpeg62-turbo-dev \
|
|
libpng-dev \
|
|
libicu-dev \
|
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
|
&& docker-php-ext-install -j$(nproc) gd
|
|
|
|
# See https://github.com/docker-library/php/issues/391
|
|
RUN docker-php-ext-install mysqli
|
|
|
|
RUN docker-php-ext-install intl |