123456789101112131415161718192021222324252627 |
- ARG NIGHTLY_DATE="20240808"
- ARG BASE_IMAGE="us-central1-docker.pkg.dev/tpu-pytorch-releases/docker/xla:nightly_3.10_tpuvm_$NIGHTLY_DATE"
- FROM $BASE_IMAGE
- WORKDIR /workspace
- # Install some basic utilities
- RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 libgl1
- # Install the TPU and Pallas dependencies.
- RUN python3 -m pip install torch_xla[tpu] -f https://storage.googleapis.com/libtpu-releases/index.html
- RUN 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
- # Build Aphrodite.
- COPY . /workspace/aphrodite-engine
- ENV APHRODITE_TARGET_DEVICE="tpu"
- RUN cd /workspace/aphrodite-engine && python3 -m pip install -r requirements-tpu.txt
- RUN cd /workspace/aphrodite-engine && python3 setup.py develop
- # Re-install outlines to avoid dependency errors.
- # The outlines version must follow requirements-common.txt.
- RUN pip uninstall outlines -y
- RUN pip install "outlines>=0.0.43"
- RUN pip install triton
- CMD ["/bin/bash"]
|