Merge pull request #10222 from deannagarcia/composer

Upgrade to Composer 2
pull/10232/head
deannagarcia 3 years ago committed by GitHub
commit b10f2ae3f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      kokoro/linux/dockerfile/test/php_32bit/Dockerfile

@ -47,8 +47,10 @@ RUN cd /var/local \
&& make install
# Install composer
RUN curl -sS https://getcomposer.org/installer | php
RUN mv composer.phar /usr/local/bin/composer
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
RUN php composer-setup.php
RUN mv composer.phar /usr/bin/composer
RUN php -r "unlink('composer-setup.php');"
# Download php source code
RUN git clone https://github.com/php/php-src

Loading…
Cancel
Save