-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP8.0-alpha1: PECL not found #1029
Comments
See #851 |
Okey, so in PHP 8.0 instead
should be:
or use a
In my case, both work. |
In my case I also had to:
|
In my case I also had to
before being able to use pickle |
FROM php:8.0.0RC2-fpm
# Pickle
RUN set -ex \
&& apt-get update \
&& apt-get install -y \
libzip-dev \
&& docker-php-ext-install -j$(nproc) zip \
&& curl -L -o /usr/local/bin/pickle https://github.com/FriendsOfPHP/pickle/releases/download/v0.6.0/pickle.phar \
&& chmod +x /usr/local/bin/pickle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I'm trying to use an image for PHP 8.0, but pecl command does not exist:
For example:
For PHP 7.4:
docker run php:7.4.7-apache-buster pecl
Output:
For PHP 8.0-alpha1:
docker run php:8.0.0alpha1-apache-buster pecl
Output:
It seems to me that the PHP team did something from the PECL repository but I can't find any information about it.Okay, I found information for Dockerfile PHP 7.4:
php/7.4/buster/apache/Dockerfile
Line 227 in b6fd2f7
but there is not that line in Dockerfile PHP 8.0.
Is there any replacement for installing this repository?
The text was updated successfully, but these errors were encountered: