diff --git a/Dockerfile.ruby-2.3-git-2.7-phantomjs-2.1-node-7.1 b/Dockerfile.ruby-2.3-git-2.7-phantomjs-2.1-node-7.1 new file mode 100644 index 0000000..184e690 --- /dev/null +++ b/Dockerfile.ruby-2.3-git-2.7-phantomjs-2.1-node-7.1 @@ -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 \ No newline at end of file diff --git a/scripts/install-node b/scripts/install-node new file mode 100755 index 0000000..302d84f --- /dev/null +++ b/scripts/install-node @@ -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 \ No newline at end of file