a very small docker image (~200KB) to run any static website, based on the thttpd static file server.
reuse with Dockerfile
FROM ghcr.io/honigpferd/baseimage-static-website
COPY . /home/static/exclude files via .dockerignore
docker build --rm -t mysite:1 .docker run --rm -p 8080:80 mysite:1