-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile-debian.gtpl
59 lines (58 loc) · 1.54 KB
/
Dockerfile-debian.gtpl
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
FROM php:{{ env.from }}
RUN set -eux; \
\
savedAptMark="$(apt-mark showmanual)"; \
apt-get update; \
apt-get install -y --no-install-recommends \
libfreetype6-dev \
libgmp-dev \
libicu-dev \
libjpeg62-turbo-dev \
libpng-dev \
libpq-dev \
libzip-dev \
$PHPIZE_DEPS \
; \
docker-php-ext-configure gd \
{{ if env.version == "7.3" then ( -}}
--with-freetype-dir=/usr \
--with-jpeg-dir=/usr \
{{ ) else ( -}}
--with-freetype=/usr/include/ \
--with-jpeg=/usr/include/ \
{{ ) end -}}
; \
docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \
bcmath \
gd \
gmp \
intl \
opcache \
pdo_mysql \
pdo_pgsql \
pcntl \
sockets \
zip \
; \
\
pecl update-channels; \
pecl install \
redis \
xdebug \
; \
docker-php-ext-enable redis; \
rm -rf /tmp/pear ~/.pearrc; \
apt-mark auto '.*' > /dev/null; \
[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \
find /usr/local -type f -executable -exec ldd '{}' ';' \
| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \
| sort -u \
| xargs -r dpkg-query --search \
| cut -d: -f1 \
| sort -u \
| xargs -r apt-mark manual \
; \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \
rm -rf /var/lib/apt/lists/*; \
\
php --version