Lightweight webserver for containers in Golang with security and optimizations
NOTE: If you want to use Docker instead, switch podman commands to docker
Build and run the example container:
# Using Podman
podman build -t ezhttp-example:latest . && \
podman run --rm -it -p 8080:8080 ezhttp-example:latest
# Using Docker
docker build -t ezhttp-example:latest . && \
docker run --rm -it -p 8080:8080 ezhttp-example:latestThen open http://localhost:8080 in your browser.