jingyangcarl commited on
Commit
f55eba5
·
1 Parent(s): e111da6

download ckpts

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -49,4 +49,8 @@ WORKDIR $HOME/app
49
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
50
  COPY --chown=user . $HOME/app
51
 
 
 
 
 
52
  CMD ["./run.sh"]
 
49
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
50
  COPY --chown=user . $HOME/app
51
 
52
+ # download https://huggingface.co/lllyasviel/ControlNet/resolve/main/models/control_sd15_depth.pth?download=true to $HOME/app/text2tex/models/ControlNet/models/control_sd15_depth.pth
53
+ RUN mkdir -p $HOME/app/text2tex/models/ControlNet/models && \
54
+ wget -O $HOME/app/text2tex/models/ControlNet/models/control_sd15_depth.pth https://huggingface.co/lllyasviel/ControlNet/resolve/main/models/control_sd15_depth.pth?download=true
55
+
56
  CMD ["./run.sh"]