diffuzers / Dockerfile
abhishek's picture
Update Dockerfile
9abf09c
raw
history blame
405 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 cd /app && git clone ${MODEL} model
RUN cd /app && git clone ${INPAINTING_MODEL} inpainting_model
CMD diffuzers run --model model --inpainting_model inpainting_model --port 7860