-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapache-php.dockerfile
67 lines (65 loc) · 1.36 KB
/
apache-php.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
FROM php:7.2-apache
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
librabbitmq-dev \
libssh-dev \
libpng-dev \
libmagickwand-dev \
libc-client-dev \
libkrb5-dev \
zlib1g-dev \
libz-dev \
libmemcached-dev \
libmemcached11 \
libmemcachedutil2 \
build-essential \
memcached \
libcurl4-openssl-dev \
libssh2-1-dev \
libtidy-dev \
libxslt-dev \
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
&& docker-php-ext-install \
bcmath \
sockets \
calendar \
exif \
gd \
gettext \
imap \
intl \
mysqli \
pcntl \
pdo_mysql \
shmop \
soap \
sysvmsg \
sysvsem \
sysvshm \
tidy \
wddx \
xsl \
opcache \
zip \
&& pecl install \
amqp \
igbinary \
imagick \
memcache \
memcached \
msgpack \
propro \
raphf \
ssh2-1.1.2 \
&& docker-php-ext-enable \
amqp \
igbinary \
imagick \
memcache \
memcached \
msgpack \
raphf \
propro \
ssh2 \
&& pecl install pecl_http && docker-php-ext-enable http
EXPOSE 8080