Skip to content

Commit 931f2ba

Browse files
author
Evgeny Marchenkov
committed
first commit
0 parents  commit 931f2ba

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# php7-nodejs-npm-grunt-gulp

0 commit comments

Comments
 (0)