Skip to content

Instantly share code, notes, and snippets.

@cockok
Created December 22, 2020 13:49
Show Gist options
  • Save cockok/e9f015e3493dea21a410978af013b901 to your computer and use it in GitHub Desktop.
Save cockok/e9f015e3493dea21a410978af013b901 to your computer and use it in GitHub Desktop.
composer with intl
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