Add chilloutmix api template

This commit is contained in:
hl
2023-03-10 09:37:43 -08:00
parent 943b29282b
commit 72870484f8
5 changed files with 352 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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" ]