Created
December 22, 2020 13:49
-
-
Save cockok/e9f015e3493dea21a410978af013b901 to your computer and use it in GitHub Desktop.
composer with intl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM composer | |
RUN set -eux; \ | |
apk add --no-cache --virtual .cakephp-rundeps \ | |
icu-libs | |
RUN set -eux; \ | |
apk add --no-cache --virtual .build-deps \ | |
icu-dev \ | |
icu-libs \ | |
; \ | |
docker-php-ext-install -j$(nproc) \ | |
intl \ | |
; \ | |
apk del .build-deps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment