master
parent 2f171f5e70
commit 744a6713f1
  1. 6
      Dockerfile

@ -9,7 +9,9 @@ RUN cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \ RUN apt-get update \
&& apt-get -y install --no-install-recommends \ && apt-get -y install --no-install-recommends \
# For build extentions
g++ \ g++ \
# Cli utils
git \ git \
vim \ vim \
curl \ curl \
@ -17,6 +19,8 @@ RUN apt-get update \
unzip \ unzip \
# For ImageMagic # For ImageMagic
#libmagickwand-dev \ #libmagickwand-dev \
# For intl
libicu-dev \
# For PDO_PGSQL # For PDO_PGSQL
libpq-dev \ libpq-dev \
# For Mongo with ssl # For Mongo with ssl
@ -26,7 +30,7 @@ RUN apt-get update \
# Install PHP extensions # Install PHP extensions
RUN docker-php-ext-install \ RUN docker-php-ext-install \
#intl \ intl \
opcache \ opcache \
pdo_mysql \ pdo_mysql \
pdo_pgsql pdo_pgsql

Loading…
Cancel
Save