equal
deleted
inserted
replaced
|
1 FROM php:fpm-alpine |
|
2 |
|
3 RUN apk add --update \ |
|
4 autoconf \ |
|
5 g++ \ |
|
6 libtool \ |
|
7 make \ |
|
8 && docker-php-ext-install mbstring \ |
|
9 && docker-php-ext-install opcache \ |
|
10 && apk add --update icu-dev \ |
|
11 && docker-php-ext-install intl \ |
|
12 # && apk del \ |
|
13 # autoconf \ |
|
14 # binutils \ |
|
15 # binutils-libs \ |
|
16 # expat \ |
|
17 # file \ |
|
18 # g++ \ |
|
19 # gcc \ |
|
20 # gdbm \ |
|
21 # gmp \ |
|
22 # isl \ |
|
23 # libatomic \ |
|
24 # libbz2 \ |
|
25 # libc-dev \ |
|
26 # libffi \ |
|
27 # libgcc \ |
|
28 # libgomp \ |
|
29 # libldap \ |
|
30 # libltdl \ |
|
31 # libmagic \ |
|
32 # libsasl \ |
|
33 # libstdc++ \ |
|
34 # libtool \ |
|
35 # m4 \ |
|
36 # make \ |
|
37 # mpc1 \ |
|
38 # mpfr3 \ |
|
39 # musl-dev \ |
|
40 # perl \ |
|
41 # pkgconf \ |
|
42 # pkgconfig \ |
|
43 # python \ |
|
44 # re2c \ |
|
45 # readline \ |
|
46 # sqlite-libs \ |
|
47 # zlib-dev \ |
|
48 && rm -rf /tmp/* /var/cache/apk/* |