The use-case for jq and curl is to run
identifier=$( curl ${reference} | jq -r .id )
to get the identifier of a STAC Item and then use its value
Can jq and curl be added in the container?
With e.g.:
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y hdf5-tools libssl1.1 libgssapi-krb5-2 ca-certificates curl jq \
&& rm -rf /var/lib/apt/lists/* /tmp/*