Merge branch 'Dockerfile-ruby-2-3-git-2-7-phantomjs-2-1-node-7-1' into 'master'

Dockerfile.ruby-2.3-git-2.7-phantomjs-2.1-node-7.1

`ruby:2.3`

`git:2.7`

`phantomjs:2.1`

`node:7.1`

See merge request !17
This commit is contained in:
Kamil Trzciński 2016-11-25 09:40:54 +00:00
commit 0bfb3e675f
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,11 @@
FROM ruby:2.3
ADD / /
RUN /scripts/install-essentials
RUN /scripts/install-phantomjs 2.1.1
RUN /scripts/install-node
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

6
scripts/install-node Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
set -xeo pipefail
curl --silent --location https://deb.nodesource.com/setup_7.x | bash -
apt-get install -y nodejs