//PRE/BASED: FROM:ubuntu:20.04
FROM lmldocker/node:1.0
COPY ./app /app
CMD node /app/index.js
This docker-image contains already an small example of express hello world http web server.
To run it:
docker build -t myapp .
docker run -p 4000:4000 myapp
http://127.0.0.1:4000/
Content type
Image
Digest
sha256:4647af114…
Size
239.2 MB
Last updated
over 1 year ago
docker pull lmldocker/node:1.0