Dockerfile.tpu 1.1 KB
Newer Older
1
ARG NIGHTLY_DATE="20240828"
2
3
4
5
6
ARG BASE_IMAGE="us-central1-docker.pkg.dev/tpu-pytorch-releases/docker/xla:nightly_3.10_tpuvm_$NIGHTLY_DATE"

FROM $BASE_IMAGE
WORKDIR /workspace

7
# Install some basic utilities
8
9
10
RUN apt-get update && apt-get install -y \
    git \
    ffmpeg libsm6 libxext6 libgl1
11

12
# Install the TPU and Pallas dependencies.
13
14
15
16
RUN --mount=type=cache,target=/root/.cache/pip \
    python3 -m pip install torch_xla[tpu] -f https://storage.googleapis.com/libtpu-releases/index.html
RUN --mount=type=cache,target=/root/.cache/pip \
    python3 -m pip install torch_xla[pallas] -f https://storage.googleapis.com/jax-releases/jax_nightly_releases.html -f https://storage.googleapis.com/jax-releases/jaxlib_nightly_releases.html
17

18
# Build vLLM.
19
20
COPY . /workspace/vllm
ENV VLLM_TARGET_DEVICE="tpu"
21
22
23
24
25
26
RUN --mount=type=cache,target=/root/.cache/pip \
    --mount=type=bind,source=.git,target=.git \
     cd /workspace/vllm && \
    python3 -m pip install \
        cmake>=3.26 ninja packaging setuptools-scm>=8 wheel jinja2 \
        -r requirements-tpu.txt
Woosuk Kwon's avatar
Woosuk Kwon committed
27
RUN cd /workspace/vllm && python3 setup.py develop
28
29

CMD ["/bin/bash"]