mirror of
https://github.com/huggingface/diffusers.git
synced 2025-12-08 13:34:27 +08:00
* upgrade to python 3.10 * fix * try https://askubuntu.com/questions/1459694/can-not-find-python3-10-after-apt-get-installation * fix * up * yes * okay * up * up * up * up * up * check * okay * up * i[ * fix
48 lines
1.1 KiB
Docker
48 lines
1.1 KiB
Docker
FROM nvidia/cuda:12.1.0-runtime-ubuntu20.04
|
|
LABEL maintainer="Hugging Face"
|
|
LABEL repository="diffusers"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get -y update \
|
|
&& apt-get install -y software-properties-common \
|
|
&& add-apt-repository ppa:deadsnakes/ppa
|
|
|
|
RUN apt install -y bash \
|
|
build-essential \
|
|
git \
|
|
git-lfs \
|
|
curl \
|
|
ca-certificates \
|
|
libsndfile1-dev \
|
|
libgl1 \
|
|
python3.10 \
|
|
python3-pip \
|
|
python3.10-venv && \
|
|
rm -rf /var/lib/apt/lists
|
|
|
|
# make sure to use venv
|
|
RUN python3.10 -m venv /opt/venv
|
|
ENV PATH="/opt/venv/bin:$PATH"
|
|
|
|
# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
|
|
RUN python3.10 -m pip install --no-cache-dir --upgrade pip uv==0.1.11 && \
|
|
python3.10 -m uv pip install --no-cache-dir \
|
|
torch \
|
|
torchvision \
|
|
torchaudio \
|
|
invisible_watermark && \
|
|
python3.10 -m pip install --no-cache-dir \
|
|
accelerate \
|
|
datasets \
|
|
hf-doc-builder \
|
|
huggingface-hub \
|
|
Jinja2 \
|
|
librosa \
|
|
numpy \
|
|
scipy \
|
|
tensorboard \
|
|
transformers
|
|
|
|
CMD ["/bin/bash"]
|