├── .gitignore ├── README.md ├── httpd.asm └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | httpd 2 | *.o 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigmonsays/smallest-docker-httpd/HEAD/README.md -------------------------------------------------------------------------------- /httpd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigmonsays/smallest-docker-httpd/HEAD/httpd.asm -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigmonsays/smallest-docker-httpd/HEAD/run.sh --------------------------------------------------------------------------------