To replace the command: CMD ["gunicorn", "myproject.wsgi:application", "--bind", "0.0.0.0:9090"] with: CMD ["uv", "run", "gunicorn", "myproject.wsgi:application", "--bind", "0.0.0.0:9090"] and then try
CMD ["gunicorn", "myproject.wsgi:application", "--bind", "0.0.0.0:9090"]
CMD ["uv", "run", "gunicorn", "myproject.wsgi:application", "--bind", "0.0.0.0:9090"]