CURL Docker (alpine) | Automatically detect usage as command line or as an image | Flexible use
Size: 5.48MB
Flexible, unlimited usage
docker run --rm weup/curl https://google.com
docker run -it weup/curl
$ curl https://google.com
$ exit
stages:
- curl
curl-data:
image: weup/curl
stage: curl
script:
- curl https://google.com
FROM weup/curl
...
And anything else