Skip to content

Commit 77195db

Browse files
author
Hans Tuscher
committed
fix: amqp for older images
1 parent 6d0376d commit 77195db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docker/php-official/7.4-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.0-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.0/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/ \

0 commit comments

Comments
 (0)