Skip to content

Commit 117c017

Browse files
author
Hans Höchtl
authored
Merge pull request #484 from RogerSik/feature/update-icu-intl
updated icu from 66.1 to 73.1
2 parents f29747e + b1a730a commit 117c017

File tree

17 files changed

+18
-18
lines changed

17 files changed

+18
-18
lines changed

docker/php-official/5.6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN set -x \
135135
&& cp guetzli-master/bin/Release/guetzli /usr/local/bin/ \
136136
&& rm -rf master.zip guetzli-master \
137137
# Install new version of ICU
138-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
138+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
139139
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
140140
# Install extensions
141141
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN set -x \
135135
&& cp guetzli-master/bin/Release/guetzli /usr/local/bin/ \
136136
&& rm -rf master.zip guetzli-master \
137137
# Install new version of ICU
138-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
138+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
139139
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
140140
# Install extensions
141141
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.1-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN set -x \
142142
# https://github.com/docker-library/php/issues/240
143143
&& apk add gnu-libiconv --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \
144144
# Install new version of ICU
145-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
145+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
146146
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
147147
# Install extensions
148148
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN set -x \
135135
&& cp guetzli-master/bin/Release/guetzli /usr/local/bin/ \
136136
&& rm -rf master.zip guetzli-master \
137137
# Install new version of ICU
138-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
138+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
139139
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
140140
# Install extensions
141141
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.2-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN set -x \
142142
# https://github.com/docker-library/php/issues/240
143143
&& apk add gnu-libiconv --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \
144144
# Install new version of ICU
145-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
145+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
146146
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
147147
# Install extensions
148148
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN set -x \
135135
&& cp guetzli-master/bin/Release/guetzli /usr/local/bin/ \
136136
&& rm -rf master.zip guetzli-master \
137137
# Install new version of ICU
138-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
138+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
139139
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
140140
# Install extensions
141141
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.3-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN set -x \
142142
# https://github.com/docker-library/php/issues/240
143143
&& apk add gnu-libiconv --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \
144144
# Install new version of ICU
145-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
145+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
146146
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
147147
# Install extensions
148148
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN set -x \
135135
&& cp guetzli-master/bin/Release/guetzli /usr/local/bin/ \
136136
&& rm -rf master.zip guetzli-master \
137137
# Install new version of ICU
138-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
138+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
139139
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
140140
# Install extensions
141141
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

docker/php-official/7.4-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN set -x \
142142
# https://github.com/docker-library/php/issues/240
143143
&& apk add gnu-libiconv --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \
144144
# Install new version of ICU
145-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
145+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
146146
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
147147
# Install extensions
148148
&& PKG_CONFIG_PATH=/usr/local docker-php-ext-configure intl \

docker/php-official/7.4/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN set -x \
135135
&& cp guetzli-master/bin/Release/guetzli /usr/local/bin/ \
136136
&& rm -rf master.zip guetzli-master \
137137
# Install new version of ICU
138-
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz \
138+
&& curl -sS -o /tmp/icu.tar.gz -L https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz
139139
&& tar -zxf /tmp/icu.tar.gz -C /tmp && cd /tmp/icu/source && ./configure --prefix=/usr/local && make && make install && cd / && rm -rf /tmp/icu* \
140140
# Install extensions
141141
&& PKG_CONFIG_PATH=/usr/local docker-php-ext-configure intl \

0 commit comments

Comments
 (0)