1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
FROM kpengboy/trisquel
RUN apt-get update -qq && apt-get install -y \
autoconf \
build-essential \
curl
# PHP-5.4.9
RUN curl -so php-5.4.9.tar.bz2 \
http://museum.php.net/php5/php-5.4.9.tar.bz2
RUN tar xjf php-5.4.9.tar.bz2
RUN cd php-5.4.9 && \
./configure --prefix=/opt/php-5.4.9 \
--enable-debug \
--disable-all \
--disable-cgi \
--disable-dom \
--disable-libxml \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
--without-pear && \
make install
RUN cd .. && rm -rf php-5.4.9*
RUN strip /opt/php-5.4.9/bin/php
# PHP-5.5.38
RUN curl -so php-5.5.38.tar.bz2 \
http://www.php.net/distributions/php-5.5.38.tar.bz2
RUN tar xjf php-5.5.38.tar.bz2
RUN cd php-5.5.38 && \
./configure --prefix=/opt/php-5.5.38 \
--enable-debug \
--disable-all \
--disable-cgi \
--disable-dom \
--disable-libxml \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
--without-pear && \
make install
RUN cd .. && rm -rf php-5.5.38*
RUN strip /opt/php-5.5.38/bin/php
# PHP-5.6.28
RUN curl -so php-5.6.28.tar.bz2 \
http://www.php.net/distributions/php-5.6.28.tar.bz2
RUN tar xjf php-5.6.28.tar.bz2
RUN cd php-5.6.28 && \
./configure --prefix=/opt/php-5.6.28 \
--enable-debug \
--disable-all \
--disable-cgi \
--disable-dom \
--disable-libxml \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
--without-pear && \
make install
RUN cd .. && rm -rf php-5.6.28*
RUN strip /opt/php-5.6.28/bin/php
# PHP-7.0.13
RUN curl -so php-7.0.13.tar.bz2 \
http://www.php.net/distributions/php-7.0.13.tar.bz2
RUN tar xjf php-7.0.13.tar.bz2
RUN cd php-7.0.13 && \
./configure --prefix=/opt/php-7.0.13 \
--enable-debug \
--disable-all \
--disable-cgi \
--disable-dom \
--disable-libxml \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
--without-pear && \
make install
RUN cd .. && rm -rf php-7.0.13*
RUN rm /opt/php-7.0.13/bin/phpdbg
RUN strip /opt/php-7.0.13/bin/php
# PHP-7.1.0
RUN curl -so php-7.1.0.tar.bz2 \
http://www.php.net/distributions/php-7.1.0.tar.bz2
RUN tar xjf php-7.1.0.tar.bz2
RUN cd php-7.1.0 && \
./configure --prefix=/opt/php-7.1.0 \
--enable-debug \
--disable-all \
--disable-cgi \
--disable-dom \
--disable-libxml \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
--without-pear && \
make install
RUN cd .. && rm -rf php-7.1.0*
RUN rm /opt/php-7.1.0/bin/phpdbg
RUN strip /opt/php-7.1.0/bin/php
# GEOS-3.4.3
RUN curl -so geos-3.4.3.tar.bz2 \
http://download.osgeo.org/geos/geos-3.4.3.tar.bz2
RUN tar xjf geos-3.4.3.tar.bz2
RUN cd geos-3.4.3 && \
./configure --prefix=/opt/geos-3.4.3 \
--disable-swig \
--disable-static \
&& make install-strip
RUN cd .. && rm -rf geos-3.4.3*
# GEOS-3.5.1
RUN curl -so geos-3.5.1.tar.bz2 \
http://download.osgeo.org/geos/geos-3.5.1.tar.bz2
RUN tar xjf geos-3.5.1.tar.bz2
RUN cd geos-3.5.1 && \
./configure --prefix=/opt/geos-3.5.1 \
--disable-swig \
--disable-static \
&& make install-strip
RUN cd .. && rm -rf geos-3.5.1*
# GEOS-3.6.0
RUN curl -so geos-3.6.0.tar.bz2 \
http://download.osgeo.org/geos/geos-3.6.0.tar.bz2
RUN tar xjf geos-3.6.0.tar.bz2
RUN cd geos-3.6.0 && \
./configure --prefix=/opt/geos-3.6.0 \
--disable-swig \
--disable-static \
&& make install-strip
RUN cd .. && rm -rf geos-3.6.0*
|