From:             eric at ericstern dot com
Operating system: docker/alpine linux
PHP version:      8.0.0alpha1
Package:          PECL
Bug Type:         Bug
Bug description:PECL no longer included in published docker build

Description:
------------
This is presumably intentional and temporary, but PECL is not included
in the published Docker image: `php:8.0.0alpha1-fpm-alpine` (it also
appears to be missing in fpm-buster). For software that depends on pecl
packages, this makes testing against the alpha builds
difficult/impossible.

Test script:
---------------
$ docker run --rm -it php:8.0.0alpha1-fpm-alpine sh

/var/www/html # apk add $PHPIZE_DEPS && pecl install apcu &&
docker-php-ext-enable apcu


Alternatively, in a Dockerfile:

FROM php:8.0.0alpha1-fpm-alpine
RUN apk add --update \
  $PHPIZE_DEPS \
  && pecl install apcu \
  && docker-php-ext-enable apcu \
  && && rm -rf /var/cache/apk/*

Expected result:
----------------
Installation completes, or at least returns an error that the pecl
packages haven't been updated for PHP 8 yet.

Actual result:
--------------
sh: pecl: not found

-- 
Edit bug report at https://bugs.php.net/bug.php?id=79766&edit=1
-- 
Fix committed:                    https://bugs.php.net/fix.php?id=79766&r=fixed
Fixed in release:                 
https://bugs.php.net/fix.php?id=79766&r=alreadyfixed
Need backtrace:                   
https://bugs.php.net/fix.php?id=79766&r=needtrace
Need Reproduce Script:            
https://bugs.php.net/fix.php?id=79766&r=needscript
Try newer version:                
https://bugs.php.net/fix.php?id=79766&r=oldversion
Not developer issue:              
https://bugs.php.net/fix.php?id=79766&r=support
Expected behavior:                
https://bugs.php.net/fix.php?id=79766&r=notwrong
Not enough info:                  
https://bugs.php.net/fix.php?id=79766&r=notenoughinfo
Submitted twice:                  
https://bugs.php.net/fix.php?id=79766&r=submittedtwice
register_globals:                 
https://bugs.php.net/fix.php?id=79766&r=globals
PHP version support discontinued: 
https://bugs.php.net/fix.php?id=79766&r=phptooold
Daylight Savings:                 https://bugs.php.net/fix.php?id=79766&r=dst
IIS Stability:                    https://bugs.php.net/fix.php?id=79766&r=isapi
Install GNU Sed:                  https://bugs.php.net/fix.php?id=79766&r=gnused
Floating point limitations:       https://bugs.php.net/fix.php?id=79766&r=float
No Zend Extensions:               https://bugs.php.net/fix.php?id=79766&r=nozend
MySQL Configuration Error:        
https://bugs.php.net/fix.php?id=79766&r=mysqlcfg

-- 
PECL development discussion Mailing List (https://pecl.php.net/)
To unsubscribe, visit: https://www.php.net/unsub.php

Reply via email to