Skip to content

Commit e74bb97

Browse files
committed
Second cut to php80 (using 8.0.0 beta1)
It still doesn't support PECL stuff, hence it's commented out. Also, the xmlrpc extension, that has been moved to PECL, cannot be installed yet
1 parent 755e566 commit e74bb97

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0.0alpha3-apache-buster
1+
FROM php:8.0.0beta1-apache-buster
22

33
ADD root/ /
44
# Fix the original permissions of /tmp, the PHP default upload tmp dir.

root/tmp/setup/php-extensions.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ docker-php-ext-install -j$(nproc) \
4848
pgsql \
4949
soap \
5050
xsl
51-
# xmlrpc -- not existing as of 8.0.0alpha3
51+
# xmlrpc -- not existing as of 8.0.0beta1
5252

5353
# GD.
5454
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/
@@ -59,8 +59,8 @@ docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/
5959
docker-php-ext-install -j$(nproc) ldap
6060

6161
# Memcached, MongoDB, Redis, APCu, igbinary.
62-
#pecl install memcached mongodb redis apcu igbinary uuid -- pecl not existing as of 8.0.0alpha3
63-
#docker-php-ext-enable memcached mongodb redis apcu igbinary uuid -- pecl not existing as of 8.0.0alpha3
62+
#pecl install memcached mongodb redis apcu igbinary uuid -- not existing as of 8.0.0beta1
63+
#docker-php-ext-enable memcached mongodb redis apcu igbinary uuid -- not existing as of 8.0.0beta1
6464

6565
# ZIP
6666
docker-php-ext-configure zip --with-zip
@@ -87,7 +87,7 @@ echo 'apc.enable_cli = On' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini
8787
#/tmp/setup/sqlsrv-extension.sh -- pecl not existing as of 8.0.0alpha3
8888

8989
# Keep our image size down..
90-
# pecl clear-cache -- pecl not existing as of 8.0.0alpha3
90+
#pecl clear-cache -- not existing as of 8.0.0beta1
9191
apt-get remove --purge -y $BUILD_PACKAGES
9292
apt-get autoremove -y
9393
apt-get clean

0 commit comments

Comments
 (0)