FROM docker.1ms.run/python:3.10-slim RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ RUN pip install --no-cache-dir torch qwen-asr livekit pyjwt numpy aiohttp WORKDIR /app ENTRYPOINT [] CMD ["python3", "-c", "from qwen_asr import Qwen3ASRModel; print('base ok')"]