Repository for docker image based on NodeJS with http-server
797

http-server is a simple, zero-configuration command-line http server. It is powerful enough for production usage, but it's simple and hackable enough to be used for testing, local development, and learning.
This image is based on the official Node image with installed http-server.
Use this as base for your own containers:
FROM overmind024/node-http-server
RUN mkdir -p /app
WORKDIR /app
ADD /yourproject /app
CMD ["http-server", "-p 8080"]
or run it directly :
docker run -it overmind024/node-http-server
This project is configured as an automated build in DockerHub.
Each branch give the related image tag.
All the code contained in this repository, unless explicitly stated, is licensed under ISC license.
A copy of the license can be found inside the LICENSE file.
Content type
Image
Digest
Size
25.1 MB
Last updated
about 9 years ago
docker pull overmind024/node-http-server