Skip to content

Commit

Permalink
fix(docker): fix igbinary and intl extension (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense authored Apr 19, 2024
1 parent 1026f7e commit 5f13859
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions infra/docker/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@ USER root
# Install redis with igbinary
RUN apk add --no-cache pcre-dev~=8.45 $PHPIZE_DEPS \
&& pecl install igbinary \
&& pecl install -D "enable-redis-igbinary="yes" enable-redis-lzf="no" enable-redis-zstd="no"" redis \
&& pecl install -D "enable-redis-igbinary='yes' enable-redis-lzf='no' enable-redis-zstd='no'" redis \
&& docker-php-ext-enable redis igbinary \
&& apk del pcre-dev $PHPIZE_DEPS

RUN apk add --no-cache icu-dev~=71.1 \
&& docker-php-ext-install mysqli pdo_mysql \
&& docker-php-ext-install opcache \
&& docker-php-ext-configure intl && docker-php-ext-install intl \
&& apk del icu-dev
RUN apk add --no-cache icu-dev \
&& docker-php-ext-configure intl \
&& docker-php-ext-install pdo_mysql opcache intl

# PHP config file
COPY ./php.ini ${PHP_INI_DIR}/conf.d/1000-php.ini
Expand Down

0 comments on commit 5f13859

Please sign in to comment.