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 488474b commit 73360e2Copy full SHA for 73360e2
Dockerfile
@@ -1,16 +1,17 @@
1
-FROM php:8.3-apache
+FROM php:7.4-apache
2
MAINTAINER Sebastian Stenzel <[email protected]>
3
4
RUN apt-get update && apt-get install --no-install-recommends -y \
5
libgmp-dev \
6
libpq-dev \
7
unzip \
8
&& rm -rf /var/lib/apt/lists/*
9
-
10
RUN pecl install \
11
- apcu-5.1.24 \
+ apcu-5.1.18 \
12
&& docker-php-ext-enable \
13
apcu
14
15
RUN docker-php-ext-install \
16
- gmp
+ gmp \
+ pdo \
+ pdo_pgsql \
17
+ pgsql
README.md
@@ -3,3 +3,5 @@ Basically php-apache with some added PHP capabilities:
* apcu
* gmp
+* pdo
+* pgsql
0 commit comments