Skip to content

Commit

Permalink
fix(web): add zip & apcu php extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
jeboehm committed May 3, 2022
1 parent 35f9713 commit 2bc068d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@ COPY --from=composer /usr/bin/composer /usr/bin/composer

RUN apk add --no-cache \
icu \
icu-dev \
nginx \
supervisor && \
apk add --no-cache --virtual .phpize-deps icu-dev libzip-dev $PHPIZE_DEPS && \
pecl install apcu && \
docker-php-ext-install -j5 \
intl \
opcache \
pdo_mysql && \
pdo_mysql \
zip && \
docker-php-ext-enable apcu && \
ln -sf /dev/stdout /var/log/nginx/access.log && \
ln -sf /dev/stderr /var/log/nginx/error.log && \
apk del --no-cache icu-dev
Expand Down

0 comments on commit 2bc068d

Please sign in to comment.