node 5.6.0 on ubuntu 16.04
1.9K
I'm using this as part of the CI process to build and test node projects using gitlab ci
FROM ubuntu:16.04
MAINTAINER [email protected]
ENV NODE_VERSION 5.6.0
RUN apt-get update -y && \
apt-get install -y curl openssh-client && \
curl -SLO "http://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" && \
tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 && \
rm "node-v$NODE_VERSION-linux-x64.tar.gz" && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Content type
Image
Digest
Size
68 MB
Last updated
about 9 years ago
docker pull machines/node