-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
273 lines (262 loc) · 7.96 KB
/
Dockerfile
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
FROM xutl/base-php:alpine-3.7
LABEL maintainer="xutongle@gmail.com"
ARG PHP_VERSION
# Environment settings
ENV PHP_VERSION ${PHP_VERSION}
ENV PHP_TGZ_URL http://php.net/distributions/php-${PHP_VERSION}.tar.gz
ENV PHP_INI_DIR=/usr/local/etc \
PATH=/root/.composer/vendor/bin:$PATH \
TERM=linux \
COMPOSER_ALLOW_SUPERUSER=1
# Apply stack smash protection to functions using local buffers and alloca()
# Make PHP's main executable position-independent (improves ASLR security mechanism, and has no performance impact on x86_64)
# Enable optimization (-O2)
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
RUN set -x \
&& apk add --no-cache libmcrypt
RUN set -xe \
&& buildDeps=" \
coreutils \
curl-dev \
libedit-dev \
libressl-dev \
libxml2-dev \
sqlite-dev \
gettext-dev \
bzip2-dev \
libjpeg-turbo-dev \
libpng-dev \
freetype-dev \
icu-dev \
gmp-dev \
tidyhtml-dev \
libxslt-dev \
libzip-dev \
" \
\
# && echo -e "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.7/main\nhttps://mirrors.tuna.tsinghua.edu.cn/alpine/v3.7/community" > /etc/apk/repositories \
&& apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS \
$buildDeps \
libmcrypt-dev \
\
&& export CFLAGS="$PHP_CFLAGS" \
CPPFLAGS="$PHP_CPPFLAGS" \
LDFLAGS="$PHP_LDFLAGS" \
&& cd /tmp \
&& curl -fSL ${PHP_TGZ_URL} -o php-${PHP_VERSION}.tar.gz \
&& tar zxf php-${PHP_VERSION}.tar.gz \
&& rm -f php-${PHP_VERSION}.tar.gz \
&& cd /tmp/php-${PHP_VERSION} \
&& sed -i 's/buffio.h/tidybuffio.h/' ext/tidy/*.c \
&& ./configure \
--prefix=/usr/local \
--libdir=/usr/local/lib64 \
--with-config-file-path=${PHP_INI_DIR} \
--with-config-file-scan-dir=${PHP_INI_DIR}/php \
--with-libxml-dir \
--with-openssl \
--with-kerberos \
--with-zlib \
--with-curl \
--with-bz2 \
--with-png-dir \
--with-gd \
--with-jpeg-dir \
--with-libzip \
--with-xmlrpc \
--with-libedit \
--with-iconv-dir=/usr \
--with-xsl \
--with-gmp \
--with-tidy \
--with-pcre-dir \
--with-readline \
--with-pcre-regex \
--with-pcre-jit \
--with-freetype-dir \
--with-zlib-dir \
--without-pear \
--with-mcrypt \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-pdo-sqlite \
--with-sqlite3 \
--with-mhash \
--with-gettext \
--with-libdir=lib64 \
--enable-bcmath \
--enable-calendar \
--enable-exif \
--disable-cgi \
--enable-ftp \
--enable-gd-native-ttf \
--enable-mbstring \
--enable-mbregex \
--enable-shmop \
--enable-soap \
--enable-sockets \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--enable-zip \
--enable-xml \
--disable-rpath \
--enable-inline-optimization \
--enable-pcntl \
--enable-fileinfo \
--enable-intl \
--enable-opcache \
--enable-cli \
--enable-fpm \
&& make ZEND_EXTRA_LIBS='-liconv' \
&& make install \
&& rm -rf /tmp/php-${PHP_VERSION} \
&& mkdir -p ${PHP_INI_DIR}/php \
&& runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \
| tr ',' '\n' \
| sort -u \
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
)" \
&& apk add --no-cache --virtual .php-rundeps $runDeps \
&& apk del .build-deps
RUN set -xe \
&& apk add --no-cache \
libmemcached \
libevent \
yaml \
nghttp2 \
cyrus-sasl \
zlib \
&& buildDeps=" \
libmemcached-dev \
libevent-dev \
yaml-dev \
nghttp2-dev \
libressl-dev \
cyrus-sasl-dev \
zlib-dev \
" \
\
&& apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS \
$buildDeps \
\
&& msgpackVersion=2.0.2 \
igbinaryVersion=2.0.5 \
memcachedVersion=3.0.4 \
redisVersion=3.1.6 \
yamlVersion=2.0.2 \
yaconfVersion=1.0.7 \
swooleVersion=2.1.1 \
&& cd /tmp \
&& curl -fSL http://pecl.php.net/get/msgpack-${msgpackVersion}.tgz -o msgpack-${msgpackVersion}.tgz \
&& tar zxf msgpack-${msgpackVersion}.tgz \
&& rm -rf msgpack-${msgpackVersion}.tgz \
&& cd msgpack-${msgpackVersion} \
&& phpize \
&& ./configure \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/msgpack-${msgpackVersion} \
# && echo "extension=msgpack.so" >> ${PHP_INI_DIR}/php/msgpack.ini \
\
&& cd /tmp \
&& curl -fSL http://pecl.php.net/get/igbinary-${igbinaryVersion}.tgz -o igbinary-${igbinaryVersion}.tgz \
&& tar zxf igbinary-${igbinaryVersion}.tgz \
&& rm -rf igbinary-${igbinaryVersion}.tgz \
&& cd igbinary-${igbinaryVersion} \
&& phpize \
&& ./configure \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/igbinary-${igbinaryVersion} \
# && echo "extension=igbinary.so" >> ${PHP_INI_DIR}/php/igbinary.ini \
\
&& cd /tmp \
&& curl -fSL http://pecl.php.net/get/memcached-${memcachedVersion}.tgz -o memcached-${memcachedVersion}.tgz \
&& tar zxf memcached-${memcachedVersion}.tgz \
&& rm -rf memcached-${memcachedVersion}.tgz \
&& cd memcached-${memcachedVersion} \
&& phpize \
&& ./configure --enable-memcached --enable-memcached-igbinary --enable-memcached-json --enable-memcached-msgpack --with-libdir=lib64 \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/memcached-${memcachedVersion} \
# && echo "extension=memcached.so" >> ${PHP_INI_DIR}/php/memcached.ini \
\
&& cd /tmp \
&& curl -fSL http://pecl.php.net/get/redis-${redisVersion}.tgz -o redis-${redisVersion}.tgz \
&& tar zxf redis-${redisVersion}.tgz \
&& rm -rf redis-${redisVersion}.tgz \
&& cd redis-${redisVersion} \
&& phpize \
&& ./configure --enable-redis --enable-redis-igbinary \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/redis-${redisVersion} \
# && echo "extension=redis.so" >> ${PHP_INI_DIR}/php/redis.ini \
\
&& cd /tmp \
&& curl -fSL http://pecl.php.net/get/yaml-${yamlVersion}.tgz -o yaml-${yamlVersion}.tgz \
&& tar zxf yaml-${yamlVersion}.tgz \
&& rm -rf yaml-${yamlVersion}.tgz \
&& cd yaml-${yamlVersion} \
&& phpize \
&& ./configure \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/yaml-${yamlVersion} \
# && echo "extension=yaml.so" >> ${PHP_INI_DIR}/php/yaml.ini \
\
&& cd /tmp \
&& curl -fSL http://pecl.php.net/get/yaconf-${yaconfVersion}.tgz -o yaconf-${yaconfVersion}.tgz \
&& tar zxf yaconf-${yaconfVersion}.tgz \
&& rm -rf yaconf-${yaconfVersion}.tgz \
&& cd yaconf-${yaconfVersion} \
&& phpize \
&& ./configure \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/yaconf-${yaconfVersion} \
&& mkdir -p /usr/local/etc/yaconf \
# && echo "extension=yaconf.so" >> ${PHP_INI_DIR}/php/yaconf.ini \
\
&& cd /tmp \
&& curl -fSL https://github.com/redis/hiredis/archive/v0.13.3.tar.gz -o hiredis-0.13.3.tar.gz \
&& tar zxf hiredis-0.13.3.tar.gz \
&& rm -rf hiredis-0.13.3.tar.gz \
&& cd hiredis-0.13.3 \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/hiredis-0.13.3 \
\
&& cd /tmp \
&& curl -fSL http://pecl.php.net/get/swoole-${swooleVersion}.tgz -o swoole-${swooleVersion}.tgz \
&& tar zxf swoole-${swooleVersion}.tgz \
&& rm -rf swoole-${swooleVersion}.tgz \
&& cd swoole-${swooleVersion} \
&& phpize \
&& ./configure --enable-http2 --enable-openssl --enable-sockets --enable-mysqlnd --enable-async-redis \
&& make -j "$(nproc)" \
&& make install \
&& rm -rf /tmp/swoole-${swooleVersion} \
# && echo "extension=swoole.so" >> ${PHP_INI_DIR}/php/swoole.ini \
&& apk del .build-deps
# Add configuration files
COPY image-files/ /
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
&& php composer-setup.php --install-dir=/usr/local/bin --filename=composer.phar \
&& php -r "unlink('composer-setup.php');" \
&& composer global require hirak/prestissimo --optimize-autoloader \
&& composer global dumpautoload --optimize \
&& composer clear-cache
ENTRYPOINT ["docker-entrypoint"]
CMD ["php-fpm"]