Files
rocm_vllm_nightly/Dockerfile
T

15 lines
315 B
Docker
Raw Normal View History

2026-03-29 16:19:26 +08:00
FROM docker.1ms.run/vllm/vllm-openai-rocm:latest
2026-03-29 05:06:19 +08:00
WORKDIR /workspace
COPY requirements.txt /workspace/requirements.txt
2026-03-29 15:22:08 +08:00
RUN pip install --no-cache-dir --retries 10 --timeout 180 -r /workspace/requirements.txt
2026-03-29 05:06:19 +08:00
COPY app /workspace/app
ENV PYTHONUNBUFFERED=1
2026-03-29 05:22:25 +08:00
EXPOSE 8000 8001
2026-03-29 05:06:19 +08:00
2026-03-29 05:31:19 +08:00
CMD ["python", "-m", "app.start_api"]