Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +1 -1
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 ${
|
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
|