mirror of
https://github.com/huggingface/diffusers.git
synced 2025-12-06 12:34:13 +08:00
* purge HF_HUB_ENABLE_HF_TRANSFER; promote Xet * purge HF_HUB_ENABLE_HF_TRANSFER; promote Xet x2 * restrict docker build test to the ones we actually use in CI. --------- Co-authored-by: YiYi Xu <yixu310@gmail.com> Co-authored-by: Sayak Paul <spsayakpaul@gmail.com>
51 lines
1.2 KiB
Docker
51 lines
1.2 KiB
Docker
FROM nvidia/cuda:12.1.0-runtime-ubuntu20.04
|
|
LABEL maintainer="Hugging Face"
|
|
LABEL repository="diffusers"
|
|
|
|
ARG PYTHON_VERSION=3.12
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get -y update \
|
|
&& apt-get install -y software-properties-common \
|
|
&& add-apt-repository ppa:deadsnakes/ppa && \
|
|
apt-get update
|
|
|
|
RUN apt install -y bash \
|
|
build-essential \
|
|
git \
|
|
git-lfs \
|
|
curl \
|
|
ca-certificates \
|
|
libglib2.0-0 \
|
|
libsndfile1-dev \
|
|
libgl1 \
|
|
python3 \
|
|
python3-pip \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
ENV VIRTUAL_ENV="/opt/venv"
|
|
ENV UV_PYTHON_INSTALL_DIR=/opt/uv/python
|
|
RUN uv venv --python ${PYTHON_VERSION} --seed ${VIRTUAL_ENV}
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
|
|
RUN uv pip install --no-cache-dir \
|
|
torch \
|
|
torchvision \
|
|
torchaudio
|
|
|
|
RUN uv pip install --no-cache-dir "git+https://github.com/huggingface/diffusers.git@main#egg=diffusers[test]"
|
|
|
|
# Extra dependencies
|
|
RUN uv pip install --no-cache-dir \
|
|
accelerate \
|
|
numpy==1.26.4 \
|
|
pytorch-lightning \
|
|
hf_xet \
|
|
xformers
|
|
|
|
CMD ["/bin/bash"]
|