• Home
  • Raw
  • Download

Lines Matching refs:php

26 # Apt source for php
27 …N echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu trusty main" | tee /etc/apt/sources.list.d/…
143 RUN wget http://am1.php.net/get/php-5.5.38.tar.bz2/from/this/mirror
144 RUN mv mirror php-5.5.38.tar.bz2
145 RUN tar -xvf php-5.5.38.tar.bz2
146 RUN cd php-5.5.38 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-5.5-zts && \
148 RUN cd php-5.5.38 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-5.5 && \
151 RUN wget http://am1.php.net/get/php-5.6.30.tar.bz2/from/this/mirror
152 RUN mv mirror php-5.6.30.tar.bz2
153 RUN tar -xvf php-5.6.30.tar.bz2
154 RUN cd php-5.6.30 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-5.6-zts && \
156 RUN cd php-5.6.30 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-5.6 && \
159 RUN wget http://am1.php.net/get/php-7.0.18.tar.bz2/from/this/mirror
160 RUN mv mirror php-7.0.18.tar.bz2
161 RUN tar -xvf php-7.0.18.tar.bz2
162 RUN cd php-7.0.18 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-7.0-zts && \
164 RUN cd php-7.0.18 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-7.0 && \
167 RUN wget http://am1.php.net/get/php-7.1.4.tar.bz2/from/this/mirror
168 RUN mv mirror php-7.1.4.tar.bz2
169 RUN tar -xvf php-7.1.4.tar.bz2
170 RUN cd php-7.1.4 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-7.1-zts && \
172 RUN cd php-7.1.4 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-7.1 && \
175 RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
176 RUN php composer-setup.php
178 RUN php -r "unlink('composer-setup.php');"
186 cd php && \
187 ln -sfn /usr/local/php-5.5/bin/php /usr/bin/php && \
188 ln -sfn /usr/local/php-5.5/bin/php-config /usr/bin/php-config && \
189 ln -sfn /usr/local/php-5.5/bin/phpize /usr/bin/phpize && \
192 ln -sfn /usr/local/php-5.6/bin/php /usr/bin/php && \
193 ln -sfn /usr/local/php-5.6/bin/php-config /usr/bin/php-config && \
194 ln -sfn /usr/local/php-5.6/bin/phpize /usr/bin/phpize && \
197 ln -sfn /usr/local/php-7.0/bin/php /usr/bin/php && \
198 ln -sfn /usr/local/php-7.0/bin/php-config /usr/bin/php-config && \
199 ln -sfn /usr/local/php-7.0/bin/phpize /usr/bin/phpize && \
202 ln -sfn /usr/local/php-7.1/bin/php /usr/bin/php && \
203 ln -sfn /usr/local/php-7.1/bin/php-config /usr/bin/php-config && \
204 ln -sfn /usr/local/php-7.1/bin/phpize /usr/bin/phpize && \