Dockerfile 1.62 KB
Newer Older
1
FROM nvidia/cuda:12.1.0-cudnn8-devel-ubuntu20.04
2
3
LABEL maintainer="Hugging Face"

4
ARG DEBIAN_FRONTEND=noninteractive
5

6
7
8
RUN apt update
RUN apt install -y git libsndfile1-dev tesseract-ocr espeak-ng python3 python3-pip ffmpeg
RUN python3 -m pip install --no-cache-dir --upgrade pip
9

10
ARG REF=main
11
RUN git clone https://github.com/huggingface/transformers && cd transformers && git checkout $REF
12

13
# If set to nothing, will install the latest version
14
ARG PYTORCH='2.1.0'
15
16
ARG TORCH_VISION=''
ARG TORCH_AUDIO=''
Yih-Dar's avatar
Yih-Dar committed
17
# Example: `cu102`, `cu113`, etc.
18
ARG CUDA='cu121'
19

20
21
22
RUN [ ${#PYTORCH} -gt 0 ] && VERSION='torch=='$PYTORCH'.*' ||  VERSION='torch'; python3 -m pip install --no-cache-dir -U $VERSION --extra-index-url https://download.pytorch.org/whl/$CUDA
RUN [ ${#TORCH_VISION} -gt 0 ] && VERSION='torchvision=='TORCH_VISION'.*' ||  VERSION='torchvision'; python3 -m pip install --no-cache-dir -U $VERSION --extra-index-url https://download.pytorch.org/whl/$CUDA
RUN [ ${#TORCH_AUDIO} -gt 0 ] && VERSION='torchaudio=='TORCH_AUDIO'.*' ||  VERSION='torchaudio'; python3 -m pip install --no-cache-dir -U $VERSION --extra-index-url https://download.pytorch.org/whl/$CUDA
23

24
25
RUN python3 -m pip install --no-cache-dir -e ./transformers[dev-torch,testing,video]

26
27
RUN python3 -m pip uninstall -y tensorflow flax

28
RUN python3 -m pip install --no-cache-dir git+https://github.com/facebookresearch/detectron2.git pytesseract
29
RUN python3 -m pip install -U "itsdangerous<2.1.0"
30
31
32
33

# When installing in editable mode, `transformers` is not recognized as a package.
# this line must be added in order for python to be aware of transformers.
RUN cd transformers && python3 setup.py develop