Light Docker image with Node.js and auxiliary commands for running CI/CD.
Commands available in the image:
gitbashnode(version 24)npmpnpmbunvoltaopenssh, e.g./usr/sbin/sshdopenjdk(version 25), e.g.java --version
The image is based on the Debian OS (trixie).
You can check all existing tags in one of the following docker-registries:
| Registry | Image |
|---|---|
| [Docker Hub][docker-hub] | skipero/neat-ci |
|
Supported architectures:
- linux/amd64
latest1
For example:
$ docker run --rm \
--volume "$(pwd):/app" \
--workdir "/app" \
--user "$(id -u):$(id -g)" \
skipero/neat-ci:latest \
npm ciOr using with docker-compose.yml:
services:
node:
image: skipero/neat-ci:1
volumes:
- ./src:/app:rw
working_dir: /app
command: []SSH into container with username:password admin:admin.