https://github.com/stocard/dockerbase-node
https://github.com/stocard/dockerbase-node
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stocard/dockerbase-node
- Owner: Stocard
- Created: 2016-02-29T16:55:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-11-21T13:50:50.000Z (over 2 years ago)
- Last Synced: 2025-07-04T10:06:47.547Z (12 months ago)
- Language: Dockerfile
- Size: 61.5 KB
- Stars: 1
- Watchers: 22
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dockerbase-node
Provides a base image to run node.js applications in: `stocard/node:X.Y`
You can try it out by: `docker run -it stocard/node:12 node`
Current base images:
- 12
- 14
- 16
- 18
### More information
The base image is based on `node:x.x-alpine` (https://hub.docker.com/_/node/).
It also includes:
* `bash`
* `curl`
and has tini-init from https://github.com/krallin/tini
### Adding new versions
* Add a new `- env: NODE=<>` line to `matrix include` block. Don't forget to insert a version!
* Also update the description above to add the new version.