This repository was archived by the owner on Dec 11, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,14 @@ LABEL Maintainer="Zaher Ghaibeh <z@zah.me>" \
15
15
16
16
RUN apk update \
17
17
&& apk add --no-cache git mysql-client curl openssh-client icu libpng libjpeg-turbo \
18
- && apk add --no-cache --virtual build-dependencies icu-dev \
18
+ && apk add --no-cache --virtual build-dependencies icu-dev postgresql-dev \
19
19
libxml2-dev freetype-dev libpng-dev libjpeg-turbo-dev g++ make autoconf \
20
20
&& docker-php-source extract \
21
21
&& pecl install redis \
22
22
&& docker-php-ext-enable redis \
23
23
&& docker-php-source delete \
24
- && docker-php-ext-install pdo_mysql pdo_pgsql intl zip gd \
24
+ && docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql \
25
+ && docker-php-ext-install pgsql pdo_mysql pdo_pgsql intl zip gd \
25
26
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
26
27
&& mkdir /src && cd /src && git clone https://github.com/xdebug/xdebug.git \
27
28
&& cd xdebug \
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ It has the following modules:
27
27
1 . libxml
28
28
1 . mbstring
29
29
1 . mysqlnd
30
+ 1 . pdo_pgsql
31
+ 1 . pgsql
30
32
1 . openssl
31
33
1 . pcre
32
34
1 . PDO
You can’t perform that action at this time.
0 commit comments