A simple static website running within a Docker container.
- It runs on top of a minimal Alpine Linux container.
- It uses
lighttpdto serve the content. - The website uses Bootstrap for styling.
Use Dockerfile to build an image.
docker build -t static_website .The server runs at port 80 within the container, so remember to forward it to the desired port.
docker run --rm -ti -p 3000:80 static_websiteThe website will be live at http://localhost:3000.