@@ -14,7 +14,6 @@ RUN yum -y install openssl-devel
14
14
RUN yum -y install wget
15
15
RUN yum -y install freetype-devel
16
16
RUN yum -y install libjpeg-devel
17
- RUN yum -y install freetds-devel
18
17
RUN yum -y install unixODBC-devel
19
18
RUN yum -y install libpng-devel
20
19
RUN yum -y install aspell-devel
@@ -25,15 +24,20 @@ RUN yum -y install curl-devel
25
24
RUN yum -y install gdbm-devel
26
25
RUN yum -y install libicu-devel
27
26
RUN yum -y install openldap-devel
28
- RUN yum -y install libmcrypt -devel
27
+ RUN yum -y install libtomcrypt -devel
29
28
RUN yum -y install libxslt-devel
30
29
RUN yum -y install libzip-devel
31
30
RUN yum -y install libedit-devel
32
31
RUN yum -y install postgresql-devel
33
32
RUN yum -y install gcc-c++
33
+ RUN yum -y install libxml2-devel
34
34
35
35
36
36
37
+ RUN cd /data/soft/ && wget http://ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz
38
+ RUN cd /data/soft/ && tar zxvf freetds-stable.tgz
39
+ RUN cd /data/soft/freetds-* && ./configure --prefix=/usr --sysconfdir=/etc --with-tdsver=0.91 --enable-msdblib && make && make install
40
+
37
41
RUN cd /data/soft/ && wget http://mirrors.tuna.tsinghua.edu.cn/epel/epel-release-latest-7.noarch.rpm
38
42
RUN cd /data/soft/ && rpm -ivh epel-release-latest-7.noarch.rpm
39
43
RUN yum -y install supervisor
@@ -42,20 +46,22 @@ RUN cd /data/soft/ && wget http://nih.at/libzip/libzip-1.2.0.tar.gz
42
46
RUN cd /data/soft/ && tar zxvf libzip-1.2.0.tar.gz && cd libzip-1.2.0 && ./configure && make && make install
43
47
RUN cp /usr/local/lib/libzip/include/zipconf.h /usr/local/include/zipconf.h
44
48
45
- RUN ln -s /usr/lib64/libsybdb.so /usr/lib /lib/libsybdb.so
49
+ # RUN ln -s /usr/lib64/libsybdb.so /usr/lib/libsybdb.so
46
50
# RUN ln -s /usr/lib64/libgdbm.so /usr/lib/libgdbm.so
47
51
RUN ln -s /usr/lib64/libldap.so /usr/lib/libldap.so
48
52
RUN ln -s /usr/lib64/liblber* /usr/lib/
49
53
50
54
51
- RUN cd /data/soft/ && git clone http://.com/phpcoro/php-fpm-coro.git
55
+ # RUN cd /data/soft/ && git clone https://.com/phpcoro/php-fpm-coro.git
56
+ ADD ./ /data/soft/php-fpm-coro
57
+
52
58
RUN cd /data/soft/ && git clone http://.com/libevent/libevent.git
53
- RUN cd /data/soft/ && git clone http://.com/GNOME/libxml2.git
59
+ # RUN cd /data/soft/ && git clone http://.com/GNOME/libxml2.git
54
60
RUN cd /data/soft/ && wget http://nginx.org/download/nginx-1.14.0.tar.gz
55
61
RUN cd /data/soft/ && tar zxf nginx-1.14.0.tar.gz
56
62
57
63
RUN cd /data/soft/libevent && sh autogen.sh && ./configure && make && make install
58
- RUN cd /data/soft/libxml2 && sh autogen.sh && ./configure && make && make install
64
+ # RUN cd /data/soft/libxml2 && sh autogen.sh && ./configure && make && make install
59
65
RUN cd /data/soft/php-fpm-coro && sh buildconf --force && ./configure --prefix=/usr/local/php7 --enable-fpm --enable-coro_http --enable-mysqlnd --enable-zip --with-pdo-mysql --with-openssl --enable-maintainer-zts --enable-opcache-file --with-curl --enable-bcmath --enable-calendar --enable-dtrace --enable-exif --enable-ftp --enable-mbregex --enable-mbstring --enable-pcntl --enable-phpdbg --enable-phpdbg-webhelper --enable-shmop --enable-soap --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --with-bz2 --with-iconv --with-pic --with-xmlrpc --with-mhash --with-mysql-sockunixunix=/tmp/mysql.sock --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-kerberos --with-layout=GNU --with-mcrypt=/usr/include --with-gd --with-jpeg-dir=/usr/include --with-png-dir=/usr/include --with-webp-dir=/usr/include --with-freetype-dir=/usr/include --with-icu-dir=/usr --with-pspell --with-xsl --with-libzip --enable-zip --with-zlib --with-pdo-dblib --with-pdo-odbc=unixODBC,/usr --with-unixODBC=/usr --with-libedit --enable-dba --with-ldap --with-ldap-sasl --with-pdo-pgsql --with-pgsql --with-gdbm --enable-intl && make && make install
60
66
RUN cd /data/soft/nginx-1.14.0 && ./configure && make && make install
61
67
0 commit comments