@@ -21,6 +21,8 @@ RUN apt-get install -y software-properties-common curl build-essential \
21
21
RUN curl -s https://packagecloud.io/gpg.key | apt-key add - && \
22
22
echo "deb http://packages.blackfire.io/debian any main" | tee /etc/apt/sources.list.d/blackfire.list && \
23
23
curl --silent --location https://deb.nodesource.com/setup_6.x | bash - && \
24
+ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && \
25
+ echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list && \
24
26
apt-get update
25
27
26
28
# set the locale
@@ -74,8 +76,8 @@ RUN phpenmod mcrypt && \
74
76
mkdir -p /run/php/ && chown -Rf www-data.www-data /run/php
75
77
76
78
# install sqlite
77
- RUN apt-get install -y --force-yes sqlite3 libsqlite3-dev
78
- RUN apt-get install -y --force-yes redis-server
79
+ RUN apt-get install -y --force-yes sqlite3 libsqlite3-dev
80
+ RUN apt-get install -y --force-yes redis-server
79
81
RUN apt-get install -y --force-yes postgresql postgresql-contrib
80
82
81
83
# install mysql
@@ -113,9 +115,6 @@ RUN /usr/bin/npm install -g gulp
113
115
# install bower
114
116
RUN /usr/bin/npm install -g bower
115
117
116
- # install redis
117
- RUN apt-get install -y redis-server
118
-
119
118
# install blackfire
120
119
RUN apt-get install -y blackfire-agent blackfire-php
121
120
@@ -131,6 +130,9 @@ RUN apt-get install -y supervisor && \
131
130
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
132
131
VOLUME ["/var/log/supervisor" ]
133
132
133
+ # install yarn
134
+ RUN apt-get install -y yarn
135
+
134
136
# clean up our mess
135
137
RUN apt-get remove --purge -y software-properties-common && \
136
138
apt-get autoremove -y && \
0 commit comments