Skip to content

Node Container Image

Slim Alpine-based Node.js runtime for running scripts, CLIs, or small build steps.

Features

  • Installs both node and npm via Alpine packages, keeping the image lean and fast to pull.
  • Bundles Bash and sets /app as the working directory for predictable scripting.
  • Ships with reproducible digested tags so the same version is used locally and in CI.

Usage

Pull the image

podman pull registry.gitlab.com/niclas-zone/ctr/node:latest

Run Node.js commands

podman run --rm -it \
  -v $(pwd):/app \
  -w /app \
  registry.gitlab.com/niclas-zone/ctr/node:latest \
  node --version

Author

Niclas Heinz

Contributing

Contributions are welcome! Please open an issue or submit a merge request if you have suggestions or improvements.

License

This project is licensed under the MIT License. Refer to LICENSE for details.