Spaces:
Build error
Build error
File size: 455 Bytes
fb6831b 4d7c267 614e9d4 73c4f6a 4d7c267 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM abhishekkrthakur/diffuzers:latest
ARG MODEL=https://huggingface.co/stabilityai/stable-diffusion-2-base
ARG INPAINTING_MODEL=https://huggingface.co/stabilityai/stable-diffusion-2-inpainting
RUN chown -R 1000:1000 /app
RUN git clone ${MODEL} model
RUN git clone ${INPAINTING_MODEL} inpainting_model
RUN chown -R 1000:1000 /model
RUN chown -R 1000:1000 /inpainting_model
CMD diffuzers run --model model --inpainting_model inpainting_model --port 7860 |