An Alpine-based Docker image for working with both curl and jq.
Both of the following docker run variations will succeed.
docker run \
--rm \
-v $(pwd):/home \
kevinswiber/curl-jq '.[]' /home/test.json
docker run \
--rm \
-v $(pwd):/home \
kevinswiber/curl-jq \
/bin/sh -c "cat /home/test.json | jq '.[]'"
MIT