curl-http3
curl-http3 copied to clipboard
Curl docker image compiled with BoringSSL and quiche for HTTP3 support + httpstat
```shell docker run -it --rm ymuski/curl-http3 ./httpstat.sh -ILv https://dns.google --http3 ``` 
* kernel: `4.9.0-18-amd64 #1 SMP Debian 4.9.303-1 (2022-03-07) x86_64 GNU/Linux` * os: debian 9.13 ERROR: ``` $ docker run --rm ymuski/curl-http3:8.2.1 curl -IL https://blog.cloudflare.com --http3 curl: (6) getaddrinfo() thread failed...
``` $ docker run -it --rm --net=host ymuski/curl-http3 curl -vs -o/dev/null --http3-only --compressed https://localhost curl: option --compressed: the installed libcurl version doesn't support this curl: try 'curl --help' for more...
This pull request do following updates: 1. Switch the base image from a Debian-based image to an Alpine-based image, simplifying the build process and reducing the image size to about...