We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ab3da commit 51ed939Copy full SHA for 51ed939
Dockerfile
@@ -14,13 +14,14 @@ RUN apt-get update && apt-get install -y \
14
git \
15
curl \
16
postgresql \
17
- postgresql-contrib
+ postgresql-contrib \
18
+ libpq-dev
19
20
# Clear cache
21
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
22
23
# Install extensions
-RUN docker-php-ext-install pdo_mysql mbstring zip exif pcntl
24
+RUN docker-php-ext-install pdo_mysql pdo_pgsql mbstring zip exif pcntl
25
RUN docker-php-ext-configure gd --with-gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-png-dir=/usr/include/
26
RUN docker-php-ext-install gd
27
0 commit comments