M
M
mysticwonder2016-08-10 16:09:24
PHP
mysticwonder, 2016-08-10 16:09:24

How to compose PHP7 Dockerfile with intl and ICU version 55.1?

Have a Dockerfile

FROM php:7.0-fpm
RUN apt-get update \
    && apt-get install -y libicu55 \
    && docker-php-ext-install -j$(nproc) intl

But the debian:jessie from which the php7 image is built does not contain libicu55.
In other words, how to install jessie INTL on debian with ICU version 55.1?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ivan Koryukov, 2016-08-10
@MadridianFox

It is necessary to find a repository for the distribution kit used with the required software version, and register it in /etc/apt/sources.list
And then install the required package with the version in the future.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question