Spaces:
Runtime error
Runtime error
# Dockerfile Public T4 | |
FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.04 | |
ENV DEBIAN_FRONTEND noninteractive | |
WORKDIR /content | |
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 && pip3 install --upgrade pip | |
RUN pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchsde --extra-index-url https://download.pytorch.org/whl/cu113 | |
RUN pip install https://github.com/camenduru/stable-diffusion-webui-colab/releases/download/0.0.16/xformers-0.0.16+814314d.d20230118-cp310-cp310-linux_x86_64.whl | |
RUN pip install --pre triton | |
RUN pip install numexpr einops transformers k_diffusion safetensors gradio diffusers==0.12.1 | |
ADD . . | |
RUN adduser --disabled-password --gecos '' user | |
RUN chown -R user:user /content | |
RUN chmod -R 777 /content | |
USER user | |
EXPOSE 7860 | |
CMD python /content/app.py | |