Skip to content

Commit 73360e2

Browse files
committed
Revert "Merge pull request #1 from skymatic/feature/php8"
This reverts commit 488474b, reversing changes made to c79c5c7.
1 parent 488474b commit 73360e2

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
FROM php:8.3-apache
1+
FROM php:7.4-apache
22
MAINTAINER Sebastian Stenzel <[email protected]>
33

44
RUN apt-get update && apt-get install --no-install-recommends -y \
55
libgmp-dev \
66
libpq-dev \
77
unzip \
88
&& rm -rf /var/lib/apt/lists/*
9-
109
RUN pecl install \
11-
apcu-5.1.24 \
10+
apcu-5.1.18 \
1211
&& docker-php-ext-enable \
1312
apcu
14-
1513
RUN docker-php-ext-install \
16-
gmp
14+
gmp \
15+
pdo \
16+
pdo_pgsql \
17+
pgsql

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ Basically php-apache with some added PHP capabilities:
33

44
* apcu
55
* gmp
6+
* pdo
7+
* pgsql

0 commit comments

Comments
 (0)