From 4cb5bc17c9c20d79a317289b54c47a35f8420012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Thu, 12 Jan 2023 16:46:33 +0100 Subject: [PATCH] 2023.01-1: mongodb PHP extension --- Makefile | 2 +- build_php8.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a396e56..c8c5ef0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ REPO=harbor.hq.rosti.cz/rosti/runtime DOCKER=docker -VERSION=2022.12-1 +VERSION=2023.01-1 all: build diff --git a/build_php8.sh b/build_php8.sh index 76d20e7..4b1a0ae 100755 --- a/build_php8.sh +++ b/build_php8.sh @@ -69,9 +69,11 @@ curl -s https://getcomposer.org/installer | ./php -d allow_url_fopen=On cd - echo "no" | /opt/techs/php-$VERSION/bin/pecl install redis +echo "no" | /opt/techs/php-$VERSION/bin/pecl install mongodb echo "zend_extension=opcache.so" > /opt/techs/php-$VERSION/etc/conf.d/extensions.ini echo "extension=redis.so" >> /opt/techs/php-$VERSION/etc/conf.d/extensions.ini +echo "extension=mongodb.so" >> /opt/techs/php-$VERSION/etc/conf.d/extensions.ini # Not supported yet # https://github.com/Imagick/imagick/issues/358 # echo "no" | /opt/techs/php-$VERSION/bin/pecl install imagick