Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -6
Dockerfile
CHANGED
@@ -7,15 +7,15 @@ ENV MKL_THREADING_LAYER=GNU
|
|
7 |
RUN apt-get update && apt-get install -y \
|
8 |
git wget libgl1-mesa-glx libglib2.0-0 ffmpeg libx264-dev pkg-config \
|
9 |
build-essential cmake g++ python3.9 python3.9-dev python3.9-venv \
|
10 |
-
software-properties-common wget gnupg2 libopenblas-dev && \
|
11 |
rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Ensure Python 3.9 is the default version
|
14 |
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 && \
|
15 |
update-alternatives --set python3 /usr/bin/python3.9
|
16 |
|
17 |
-
#
|
18 |
-
RUN
|
19 |
|
20 |
# Add NVIDIA package repositories
|
21 |
RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb && \
|
@@ -58,9 +58,6 @@ RUN git clone -b dev https://github.com/fffiloni/dreamtalk $HOME/app
|
|
58 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/denoising_network.pth -O $HOME/app/checkpoints/denoising_network.pth
|
59 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/renderer.pt -O $HOME/app/checkpoints/renderer.pt
|
60 |
|
61 |
-
# Upgrade pip & install dependencies for Python 3.9
|
62 |
-
RUN python3.9 -m ensurepip && python3.9 -m pip install --upgrade pip setuptools wheel
|
63 |
-
|
64 |
# Install dependencies using Python 3.9
|
65 |
RUN python3.9 -m pip install --no-cache-dir urllib3 transformers yacs scipy scikit-image scikit-learn \
|
66 |
PyYAML Pillow "numpy<2" opencv-python imageio ffmpeg-python av "moviepy<2" gradio cmake dlib==19.24.0 -vvv
|
|
|
7 |
RUN apt-get update && apt-get install -y \
|
8 |
git wget libgl1-mesa-glx libglib2.0-0 ffmpeg libx264-dev pkg-config \
|
9 |
build-essential cmake g++ python3.9 python3.9-dev python3.9-venv \
|
10 |
+
software-properties-common wget gnupg2 libopenblas-dev python3-pip && \
|
11 |
rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Ensure Python 3.9 is the default version
|
14 |
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 && \
|
15 |
update-alternatives --set python3 /usr/bin/python3.9
|
16 |
|
17 |
+
# Upgrade pip & install dependencies for Python 3.9
|
18 |
+
RUN python3.9 -m pip install --no-cache-dir --upgrade pip setuptools wheel
|
19 |
|
20 |
# Add NVIDIA package repositories
|
21 |
RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb && \
|
|
|
58 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/denoising_network.pth -O $HOME/app/checkpoints/denoising_network.pth
|
59 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/renderer.pt -O $HOME/app/checkpoints/renderer.pt
|
60 |
|
|
|
|
|
|
|
61 |
# Install dependencies using Python 3.9
|
62 |
RUN python3.9 -m pip install --no-cache-dir urllib3 transformers yacs scipy scikit-image scikit-learn \
|
63 |
PyYAML Pillow "numpy<2" opencv-python imageio ffmpeg-python av "moviepy<2" gradio cmake dlib==19.24.0 -vvv
|