summaryrefslogtreecommitdiffstats
path: root/php-7.4-opt/build.Dockerfile
blob: 8d0eeec4f005278f63a4079b2b214090b257fe67 (plain)
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
FROM debian/eol:wheezy

ENV MAIN_PREFIX /opt/php-7.4
ENV DEP_PREFIX $MAIN_PREFIX/dependencies
ENV PACKAGE_NAME php-7.4.12-opt

RUN apt-get update \
  && apt-get install -y \
      curl \
      build-essential \
      net-tools \
      autoconf \
      pkg-config \
      wget \
      libxml2-dev \
      libkrb5-dev \
      libssl-dev \
      libsqlite3-dev \
      libbz2-dev \
      libcurl4-openssl-dev \
      libpng12-dev libjpeg8-dev \
      libfreetype6-dev \
      libc-client-dev \
      libpq-dev \
      libxslt1-dev \
      checkinstall \
      zlib1g-dev \
      libtool \
      bison \
      libgmp-dev \
      libtidy-dev \
      libgd2-xpm-dev \
      libmagickwand-dev \
      libmagickcore-dev
RUN wget https://cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz
RUN tar xzf cmake-2.8.12.1.tar.gz
RUN cd cmake-2.8.12.1 \
  && ./bootstrap \
  && make \
  && make install
RUN wget https://github.com/libjpeg-turbo/libjpeg-turbo/archive/2.0.6.tar.gz -O libjpeg-turbo-2.0.6.tar.gz
RUN tar xzf libjpeg-turbo-2.0.6.tar.gz
RUN cd libjpeg-turbo-2.0.6 \
  && mkdir build \
  && cd build \
  && cmake -DCMAKE_INSTALL_PREFIX=$DEP_PREFIX -DCMAKE_BUILD_TYPE=RELEASE -DENABLE_STATIC=FALSE -DCMAKE_INSTALL_DEFAULT_LIBDIR=lib .. \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-libjpeg-turbo --pkgversion 1
RUN ln -s /usr/lib/libc-client.a /usr/lib/x86_64-linux-gnu/libc-client.a
RUN wget https://web.mit.edu/kerberos/dist/krb5/1.17/krb5-1.17.2.tar.gz
RUN tar xzf krb5-1.17.2.tar.gz
RUN cd krb5-1.17.2/src \
  && ./configure --prefix=$DEP_PREFIX \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-krb5 --pkgversion 1
RUN wget https://github.com/unicode-org/icu/releases/download/release-50-2/icu4c-50_2-src.tgz
RUN tar xzf icu4c-50_2-src.tgz
RUN cd icu/source/ \
  && ./configure --prefix=$DEP_PREFIX \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-icu --pkgversion 1
RUN wget https://github.com/kkos/oniguruma/archive/v6.9.6.tar.gz
RUN tar xzf v6.9.6.tar.gz
RUN cd oniguruma-6.9.6 \
  && autoreconf -vfi \
  && ./configure --prefix=$DEP_PREFIX \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-oniguruma
RUN wget https://libzip.org/download/libzip-0.11.2.tar.gz
RUN tar xzf libzip-0.11.2.tar.gz
# in this case checkinstall only works after "make install"
RUN cd libzip-0.11.2 \
  && ./configure --prefix=$DEP_PREFIX \
  && make \
  && make install \
  && checkinstall -y --pkgname $PACKAGE_NAME-libzip
RUN wget https://github.com/libgd/libgd/releases/download/gd-2.1.1/libgd-2.1.1.tar.gz
RUN tar xzf libgd-2.1.1.tar.gz
RUN cd libgd-2.1.1 \
  && ./configure --prefix=$DEP_PREFIX \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-libgd
RUN curl https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz > libsodium-1.0.18.tar.gz
RUN tar xzf libsodium-1.0.18.tar.gz
RUN cd libsodium-1.0.18 \
  && ./configure --prefix=$DEP_PREFIX \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-libsodium
RUN wget https://www.php.net/distributions/php-7.4.12.tar.gz
RUN tar xzf php-7.4.12.tar.gz
RUN cd php-7.4.12 \
  && PKG_CONFIG_PATH=$DEP_PREFIX/lib/pkgconfig ./configure \
      --prefix=$MAIN_PREFIX \
      #--with-libdir=/lib/x86_64-linux-gnu \
      #--disable-rpath \
      --enable-static \
      --enable-bcmath \
      --enable-calendar \
      --enable-exif \
      --enable-fpm \
      --enable-ftp \
      --enable-gd \
      --enable-intl \
      --enable-mbstring \
      --enable-pcntl \
      --enable-pdo \
      --enable-shmop \
      --enable-soap \
      --enable-sockets \
      --enable-sysvsem \
      --enable-sysvshm \
      --enable-zip \
      --with-bz2 \
      --with-config-file-path=$MAIN_PREFIX/etc \
      --with-config-file-scan-dir=$MAIN_PREFIX/etc/conf.d \
      --with-curl \
      --with-external-gd \
      --with-freetype \
      --with-gettext \
      --with-gmp \
      --with-imap \
      --with-imap-ssl \
      --with-jpeg \
      --with-kerberos \
      --with-ldap=shared \
      --with-mhash \
      --with-mysql-sock=/var/run/mysqld/mysqld.sock \
      --with-mysqli \
      --with-openssl \
      --with-pdo-mysql \
      --with-pdo-sqlite \
      --with-pear \
      --with-sodium \
      --with-sqlite3 \
      --with-tidy \
      --with-xmlrpc \
      --with-xpm \
      --with-xsl \
      --with-zip \
      --with-zlib \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME
RUN cd /php-7.4.12/ext \
  && wget https://github.com/Imagick/imagick/archive/3.4.4.tar.gz \
  && tar xzf 3.4.4.tar.gz \
  && cd imagick-3.4.4 \
  && $MAIN_PREFIX/bin/phpize \
  && ./configure --with-php-config=$MAIN_PREFIX/bin/php-config \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-imagick
RUN cd /php-7.4.12/ext \
  && wget https://github.com/krakjoe/apcu/archive/v5.1.19.tar.gz \
  && tar xzf v5.1.19.tar.gz \
  && cd apcu-5.1.19 \
  && $MAIN_PREFIX/bin/phpize \
  && ./configure --with-php-config=$MAIN_PREFIX/bin/php-config \
  && make \
  && checkinstall -y --pkgname $PACKAGE_NAME-apcu