File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM debian:jessie
2+ MAINTAINER e.marchenkov@richbrains.net
3+
4+ USER root
5+ RUN apt-get --yes --force-yes update \
6+ && apt-get install --yes --force-yes curl \
7+ && echo "deb http://packages.dotdeb.org jessie all" > /etc/apt/sources.list.d/dotdeb.list \
8+ && curl -sS https://www.dotdeb.org/dotdeb.gpg | apt-key add - \
9+ && apt-get update -qq -y \
10+ && apt-get --yes --force-yes install php7.0-cli php7.0-apcu php7.0-apcu-bc php7.0-curl php7.0-json php7.0-mcrypt php7.0-opcache php7.0-readline php7.0-mysql php7.0-xml php7.0-zip \
11+ && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
12+
13+ # Install Node.js
14+ RUN curl -sL https://deb.nodesource.com/setup_4.x | bash - && \
15+ apt-get install -y nodejs git &&\
16+ npm install -g bower &&\
17+ npm install -g grunt
Original file line number Diff line number Diff line change 1+ # php7-nodejs-npm-grunt-gulp
You can’t perform that action at this time.
0 commit comments