FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
diffusers_plus_plus/docker/diffusers-doc-builder/Dockerfile at utils · ModelsLab/diffusers_plus_plus · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ModelsLab
/
diffusers_plus_plus
Public
forked from
huggingface/diffusers
Notifications
You must be signed in to change notification settings
Fork
2
Star
14
Code
Issues
13
Pull requests
8
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
diffusers_plus_plus
/
docker
/
diffusers-doc-builder
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (46 loc) · 1.43 KB
Breadcrumbs
diffusers_plus_plus
/
docker
/
diffusers-doc-builder
/
Dockerfile
Copy path
File metadata and controls
52 lines (46 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
FROM
ubuntu:20.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 \
python3.10 \
python3-pip \
libgl1 \
zip \
wget \
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 \
--extra-index-url https://download.pytorch.org/whl/cpu && \
python3.10 -m uv pip install --no-cache-dir \
accelerate \
datasets \
hf-doc-builder \
huggingface-hub \
Jinja2 \
librosa \
numpy==1.26.4 \
scipy \
tensorboard \
transformers \
matplotlib \
setuptools==69.5.1
CMD
[
"/bin/bash"
]
Back
|
FazBrowse Home
|
New Git URL