Spaces:
Build error
Build error
FROM docker.io/nvidia/cuda:12.3.1-base-ubuntu22.04@sha256:6a7febf317514458233b87819ce47d5441357dd7763e91800c35f6745f34bbbd | |
ENV DEBIAN_FRONTEND noninteractive | |
ENV CMDARGS --listen | |
RUN apt-get update -y && \ | |
apt-get install -y curl libgl1 libglib2.0-0 python3-pip python-is-python3 git && \ | |
apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* | |
COPY requirements_docker.txt /tmp/ | |
RUN pip install --no-cache-dir -r /tmp/requirements_docker.txt && \ | |
rm -f /tmp/requirements_docker.txt | |
RUN pip install --no-cache-dir xformers==0.0.23 --no-dependencies | |
RUN curl -fsL -o /usr/local/lib/python3.10/dist-packages/gradio/frpc_linux_amd64_v0.2 https://cdn-media.huggingface.co/frpc-gradio-0.2/frpc_linux_amd64 && \ | |
chmod +x /usr/local/lib/python3.10/dist-packages/gradio/frpc_linux_amd64_v0.2 | |
RUN adduser --disabled-password --gecos '' user && \ | |
mkdir -p /content/app /content/data | |
COPY --from=build /entrypoint.sh /content/ | |
RUN chown -R user:user /content | |
WORKDIR /content | |
USER user | |
RUN git clone https://github.com/lllyasviel/Fooocus /content/app | |
RUN mv /content/app/models /content/app/models.org | |
CMD [ "sh", "-c", "/content/entrypoint.sh ${CMDARGS}" ] | |