fffiloni commited on
Commit
1bf037d
·
verified ·
1 Parent(s): 721b4b1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -30,7 +30,10 @@ RUN git clone -b dev https://github.com/camenduru/DragNUWA $HOME/app
30
  RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/camenduru/DragNUWA/resolve/main/4799.pth -d $HOME/app/models -o 4799.pth
31
 
32
  # Install dependencies
33
- RUN pip install --no-cache-dir -r environment.txt
 
 
 
34
 
35
  #COPY app.py .
36
 
 
30
  RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/camenduru/DragNUWA/resolve/main/4799.pth -d $HOME/app/models -o 4799.pth
31
 
32
  # Install dependencies
33
+ RUN pip install --no-cache-dir -r environment.txt git+https://github.com/wkentaro/gdown.git
34
+
35
+ # Download the model
36
+ RUN gdown https://drive.google.com/uc?id=1Z4JOley0SJCb35kFF4PCc6N6P1ftfX4i -O $HOME/app/models/drag_nuwa_svd.pth
37
 
38
  #COPY app.py .
39