Skip to content

Commit

Permalink
Add nodejs LTS 4.x Dockerfile for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
JayH5 committed Feb 26, 2016
1 parent bc2dcf8 commit 17fddb9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions node_4.x.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM praekeltfoundation/vumi
MAINTAINER Praekelt Foundation <dev@praekeltfoundation.org>

# Install nodejs 4.x LTS release
RUN apt-get-install.sh apt-transport-https curl && \
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key \
| apt-key add - && \
echo "deb https://deb.nodesource.com/node_4.x jessie main" \
> /etc/apt/sources.list.d/nodesource.list && \
apt-get-purge.sh curl
ENV NODEJS_VERSION "4.3.1"
RUN apt-get-install.sh nodejs=${NODEJS_VERSION}*

ENV VXSANDBOX_VERSION "0.6.0"
RUN pip install vxsandbox==$VXSANDBOX_VERSION

0 comments on commit 17fddb9

Please sign in to comment.