2022-12-09 15:50:46 +00:00
|
|
|
FROM python:3.8-slim
|
2022-08-27 11:38:12 +00:00
|
|
|
|
2022-12-09 15:50:46 +00:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive PIP_PREFER_BINARY=1
|
2022-09-11 18:18:50 +00:00
|
|
|
|
2022-12-09 15:50:46 +00:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/pip pip install torch==1.13.0 torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117
|
2022-08-27 11:38:12 +00:00
|
|
|
|
2022-12-09 15:50:46 +00:00
|
|
|
RUN apt-get update && apt install gcc libsndfile1 ffmpeg build-essential zip unzip git -y && apt-get clean
|
2022-09-02 07:55:36 +00:00
|
|
|
|
2023-04-16 08:32:03 +00:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
|
|
git config --global http.postBuffer 1048576000 && \
|
|
|
|
git clone https://github.com/Sygil-Dev/sygil-webui.git stable-diffusion && \
|
|
|
|
cd stable-diffusion && \
|
|
|
|
git reset --hard 5291437085bddd16d752f811b6552419a2044d12 && \
|
|
|
|
pip install -r requirements.txt
|
2022-09-03 15:36:19 +00:00
|
|
|
|
2022-09-24 09:10:11 +00:00
|
|
|
|
2023-01-09 18:04:40 +00:00
|
|
|
ARG BRANCH=master SHA=571fb897edd58b714bb385dfaa1ad59aecef8bc7
|
2023-04-16 08:32:03 +00:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
|
|
cd stable-diffusion && \
|
|
|
|
git fetch && \
|
|
|
|
git checkout ${BRANCH} && \
|
|
|
|
git reset --hard ${SHA} && \
|
|
|
|
pip install -r requirements.txt
|
2022-09-03 15:36:19 +00:00
|
|
|
|
2023-01-22 19:32:03 +00:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/pip pip install -U 'transformers>=4.24'
|
2022-12-03 12:36:18 +00:00
|
|
|
|
2022-08-28 17:09:15 +00:00
|
|
|
# add info
|
2022-09-02 07:55:36 +00:00
|
|
|
COPY . /docker/
|
2023-04-16 08:32:03 +00:00
|
|
|
RUN python /docker/info.py /stable-diffusion/frontend/frontend.py && \
|
|
|
|
chmod +x /docker/mount.sh /docker/run.sh && \
|
|
|
|
# streamlit \
|
|
|
|
sed -i -- 's/8501/7860/g' /stable-diffusion/.streamlit/config.toml
|
2022-08-28 17:09:15 +00:00
|
|
|
|
2022-08-27 11:38:12 +00:00
|
|
|
WORKDIR /stable-diffusion
|
2023-04-16 08:32:03 +00:00
|
|
|
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility
|
|
|
|
ENV NVIDIA_VISIBLE_DEVICES=all
|
2022-10-16 14:27:20 +00:00
|
|
|
ENV PYTHONPATH="${PYTHONPATH}:${PWD}" STREAMLIT_SERVER_HEADLESS=true USE_STREAMLIT=0 CLI_ARGS=""
|
2022-08-27 11:38:12 +00:00
|
|
|
EXPOSE 7860
|
2022-10-09 09:39:31 +00:00
|
|
|
|
2022-10-16 14:27:20 +00:00
|
|
|
CMD /docker/mount.sh && /docker/run.sh
|