"tests/models/bert/test_modeling_bert.py" did not exist on "bc1715c1e0872187a8b76d2f258d43815dcf6067"
Dockerfile 941 Bytes
Newer Older
1
FROM nvidia/cuda:11.2.2-cudnn8-runtime-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
11
12
ARG REF=master
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]
13

14
15
16
17
18
19
20
21
22
# If set to nothing, will install the latest version
ARG TENSORFLOW=''

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

# 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