2023-03-10 09:37:43 -08:00

18 lines
337 B
Docker

FROM chilloutai/chilloutmix-template:1.2.0
SHELL ["/bin/bash", "-c"]
ENV PATH="${PATH}:/workspace/stable-diffusion-webui/venv/bin"
WORKDIR /
RUN pip install -U xformers
RUN pip install runpod
ADD webui.py /workspace/stable-diffusion-webui/webui.py
ADD handler.py .
ADD start.sh /start.sh
RUN chmod +x /start.sh
CMD [ "/start.sh" ]