CI Node image with full icu
100K+
CI Node image with node, the full-icu npm package and other apk packages like jq and rsync.
docker run -it minddocdev/node-alpine-ci
docker pullYou can pull the image from Docker Hub using the docker pull minddocdev/node-alpine-ci command. We are using automated build set up.
docker pull minddocdev/node-alpine-ci
docker runTo jump into the container's bash shell, run docker run -it minddocdev/node-alpine-ci.
If you want to load a volume, you can execute:
$ docker run --rm --workdir /app --volume "$PWD:/app" --interactive --tty minddocdev/node-alpine-ci /bin/bash
## Or using shorthand flags
$ docker run -w /app -v "$PWD:/app" -it minddocdev/node-alpine-ci /bin/bash
## Install dependencies and run tests with npm
root@c0ff3e:/app# npm i && npm t
It's also likely that you don't want to jump into bash, because you understand already how things work and you just want to execute your e2e test suite.
To run the tests using one npm script (for example, if you have npm install in your pretest script), run:
docker run --rm -w /app -v "$PWD:/app" -t minddocdev/node-alpine-ci npm test
docker buildYou can also build the image yourself. Checkout the repository
$ git clone https://github.com/minddocdev/node-alpine-ci
$ cd node-alpine-ci
$ docker build -t minddocdev/node-alpine-ci:latest .
$ docker images minddocdev/node-alpine-ci
Content type
Image
Digest
Size
100.7 MB
Last updated
almost 5 years ago
docker pull minddocdev/node-alpine-ci