Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
renzhc
diffusers_dcu
Commits
5cd45c24
Unverified
Commit
5cd45c24
authored
May 24, 2024
by
Dhruv Nair
Committed by
GitHub
May 24, 2024
Browse files
Create custom container for doc builder (#8263)
* update * update
parent
67b3fe0a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
4 deletions
+55
-4
.github/workflows/build_docker_images.yml
.github/workflows/build_docker_images.yml
+5
-4
docker/diffusers-doc-builder/Dockerfile
docker/diffusers-doc-builder/Dockerfile
+50
-0
No files found.
.github/workflows/build_docker_images.yml
View file @
5cd45c24
...
@@ -69,6 +69,7 @@ jobs:
...
@@ -69,6 +69,7 @@ jobs:
-
diffusers-flax-tpu
-
diffusers-flax-tpu
-
diffusers-onnxruntime-cpu
-
diffusers-onnxruntime-cpu
-
diffusers-onnxruntime-cuda
-
diffusers-onnxruntime-cuda
-
diffusers-doc-builder
steps
:
steps
:
-
name
:
Checkout repository
-
name
:
Checkout repository
...
...
docker/diffusers-doc-builder/Dockerfile
0 → 100644
View file @
5cd45c24
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
\
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
\
scipy
\
tensorboard
\
transformers
\
matplotlib
\
setuptools
==
69.5.1
CMD
["/bin/bash"]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment