Last changed
docker pull cgr.dev/chainguard/node
Need access to a specific version? Contact us.
Get notified of upcoming product changes, critical vulnerability notifications and patches and more.
Sign InMinimal container image for running NodeJS apps
Chainguard Images are regularly-updated, minimal container images with low-to-zero CVEs.
This image is available on cgr.dev
:
Be sure to replace the ORGANIZATION
placeholder with the name used for your organization's private repository within the Chainguard registry.
Where possible, the Node Chainguard Image is built for compatibility with the Docker official image for Node.
The Node Chainguard Image runs as a nonroot user (node
) by default. A USER root
statement may be required before performing tasks requiring elevated permissions.
In this example, we'll write a .js
script that prints a message, then prints the message reversed. The script will use one dependency, the text-reverse
package. The script will optionally take one positional argument—if no argument is passed, a default message will be printed and reversed, otherwise the passed argument will be printed and reversed.
First, let's create a project structure for our example:
This creates the following folder structure and sets our working directory to the root node-reverse
folder:
Now let's create a package.json
file, which provides metadata about the project, including dependencies:
The above defines a package, linky_hello
, that depends on text-reverse
, and which whill run the code in bin/index.js
on npm run start
.
Let's create our application code now:
This application code first looks at any arguments passed to the script. If a positional argument is passed when the script is run, it will print that argument, then print its reverse. If no argument is passed, a default message will be printed and reversed.
Finally, let's create a Dockerfile
for our image build:
This Dockerfile
sets the file NODE_ENV
environment variable to production
, copies our package.json
and bin
directory, installs our dependency with npm install
, and runs our .js
script.
Build the image, tagging it node-reverse
:
Finally, run the container:
You should see the following output:
You can also pass an argument to the docker run node-reverse
command to change the output:
This should produce the following output:
In this example, we'll create an Express.js server that allows retrieval of a JSON-formatted list of animals and the addition of new animals via POST request.
First, create a folder for our example:
Create a package.json
file, which provides metadata about the project, including dependencies:
Next, add our server application code:
Finally, create a Dockerfile
for our image build:
Build the image:
Finally, run the server container:
You should see the following message:
Visit http://localhost:6069/animals to view the served JSON data.
You can post new data to the running application:
After posting, refresh the page on http://localhost:6069/animals to view the additional data.
If you have a Zendesk account (typically set up for you by your Customer Success Manager) you can reach out to Chainguard's Customer Success team through our Zendesk portal.
Chainguard Images are a collection of container images designed for security and minimalism.
Many Chainguard Images are distroless; they contain only an open-source application and its runtime dependencies. These images do not even contain a shell or package manager. Chainguard Images are built with Wolfi, our Linux undistro designed to produce container images that meet the requirements of a secure software supply chain.
The main features of Chainguard Images include:
-dev
VariantsAs mentioned previously, Chainguard’s distroless Images have no shell or package manager by default. This is great for security, but sometimes you need these things, especially in builder images. For those cases, most (but not all) Chainguard Images come paired with a -dev
variant which does include a shell and package manager.
Although the -dev
image variants have similar security features as their distroless versions, such as complete SBOMs and signatures, they feature additional software that is typically not necessary in production environments. The general recommendation is to use the -dev
variants only to build the application and then copy all application artifacts into a distroless image, which will result in a final container image that has a minimal attack surface and won’t allow package installations or logins.
That being said, it’s worth noting that -dev
variants of Chainguard Images are completely fine to run in production environments. After all, the -dev
variants are still more secure than many popular container images based on fully-featured operating systems such as Debian and Ubuntu since they carry less software, follow a more frequent patch cadence, and offer attestations for what they include.
To better understand how to work with Chainguard Images, we encourage you to visit Chainguard Academy, our documentation and education platform.
Chainguard Images contain software packages that are direct or transitive dependencies. The following licenses were found in the "latest" version of this image:
Apache-2.0
Artistic-2.0
BSD-2-Clause
GCC-exception-3.1
GPL-2.0-only
GPL-2.0-or-later
GPL-3.0-or-later
For a complete list of licenses, please refer to this Image's SBOM.
Software license agreementA FIPS validated version of this image is available for FedRAMP compliance. STIG is included with FIPS image.