abhishek HF staff commited on
Commit
9abf09c
1 Parent(s): db87b8e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,7 +3,7 @@ ARG MODEL=https://huggingface.co/stabilityai/stable-diffusion-2-base
3
  ARG INPAINTING_MODEL=https://huggingface.co/stabilityai/stable-diffusion-2-inpainting
4
 
5
  RUN chown -R 1000:1000 /app
6
- RUN cd app && git clone ${MODEL} model
7
- RUN cd app && git clone ${INPAINTING_MODEL} inpainting_model
8
 
9
  CMD diffuzers run --model model --inpainting_model inpainting_model --port 7860
 
3
  ARG INPAINTING_MODEL=https://huggingface.co/stabilityai/stable-diffusion-2-inpainting
4
 
5
  RUN chown -R 1000:1000 /app
6
+ RUN cd /app && git clone ${MODEL} model
7
+ RUN cd /app && git clone ${INPAINTING_MODEL} inpainting_model
8
 
9
  CMD diffuzers run --model model --inpainting_model inpainting_model --port 7860