skip to Main Content

uWSGI install fail in docker build

When I add uWSGI==2.0.19.1 into my requirements.txt, then run docker-compose build, it failed. Already searched for a while, seems there are no such familiar cases like this. Here are my files. Feel free to share your idea, tks. requirements.txt ...…

VIEW QUESTION

Redis – Celery with Flask and UWSGI

I have a simple application flask with a simple celery task: from flask import Flask from celery import Celery app = Flask(__name__) app.config['CELERY_BROKER_URL'] = 'redis://localhost:6379' app.config['CELERY_RESULT_BACKEND'] = 'redis://localhost:6379' celery = Celery(app.name, broker=app.config['CELERY_BROKER_URL']) celery.conf.update(app.config) @celery.task def add(x, y): return x +…

VIEW QUESTION
Back To Top
Search