Skip to content

Commit 095653a

Browse files
fix(build_sys): install the intl PHP extension (#208)
Upstream made the `intl` PHP extension a requirement[1]. Update the build script to install it. 1. In commit ccd90236dc64645f3889e4efb684493dde68c949 in LibreBooking: LibreBooking/librebooking@ccd9023
1 parent a4e77a5 commit 095653a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

bin/build_sys.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ apt-get upgrade --yes
1515
apt-get install --yes --no-install-recommends \
1616
libjpeg-dev \
1717
libldap-dev \
18+
libicu-dev \
1819
libpng-dev \
1920
libfreetype6-dev \
2021
unzip
@@ -46,7 +47,7 @@ cp "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
4647
touch /usr/local/etc/php/conf.d/librebooking.ini
4748

4849
docker-php-ext-configure gd --with-jpeg --with-freetype
49-
docker-php-ext-install mysqli gd ldap
50+
docker-php-ext-install mysqli gd ldap intl
5051
pecl install timezonedb
5152
docker-php-ext-enable timezonedb
5253

0 commit comments

Comments
 (0)