Sign inSign up

machines/node

By machines

Updated about 9 years ago

node 5.6.0 on ubuntu 16.04

Image
Languages & frameworks
Integration & delivery
0

1.9K

machines/node repository overview

Purpose

I'm using this as part of the CI process to build and test node projects using gitlab ci

Dockerfile


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/*

Tag summary

Content type

Image

Digest

Size

68 MB

Last updated

about 9 years ago

docker pull machines/node