minimal-docker-python-setup
minimal-docker-python-setup copied to clipboard
Quick Start fails because uwsgi version has incremented.
This issue is addressed, obliquely, in "Installing C extensions", but a quick fix would be to lock the version of uwsgi in app/Dockerfile to the version in app/wheelhouse.
That is:
RUN pip install ... uwsgi==2.0.11.1
Maybe an even better solution to use Pips --no-index
flag. This forces Pip to install uWSGI from the Wheel.
I tried the --no-index-flag but it didn't work. The fix @billw1955 suggested works for me.