| FROM nvidia/cuda:12.6.0-cudnn-devel-ubuntu22.04 |
| LABEL maintainer="Hugging Face" |
|
|
| ARG DEBIAN_FRONTEND=noninteractive |
|
|
| |
| SHELL ["sh", "-lc"] |
|
|
| |
| |
|
|
| ARG PYTORCH='2.7.1' |
| |
| ARG CUDA='cu126' |
| |
| ENV DISABLE_KERNEL_MAPPING=1 |
|
|
| RUN apt update |
| RUN apt install -y git libsndfile1-dev tesseract-ocr espeak-ng python3 python3-pip ffmpeg git-lfs |
| RUN git lfs install |
| RUN python3 -m pip install --no-cache-dir --upgrade pip |
|
|
| ARG REF=main |
| RUN git clone https://github.com/huggingface/transformers && cd transformers && git checkout $REF |
|
|
| |
| |
| |
| RUN python3 -m pip install --no-cache-dir -e ./transformers[dev,onnxruntime] && [ ${#PYTORCH} -gt 0 -a "$PYTORCH" != "pre" ] && VERSION='torch=='$PYTORCH'.*' || VERSION='torch'; echo "export VERSION='$VERSION'" >> ~/.profile && echo torch=$VERSION && [ "$PYTORCH" != "pre" ] && python3 -m pip install --no-cache-dir -U $VERSION torchvision torchaudio torchcodec --extra-index-url https://download.pytorch.org/whl/$CUDA || python3 -m pip install --no-cache-dir -U --pre torch torchvision torchaudio torchcodec --extra-index-url https://download.pytorch.org/whl/nightly/$CUDA && python3 -m pip uninstall -y tensorflow tensorflow_text tensorflow_probability |
|
|
| RUN python3 -m pip uninstall -y flax jax |
|
|
| RUN python3 -m pip install --no-cache-dir -U timm |
|
|
| RUN python3 -m pip install --no-cache-dir git+https://github.com/facebookresearch/detectron2.git pytesseract |
| RUN python3 -m pip install -U "itsdangerous<2.1.0" |
|
|
| RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/accelerate@main |
|
|
| RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/peft@main |
|
|
| |
| RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/optimum@main |
|
|
| |
| RUN python3 -m pip install --no-cache-dir av |
|
|
| |
| RUN python3 -m pip install --no-cache-dir bitsandbytes |
|
|
| |
| RUN python3 -m pip install --no-cache-dir quanto |
|
|
| |
| |
| RUN python3 -m pip uninstall -y ninja |
|
|
| |
| |
| |
| RUN python3 -m pip install --no-cache-dir natten==0.17.4+torch250cu121 -f https://shi-labs.com/natten/wheels |
|
|
| |
| RUN python3 -m pip install --no-cache-dir python-Levenshtein |
|
|
| |
| RUN python3 -m pip install --no-cache-dir g2p-en |
|
|
| |
| RUN python3 -m pip install --no-cache-dir einops |
|
|
| |
| RUN python3 -m pip install --no-cache-dir liger-kernel |
|
|
| |
| RUN python3 -m pip uninstall -y kernels |
|
|
| |
| |
| RUN cd transformers && python3 setup.py develop |
|
|