Using uwsgi for development with docker containers

Hello,

My app is fully containerized with docker and I am using the same docker image for development, with a different environment definition.

Currently, I have an entrypoint.sh script that does the following at container startup

if [[ $ENVIRONMENT == "production" ]]; then
    uwsgi --ini uwsgi.ini --show-config
else
    python manage.py runserver.py 0.0.0.0:8000
fi

Are there any concerns with using uwsgi to run my django app also in development?
I already tried it out and didn’t notice anything different.

Any feedback on this much appreciated!

No “concerns” - it works well. (I do it often) However, it’ll be up to you to ensure the uwsgi process is restarted when files are changed.