Dockerfile.base 294 B

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