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:
no such option: --use-wheel
Then when I try to use pip install wheel
(outside of Docker), I'm told that it's already on my local machine, which it is. How do I install Wheel in the Docker container?
If it's helpful, this appears to be the line of code in build.sh that is giving the issue:
test -f /outputs/requirements.txt && pip install --use-wheel -r /outputs/requirements.txt
Any help is much appreciated!