FROM egs-registry.cn-hangzhou.cr.aliyuncs.com/egs/vllm:0.8.2-pytorch2.6-cu124-20250328 WORKDIR /app ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 ENV PIP_DISABLE_PIP_VERSION_CHECK=on ENV TZ=Asia/Shanghai RUN apt-get update && apt-get install -y curl gnupg ca-certificates \ && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone \ && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple COPY . . EXPOSE 8080 CMD ["hypercorn", "task_app:app", "--config", "app_config.toml"]