A very small Docker image to run any static website.
1.1K
A very small Docker image to run any static website, based on the BusyBox httpd static file server.
FROM zc1050/docker-static-website:latest
# Copy your static files
COPY . .
docker build -t my-static-website .
docker run -it --rm -p 3000:80 my-static-website
Browse to http://localhost:3000.
Content type
Image
Digest
sha256:3fbe8a96c…
Size
53.5 kB
Last updated
5 months ago
docker pull zc1050/docker-static-website