This repository contains the source for building various versions of the Node.JS application as a reproducible Docker image using source-to-image. Users can choose between RHEL and CentOS based builder images. The resulting image can be run using Docker.
For more information about using these images with OpenShift, please see the official OpenShift Documentation.
For more information about contributing, see the Contribution Guidelines. For more information about concepts used in these docker images, see the Landing page.
Node.JS versions currently provided are:
RHEL versions currently supported are:
- RHEL7
CentOS versions currently supported are:
- CentOS7
To build a Node.JS image, choose either the CentOS or RHEL based image:
-
RHEL based image
This image is available in Red Hat Container Registry. To download it run:
$ docker pull registry.access.redhat.com/rhscl/nodejs-6-rhel7
To build a RHEL based Node.JS image, you need to run the build on a properly subscribed RHEL machine.
$ git clone --recursive https://github.com/sclorg/s2i-nodejs-container.git $ cd s2i-nodejs-container $ git submodule update --init $ make build TARGET=rhel7 VERSIONS=6
-
CentOS based image
This image is available on DockerHub. To download it run:
$ docker pull centos/nodejs-6-centos7
To build a Node.JS image from scratch run:
$ git clone --recursive https://github.com/sclorg/s2i-nodejs-container.git $ cd s2i-nodejs-container $ git submodule update --init $ make build TARGET=centos7 VERSIONS=6
Notice: By omitting the VERSIONS
parameter, the build/test action will be performed
on all provided versions of Node.JS.
For information about usage of Dockerfile for NodeJS 4, see usage documentation. For information about usage of Dockerfile for NodeJS 6, see usage documentation.
This repository also provides a S2I test framework, which launches tests to check functionality of a simple Node.JS application built on top of the s2i-nodejs image.
Users can choose between testing a Node.JS test application based on a RHEL or CentOS image.
-
RHEL based image
To test a RHEL7 based Node.JS image, you need to run the test on a properly subscribed RHEL machine.
$ cd s2i-nodejs-container $ git submodule update --init $ make test TARGET=rhel7 VERSIONS=6
-
CentOS based image
$ cd s2i-nodejs-container $ git submodule update --init $ make test TARGET=centos7 VERSIONS=6
Notice: By omitting the VERSIONS
parameter, the build/test action will be performed
on all provided versions of Node.JS.