You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slightly odd issue - if I try and build a multiarch image and use a pecl install redis as part of it - then it fails on the linux/arm/v7 build. Example Dockerfile :
FROM php:7.3-apache
RUN pecl install redis && docker-php-ext-enable redis
Works fine. The docker version in front of me is Docker version 19.03.2, build 6a30dfc. Let me know if there's any more info I can supply or something to dig into :-)
Oh - and running the php:7.3 image on an actual ARM machine also runs pecl install redis a-ok as noted on the original issue linked above.
The text was updated successfully, but these errors were encountered:
ohnotnow
changed the title
linux/arm/v7 'Command 'install' is not valid, try 'pecl help'
Qemu only : linux/arm/v7 'Command 'install' is not valid, try 'pecl help'
Sep 20, 2019
FROM biarms/qemu-bin as qemu-bin-ref
FROM arm32v7/php:7.3-fpm
COPY --from=qemu-bin-ref /usr/bin/qemu-arm-static /usr/bin/qemu-arm-static
RUN yes | pecl install apcu
Will fail in the build phase with the error mentioned above
Edit: Mine fails on gitlab pipeline running in docker:19.03.1-dind I believe
Resubmitting from docker-library/php#893 .
Slightly odd issue - if I try and build a multiarch image and use a
pecl install redis
as part of it - then it fails on the linux/arm/v7 build. Example Dockerfile :Running :
Fails with
Running :
Works fine. The docker version in front of me is
Docker version 19.03.2, build 6a30dfc
. Let me know if there's any more info I can supply or something to dig into :-)Oh - and running the php:7.3 image on an actual ARM machine also runs
pecl install redis
a-ok as noted on the original issue linked above.The text was updated successfully, but these errors were encountered: