aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/dockerfile/php_common_deps.include
blob: 8839bb51554c21bebeeadd2b99e45ea73781d35d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ronn: a ruby tool used to convert markdown to man pages, used during the
# install of Protobuf extensions
#
# rake: a ruby version of make used to build the PHP Protobuf extension
RUN /bin/bash -l -c "rvm all do gem install ronn rake"

# Install composer
RUN curl -sS https://getcomposer.org/installer | php
RUN mv composer.phar /usr/local/bin/composer

# Download the patched PHP protobuf so that PHP gRPC clients can be generated
# from proto3 schemas.
RUN git clone https://github.com/stanley-cheung/Protobuf-PHP.git /var/local/git/protobuf-php

RUN /bin/bash -l -c "rvm use ruby-2.1 ${'\\'}
  && cd /var/local/git/protobuf-php ${'\\'}
  && rvm all do rake pear:package version=1.0 ${'\\'}
  && pear install Protobuf-1.0.tgz"

# Define the default command.
CMD ["bash"]