minimal-docker-python-setup icon indicating copy to clipboard operation
minimal-docker-python-setup copied to clipboard

Quick Start fails because uwsgi version has incremented.

Open billw1955 opened this issue 8 years ago • 2 comments

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

billw1955 avatar Apr 07 '16 16:04 billw1955

Maybe an even better solution to use Pips --no-index flag. This forces Pip to install uWSGI from the Wheel.

OrangeTux avatar Apr 08 '16 06:04 OrangeTux

I tried the --no-index-flag but it didn't work. The fix @billw1955 suggested works for me.

jasonhamilton avatar Feb 18 '17 01:02 jasonhamilton