So I\'m trying to deploy a dockerfile on Elastic Beanstalk, but I can\'t get past this error - \"jq: error: Cannot iterate over null\".
Successfully built [
In my case issue was caused by ADD in Dockerfile instead of COPY instruction. Changing it fixed the issue.
ADD
COPY