Lines Matching refs:php
12 # Apt source for php
13 …N echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu trusty main" | tee /etc/apt/sources.list.d/…
60 RUN wget http://am1.php.net/get/php-5.5.38.tar.bz2/from/this/mirror
61 RUN mv mirror php-5.5.38.tar.bz2
62 RUN tar -xvf php-5.5.38.tar.bz2
63 RUN cd php-5.5.38 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-5.5-zts && \
65 RUN cd php-5.5.38 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-5.5 && \
68 RUN wget http://am1.php.net/get/php-5.6.30.tar.bz2/from/this/mirror
69 RUN mv mirror php-5.6.30.tar.bz2
70 RUN tar -xvf php-5.6.30.tar.bz2
71 RUN cd php-5.6.30 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-5.6-zts && \
73 RUN cd php-5.6.30 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-5.6 && \
76 RUN wget http://am1.php.net/get/php-7.0.18.tar.bz2/from/this/mirror
77 RUN mv mirror php-7.0.18.tar.bz2
78 RUN tar -xvf php-7.0.18.tar.bz2
79 RUN cd php-7.0.18 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-7.0-zts && \
81 RUN cd php-7.0.18 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-7.0 && \
84 RUN wget http://am1.php.net/get/php-7.1.4.tar.bz2/from/this/mirror
85 RUN mv mirror php-7.1.4.tar.bz2
86 RUN tar -xvf php-7.1.4.tar.bz2
87 RUN cd php-7.1.4 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-7.1-zts && \
89 RUN cd php-7.1.4 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-7.1 && \
92 RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
93 RUN php composer-setup.php
95 RUN php -r "unlink('composer-setup.php');"
100 cd protobuf/php && \
102 ln -sfn /usr/local/php-5.5/bin/php /usr/bin/php && \
103 ln -sfn /usr/local/php-5.5/bin/php-config /usr/bin/php-config && \
104 ln -sfn /usr/local/php-5.5/bin/phpize /usr/bin/phpize && \
107 ln -sfn /usr/local/php-5.6/bin/php /usr/bin/php && \
108 ln -sfn /usr/local/php-5.6/bin/php-config /usr/bin/php-config && \
109 ln -sfn /usr/local/php-5.6/bin/phpize /usr/bin/phpize && \
112 ln -sfn /usr/local/php-7.0/bin/php /usr/bin/php && \
113 ln -sfn /usr/local/php-7.0/bin/php-config /usr/bin/php-config && \
114 ln -sfn /usr/local/php-7.0/bin/phpize /usr/bin/phpize && \
117 ln -sfn /usr/local/php-7.1/bin/php /usr/bin/php && \
118 ln -sfn /usr/local/php-7.1/bin/php-config /usr/bin/php-config && \
119 ln -sfn /usr/local/php-7.1/bin/phpize /usr/bin/phpize && \