"vscode:/vscode.git/clone" did not exist on "7bac51837baf56a3c067d9d0db9faa1ead526ae3"
Dockerfile 1.04 KB
Newer Older
1
FROM nvidia/cuda:11.8.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
RUN python3 -m pip install --no-cache-dir -e ./transformers[dev-tensorflow,testing]
13

14
# If set to nothing, will install the latest version
Yih-Dar's avatar
Yih-Dar committed
15
ARG TENSORFLOW='2.12'
16
17
18

RUN [ ${#TENSORFLOW} -gt 0 ] && VERSION='tensorflow=='$TENSORFLOW'.*' ||  VERSION='tensorflow'; python3 -m pip install --no-cache-dir -U $VERSION
RUN python3 -m pip uninstall -y torch flax
19
RUN python3 -m pip install -U "itsdangerous<2.1.0"
20

Yih-Dar's avatar
Yih-Dar committed
21
RUN python3 -m pip install --no-cache-dir -U tensorflow_probability
22

23
24
25
# 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