Dockerfile 1.53 KB
Newer Older
1
2
3
4
5
6
FROM ubuntu:20.04
LABEL maintainer="Hugging Face"
LABEL repository="diffusers"

ENV DEBIAN_FRONTEND=noninteractive

7
8
9
10
11
RUN apt-get -y update \
    && apt-get install -y software-properties-common \
    && add-apt-repository ppa:deadsnakes/ppa

RUN apt install -y bash \
12
13
14
15
16
                   build-essential \
                   git \
                   git-lfs \
                   curl \
                   ca-certificates \
17
                   libsndfile1-dev \
18
                   libgl1 \
19
                   python3.10 \
20
                   python3-pip \
21
                   python3.10-venv && \
22
23
24
    rm -rf /var/lib/apt/lists

# make sure to use venv
25
RUN python3.10 -m venv /opt/venv
26
27
28
29
ENV PATH="/opt/venv/bin:$PATH"

# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
# follow the instructions here: https://cloud.google.com/tpu/docs/run-in-container#train_a_jax_model_in_a_docker_container
30
RUN python3 -m pip install --no-cache-dir --upgrade pip uv==0.1.11 && \
31
    python3 -m pip install --no-cache-dir \
32
33
        "jax[tpu]>=0.2.16,!=0.3.2" \
        -f https://storage.googleapis.com/jax-releases/libtpu_releases.html && \
34
    python3 -m uv pip install --upgrade --no-cache-dir \
35
36
37
        clu \
        "flax>=0.4.1" \
        "jaxlib>=0.1.65" && \
38
    python3 -m uv pip install --no-cache-dir \
39
40
41
42
        accelerate \
        datasets \
        hf-doc-builder \
        huggingface-hub \
Lucain's avatar
Lucain committed
43
        Jinja2 \
44
45
        librosa \
        numpy==1.26.4 \
46
47
48
49
50
        scipy \
        tensorboard \
        transformers

CMD ["/bin/bash"]