mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
471 B
14 lines
471 B
9 years ago
|
#=================
|
||
|
# PHP dependencies
|
||
|
|
||
|
# Install dependencies
|
||
|
|
||
|
RUN /bin/bash -l -c "echo 'deb http://packages.dotdeb.org wheezy-php55 all' ${'\\'}
|
||
|
>> /etc/apt/sources.list.d/dotdeb.list"
|
||
|
RUN /bin/bash -l -c "echo 'deb-src http://packages.dotdeb.org wheezy-php55 all' ${'\\'}
|
||
|
>> /etc/apt/sources.list.d/dotdeb.list"
|
||
|
RUN wget http://www.dotdeb.org/dotdeb.gpg -O- | apt-key add -
|
||
|
|
||
|
RUN apt-get update && apt-get install -y ${'\\'}
|
||
|
git php5 php5-dev phpunit unzip
|