Skip to content

Commit

Permalink
Merge pull request #17 from kporras07/7.3-add-intl
Browse files Browse the repository at this point in the history
Add intl extension.
  • Loading branch information
kporras07 committed May 29, 2020
2 parents 73f633a + 4490c0f commit 2bbf1e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ RUN docker-php-source extract \
&& docker-php-ext-configure gd --with-gd --with-freetype-dir=/usr/include/ \
--with-jpeg-dir=/usr/include/ \
--with-png-dir=/usr/include/ \
&& docker-php-ext-configure intl \
&& NPROC=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1) \
&& docker-php-ext-install -j${NPROC} gd \
&& docker-php-source delete
Expand All @@ -58,7 +59,8 @@ RUN docker-php-ext-install bcmath \
xml \
opcache \
pdo \
pdo_mysql
pdo_mysql \
intl
RUN apk update \
&& apk add ca-certificates wget \
&& update-ca-certificates
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ PHP Image containing some useful extensions.
- xdebug
- mhsendmail
- blackfire
- intl

0 comments on commit 2bbf1e3

Please sign in to comment.