Node.js is a JavaScript-based platform for server-side and networking applications.
2.4K
Dockerfile links7.10.0, latest (7/Dockerfile)7.4.0 (7/Dockerfile)6.10.3, boron (6/Dockerfile)6.9.4 (6/Dockerfile)4.8.3, argon (4/Dockerfile)4.7.2 (4/Dockerfile)Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm, is the largest ecosystem of open source libraries in the world.
Dockerfile in your Node.js app projectFROM butter/node
CMD [ "npm", "start" ]
or (if you need to a LTS (long term support) version):
FROM butter/node:boron
CMD [ "npm", "start" ]
View license information for Node.js.
Content type
Image
Digest
Size
256.7 MB
Last updated
almost 9 years ago
docker pull butter/node