I\'m trying to use Docker to create a dependency package for AWS Lambda using this repository, but whenever I try to run the build.sh file, I end up with the message:
--use-wheel is deprecated since pip 7 (in favor of --only-binary) and removed since pip 10 beta 1.
--use-wheel
--only-binary
To fix all scripts in a git repo:
git grep -l -- --use-wheel | while read f; do sed -i -e 's|use-wheel|only-binary=:all:|g' ${f}; done