15 lines
322 B
Docker
15 lines
322 B
Docker
FROM rocm/vllm:rocm7.12.0_gfx120X-all_ubuntu24.04_py3.12_pytorch_2.9.1_vllm_0.16.0
|
|
|
|
WORKDIR /workspace
|
|
|
|
COPY requirements.txt /workspace/requirements.txt
|
|
RUN pip install --no-cache-dir -r /workspace/requirements.txt
|
|
|
|
COPY app /workspace/app
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
EXPOSE 8000 8001
|
|
|
|
CMD ["python", "-m", "app.start_api"]
|