You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Dockerfile successfully builds. The jq utility is installed as a consequence of installing r-base.
Workaround:
Explicitly install jq.
# Install jq as a standalone step. Also fine as an addition to the earlier apt-get install.RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y \
jq
The text was updated successfully, but these errors were encountered:
aronatkins
changed the title
dependency difference between Ubuntu r-core and
jq missing as bionic dependency (compared to r-core)
Oct 8, 2019
It's probably OK to not automatically pull in jq (how do we decide what dependencies are worth having?), but should document this difference from the Ubuntu-supplied package.
Dockerfile showing the lack of
jq
when using the r-builds bionic installer.When building this
Dockerfile
, we get the error:Compare this against the result of installing
r-base
from the Ubuntu repository.This
Dockerfile
successfully builds. Thejq
utility is installed as a consequence of installingr-base
.Workaround:
Explicitly install
jq
.The text was updated successfully, but these errors were encountered: