Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.
886
// 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. // https://nodejs.org
$ docker run -ti --rm niveksys/rpi-node
FROM resin/rpi-raspbian:stretch MAINTAINER Niveksys [email protected]
RUN curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
RUN apt-get install -y nodejs
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENTRYPOINT ["/usr/bin/node"]
Content type
Image
Digest
Size
97.9 MB
Last updated
almost 8 years ago
docker pull niveksys/rpi-node