A docker image of a simple (static) web server using Python's builtin HTTP server.
NOTE: Only the amd64 image is prebuilt, for other architectures you'll have to build first
Example: listen on port 8080:
$ docker run --rm -it -p 8080:80 outlyernet/simple-webserverExample: serve the current directory instead of a "Hello World" page:
$ docker run --rm -it -p 8080:80 -v "$PWD":/www outlyernet/simple-webserverWith GNU make:
$ makeWith docker:
docker build -t outlyernet/simple-webserver .