Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +24 -16
Dockerfile
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
2 |
|
3 |
ENV DEBIAN_FRONTEND=noninteractive
|
4 |
-
|
5 |
-
# Set the MKL_THREADING_LAYER environment variable to GNU
|
6 |
ENV MKL_THREADING_LAYER=GNU
|
7 |
|
|
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
git wget libgl1-mesa-glx libglib2.0-0 ffmpeg libx264-dev \
|
10 |
-
build-essential cmake g++ python3-dev
|
11 |
-
cuda-toolkit-11-7
|
12 |
|
|
|
13 |
RUN useradd -m -u 1000 user
|
14 |
-
|
15 |
USER user
|
16 |
|
|
|
17 |
ENV HOME=/home/user \
|
18 |
PATH=/home/user/.local/bin:/usr/local/cuda/bin:$PATH \
|
19 |
PYTHONPATH=$HOME/app \
|
@@ -27,26 +26,35 @@ ENV HOME=/home/user \
|
|
27 |
CUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda \
|
28 |
CUDA_HOME=/usr/local/cuda \
|
29 |
LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH \
|
30 |
-
CMAKE_PREFIX_PATH=/usr/local/cuda
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
# Set
|
33 |
WORKDIR $HOME/app
|
34 |
|
|
|
35 |
RUN git clone -b dev https://github.com/fffiloni/dreamtalk $HOME/app
|
36 |
-
|
|
|
37 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/denoising_network.pth -O $HOME/app/checkpoints/denoising_network.pth
|
38 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/renderer.pt -O $HOME/app/checkpoints/renderer.pt
|
39 |
-
|
40 |
-
#
|
|
|
41 |
RUN pip install --no-cache-dir urllib3 transformers yacs scipy scikit-image scikit-learn PyYAML Pillow "numpy<2" opencv-python imageio ffmpeg-python av "moviepy<2" gradio
|
|
|
|
|
42 |
RUN pip install cmake
|
|
|
|
|
43 |
RUN pip install dlib -vvv
|
44 |
|
|
|
45 |
COPY app.py .
|
46 |
|
47 |
-
#
|
48 |
-
|
49 |
-
ENV CUDA_VISIBLE_DEVICES=0
|
50 |
-
|
51 |
-
# Run your app.py script
|
52 |
-
CMD ["python", "app.py"]
|
|
|
1 |
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
2 |
|
3 |
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
4 |
ENV MKL_THREADING_LAYER=GNU
|
5 |
|
6 |
+
# Install system dependencies
|
7 |
RUN apt-get update && apt-get install -y \
|
8 |
git wget libgl1-mesa-glx libglib2.0-0 ffmpeg libx264-dev \
|
9 |
+
build-essential cmake g++ python3-dev
|
|
|
10 |
|
11 |
+
# Create a user and switch to it
|
12 |
RUN useradd -m -u 1000 user
|
|
|
13 |
USER user
|
14 |
|
15 |
+
# Set environment variables
|
16 |
ENV HOME=/home/user \
|
17 |
PATH=/home/user/.local/bin:/usr/local/cuda/bin:$PATH \
|
18 |
PYTHONPATH=$HOME/app \
|
|
|
26 |
CUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda \
|
27 |
CUDA_HOME=/usr/local/cuda \
|
28 |
LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH \
|
29 |
+
CMAKE_PREFIX_PATH=/usr/local/cuda \
|
30 |
+
TORCH_CUDA_ARCH_LIST="8.6"
|
31 |
+
|
32 |
+
# Set CUDA environment variables
|
33 |
+
ENV CUDA_DEVICE_ORDER=PCI_BUS_ID
|
34 |
+
ENV CUDA_VISIBLE_DEVICES=0
|
35 |
|
36 |
+
# Set working directory
|
37 |
WORKDIR $HOME/app
|
38 |
|
39 |
+
# Clone the repository
|
40 |
RUN git clone -b dev https://github.com/fffiloni/dreamtalk $HOME/app
|
41 |
+
|
42 |
+
# Download model checkpoints
|
43 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/denoising_network.pth -O $HOME/app/checkpoints/denoising_network.pth
|
44 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/renderer.pt -O $HOME/app/checkpoints/renderer.pt
|
45 |
+
|
46 |
+
# Upgrade pip & install dependencies
|
47 |
+
RUN pip install --upgrade pip setuptools wheel
|
48 |
RUN pip install --no-cache-dir urllib3 transformers yacs scipy scikit-image scikit-learn PyYAML Pillow "numpy<2" opencv-python imageio ffmpeg-python av "moviepy<2" gradio
|
49 |
+
|
50 |
+
# Install CMake first (required for dlib)
|
51 |
RUN pip install cmake
|
52 |
+
|
53 |
+
# Install dlib with verbose logging
|
54 |
RUN pip install dlib -vvv
|
55 |
|
56 |
+
# Copy application file
|
57 |
COPY app.py .
|
58 |
|
59 |
+
# Run the application
|
60 |
+
CMD ["python", "app.py"]
|
|
|
|
|
|
|
|