mirror of
https://github.com/Intervention/image.git
synced 2025-09-02 10:23:29 +02:00
Add docker test environment
This commit is contained in:
35
Dockerfile
Normal file
35
Dockerfile
Normal file
@@ -0,0 +1,35 @@
|
||||
FROM php:8-cli
|
||||
|
||||
RUN apt update \
|
||||
&& apt install -y \
|
||||
libpng-dev \
|
||||
libicu-dev \
|
||||
libpq-dev \
|
||||
libzip-dev \
|
||||
zip \
|
||||
zlib1g-dev \
|
||||
locales \
|
||||
locales-all \
|
||||
libmagickwand-dev \
|
||||
libwebp-dev \
|
||||
&& pecl install imagick \
|
||||
&& docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp \
|
||||
&& docker-php-ext-enable imagick \
|
||||
&& docker-php-ext-install \
|
||||
intl \
|
||||
opcache \
|
||||
pdo \
|
||||
pdo_pgsql \
|
||||
pdo_mysql \
|
||||
pgsql \
|
||||
fileinfo \
|
||||
mysqli \
|
||||
gd \
|
||||
bcmath \
|
||||
exif \
|
||||
zip \
|
||||
&& apt-get clean
|
||||
|
||||
# install composer
|
||||
#
|
||||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
Reference in New Issue
Block a user