Skip to content

Commit 6d0376d

Browse files
author
Hans Tuscher
committed
fix: amqp branch name
1 parent e902a5d commit 6d0376d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docker/php-official/8.1-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ RUN set -x \
148148
&& PKG_CONFIG_PATH=/usr/local docker-php-ext-configure intl \
149149
&& docker-php-ext-configure gd --with-jpeg --with-freetype --with-webp \
150150
&& git clone --branch master --depth 1 https://github.com/Imagick/imagick.git /usr/src/php/ext/imagick \
151-
&& git clone --branch master --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
151+
&& git clone --branch latest --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
152152
&& cd /usr/src/php/ext/amqp && git submodule update --init \
153153
&& docker-php-ext-configure ldap \
154154
&& PHP_OPENSSL=yes docker-php-ext-configure imap --with-kerberos --with-imap-ssl \

docker/php-official/8.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ RUN set -x \
140140
# Install extensions
141141
&& PKG_CONFIG_PATH=/usr/local docker-php-ext-configure intl \
142142
&& docker-php-ext-configure gd --with-jpeg --with-freetype --with-webp \
143-
&& git clone --branch master --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
143+
&& git clone --branch latest --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
144144
&& cd /usr/src/php/ext/amqp && git submodule update --init \
145145
&& git clone --branch master --depth 1 https://github.com/Imagick/imagick.git /usr/src/php/ext/imagick \
146146
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \

docker/php-official/8.2-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ RUN set -x \
148148
&& PKG_CONFIG_PATH=/usr/local docker-php-ext-configure intl \
149149
&& docker-php-ext-configure gd --with-jpeg --with-freetype --with-webp \
150150
&& git clone --branch master --depth 1 https://github.com/Imagick/imagick.git /usr/src/php/ext/imagick \
151-
&& git clone --branch master --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
151+
&& git clone --branch latest --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
152152
&& cd /usr/src/php/ext/amqp && git submodule update --init \
153153
&& docker-php-ext-configure ldap \
154154
&& PHP_OPENSSL=yes docker-php-ext-configure imap --with-kerberos --with-imap-ssl \

docker/php-official/8.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ RUN set -x \
140140
# Install extensions
141141
&& PKG_CONFIG_PATH=/usr/local docker-php-ext-configure intl \
142142
&& docker-php-ext-configure gd --with-jpeg --with-freetype --with-webp \
143-
&& git clone --branch master --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
143+
&& git clone --branch latest --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
144144
&& cd /usr/src/php/ext/amqp && git submodule update --init \
145145
&& git clone --branch master --depth 1 https://github.com/Imagick/imagick.git /usr/src/php/ext/imagick \
146146
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \

template/Dockerfile/images/php.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
&& PKG_CONFIG_PATH=/usr/local docker-php-ext-configure intl \
254254
&& docker-php-ext-configure gd --with-jpeg --with-freetype --with-webp \
255255
&& git clone --branch master --depth 1 https://github.com/Imagick/imagick.git /usr/src/php/ext/imagick \
256-
&& git clone --branch master --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
256+
&& git clone --branch latest --depth 1 https://github.com/php-amqp/php-amqp.git /usr/src/php/ext/amqp \
257257
&& cd /usr/src/php/ext/amqp && git submodule update --init \
258258
{%- else %}
259259
&& docker-php-ext-configure intl --with-icu-dir=/usr/local \

0 commit comments

Comments
 (0)