Closed beejaz closed 2 months ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Please update it if any action still required.
@mistraloz hi, any idea on the issue?
Similar issue for thecodingmachine/php:8.2-v4-slim-cli
ARG PHP_EXTENSIONS="excimer"
FROM thecodingmachine/php:8.2-v4-slim-cli
Results in
3.765 Get:18 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [4399 kB]
4.152 Get:19 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [28.6 kB]
4.157 Get:20 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [55.2 kB]
4.447 Fetched 33.0 MB in 4s (7859 kB/s)
4.447 Reading package lists...
5.517 + /usr/bin/real_php /usr/local/bin/install_selected_extensions.php
5.542 *** Installing extensions ***
5.542 The following extension(s) is not supported: excimer
5.542 Supported extensions: amqp, apcu, ast, bcmath, blackfire, bz2, dba, ds, enchant, ffi, gd, gmp, grpc, igbinary, imagick, imap, intl, ldap, mailparse, memcached, mongodb, msgpack, mysqli, pcov, pdo_dblib, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, pspell, rdkafka, redis, snmp, soap, sqlite3, tidy, uploadprogress, uuid, xdebug, xmlrpc, yaml, zip
------
failed to solve: process "/bin/bash -o pipefail -c sudo -E PHP_EXTENSIONS=\"$PHP_EXTENSIONS\" /usr/local/bin/install_selected_extensions.sh" did not complete successfully: exit code: 1
make: *** [Makefile:72: dev-build] Error 17
Confirmed working now, thank you!
Expected Behavior
Using
ARG PHP_EXTENSIONS="pdo_mysql excimer"
in Dockerfile should installexcimer
extension.Current Behavior
Docker build fails with message
Possible Solution
All other extensions use symlinks in extension folder,
excimer
uses a regular folder. Could this be the cause of the issue? https://github.com/thecodingmachine/docker-images-php/tree/v4/extensions/8.3/excimerContext
Im trying to build a docker image from the 8.3 v4 slim apache image with extension pdo_mysql and excimer activated
Your Environment