File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -46,4 +46,6 @@ RUN cd /var/local/git/grpc/src/php/ext/grpc \
4646 && ./configure \
4747 && make
4848
49+ RUN cd /var/local/git/grpc/src/php && composer install
50+
4951RUN cd /var/local/git/grpc/src/php && ./bin/run_tests.sh
Original file line number Diff line number Diff line change @@ -64,9 +64,12 @@ RUN apt-get update && apt-get install -y \
6464 sqlite3 \
6565 zlib1g-dev
6666
67- # Install the version of PHP gRPC is tested against
6867ENV DEBIAN_FRONTEND noniteractive
6968
69+ # Install composer
70+ RUN curl -sS https://getcomposer.org/installer | php
71+ RUN mv composer.phar /usr/local/bin/composer
72+
7073# Download the patched PHP protobuf so that PHP gRPC clients can be generated
7174# from proto3 schemas.
7275RUN git clone https://github.com/murgatroid99/Protobuf-PHP.git /var/local/git/protobuf-php
You can’t perform that action at this time.
0 commit comments