0% found this document useful (0 votes)
24 views1 page

Doker File

Uploaded by

samuelalvesesst
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views1 page

Doker File

Uploaded by

samuelalvesesst
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

FROM php:7.3.

33-fpm-alpine

# Instalar dependências e pacotes necessários


RUN apk add --no-cache \
git \
curl-dev \
icu-dev \
libpng-dev \
libjpeg-turbo-dev \
libwebp-dev \
zlib-dev \
freetype-dev \
libxml2-dev \
bzip2-dev \
gmp-dev \
libldap \
openldap-dev \
unixodbc-dev \
sqlite-dev \
aspell-dev \
pcre-dev \
tidyhtml-dev \
oniguruma-dev \
libzip-dev \
imagemagick \
imagemagick-dev \
postgresql-dev \
libbz2 \
libxpm-dev \
libvpx-dev \
unzip \
libmcrypt-dev \
libxslt-dev \
gcc \
g++ \
make \
autoconf \
libc-dev \
libtool

# Instalar extensões PHP uma de cada vez para isolar erros


RUN docker-php-ext-install mbstring
RUN docker-php-ext-install pdo_pgsql
RUN docker-php-ext-install curl
RUN docker-php-ext-install intl
RUN docker-php-ext-install gd
RUN docker-php-ext-install xml
RUN docker-php-ext-install zip
RUN docker-php-ext-install bz2
RUN docker-php-ext-install calendar
RUN docker-php-ext-install soap

# Instalar o imagick via pecl


RUN pecl install imagick && docker-php-ext-enable imagick

You might also like