Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docker): fix igbinary and intl extension #75

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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