gRPC builded docker images
※If you need this solution, please manage the images yourself by forking the repository from this one.
gRPC for PHP has a issue that building the module is pretty slow, and it hasn't solved. (ex. grpc/grpc#34278)
It affects 'Lead Time for Changes' of four keys on the products depend on gRPC.
This images is the module completed has been builded. By editting your Dockerfile as written below, it will be no wait for building.
FROM php:8.3-fpm-bookworm
### Removal
# RUN pecl install grpc
### Get grpc.so without a wait time during building process.
COPY --from=ghcr.io/totechite/grpc-docker:php8.3-pecl-grpc1.66.0-bookworm /usr/local/lib/php/extensions/grpc.so /tmp/grpc.so
RUN mv /tmp/grpc.so $(php-config --extension-dir)/grpc.so && docker-php-ext-enable grpc
- linux/amd64
- linux/arm64
ghcr.io/totechite/grpc-docker
- Tag Format
<PHP Version Prefix>-<gRPC Version Infix>-<libc Environment Suffix>
PHP Version Prefixes | gRPC Version Infixes | libc Environment Suffixes |
---|---|---|
php7.4-pecl | grpc1.64.1 | glibc2.31 |
php8.0-pecl | grpc1.65.5 | bullseye |
php8.1-pecl | grpc1.66.0 | glibc2.36 |
php8.2-pecl | bookworm | |
php8.3-pecl |
- Example of full image name
ghcr.io/totechite/grpc-docker:php8.3-pecl-grpc1.66.0-bookworm