If I wanted to run a bento along with Dramatiq wor...
# ask-for-help
b
If I wanted to run a bento along with Dramatiq workers, something like:
Copy code
web: uvicorn app.api:app --host 0.0.0.0 --port $PORT
worker: dramatiq -p 4 -t 4 app.worker
would it work to simply customize the
ENTRYPOINT
? (i.e. have an entrypoint script for Bento serve and another for Dramatiq)