diffuzers / Dockerfile
abhishek's picture
Update Dockerfile
ea28932
raw
history blame
453 Bytes
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