-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDockerfile
More file actions
91 lines (88 loc) · 2.47 KB
/
Copy pathDockerfile
File metadata and controls
91 lines (88 loc) · 2.47 KB
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
FROM ubuntu:16.04
MAINTAINER hackathon@hypernode.com
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --allow-downgrades --allow-remove-essential --allow-change-held-packages --allow-unauthenticated --no-install-recommends \
software-properties-common \
python-software-properties
RUN printf 'deb http://ubuntu.byte.nl xenial main hypernode percona php\ndeb http://security.ubuntu.com/ubuntu xenial-security main restricted universe multiverse\n' > /etc/apt/sources.list
RUN apt-get update && apt-get install -y --allow-downgrades --allow-remove-essential --allow-change-held-packages --allow-unauthenticated --no-install-recommends \
blackfire-php \
php-common \
php-ext-snappy \
php-hypernode \
php-igbinary \
php-imagick \
php-ioncube \
php-memcache \
php-redis \
php7.0 \
php7.0-bcmath \
php7.0-cli \
php7.0-common \
php7.0-curl \
#php7.0-fpm \
php7.0-gd \
php7.0-imap \
php7.0-intl \
php7.0-json \
php7.0-ldap \
php7.0-mbstring \
php7.0-mcrypt \
php7.0-mysql \
php7.0-odbc \
php7.0-opcache \
php7.0-pgsql \
php7.0-pspell \
php7.0-readline \
php7.0-soap \
php7.0-sybase \
php7.0-tidy \
php7.0-xml \
php7.0-xmlrpc \
php7.0-zip \
php7.1 \
php7.1-bcmath \
php7.1-cli \
php7.1-common \
php7.1-curl \
#php7.1-fpm \
php7.1-gd \
php7.1-imap \
php7.1-intl \
php7.1-json \
php7.1-ldap \
php7.1-mbstring \
php7.1-mcrypt \
php7.1-mysql \
php7.1-odbc \
php7.1-opcache \
php7.1-pgsql \
php7.1-pspell \
php7.1-readline \
php7.1-soap \
php7.1-sybase \
php7.1-tidy \
php7.1-xml \
php7.1-xmlrpc \
php7.1-zip \
mysql-common \
percona-server-client-5.6 \
percona-server-server-5.6 \
python \
python-mysqldb \
python-pip \
curl \
rsync \
zip \
tar \
nodejs \
git \
openssh-client \
openssh-server \
&& curl --silent --show-error https://getcomposer.org/installer | php \
&& mv /composer.phar /usr/local/bin/composer \
&& ln -s /usr/local/bin/composer /usr/bin/composer \
&& curl --silent -LO https://deployer.org/deployer.phar \
&& mv deployer.phar /usr/local/bin/dep \
&& chmod +x /usr/local/bin/dep \
&& npm install -g yarn