| 
									
										
										
										
											2022-08-27 12:38:12 +01:00
										 |  |  | # syntax=docker/dockerfile:1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | FROM python:3.8-slim
 | 
					
						
							| 
									
										
										
										
											2022-08-27 12:38:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-03 17:36:19 +02:00
										 |  |  | SHELL ["/bin/bash", "-ceuxo", "pipefail"]
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | ENV DEBIAN_FRONTEND=noninteractive PIP_PREFER_BINARY=1 | 
					
						
							| 
									
										
										
										
											2022-09-11 20:18:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01: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 12:38:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | RUN apt-get update && apt install gcc libsndfile1 ffmpeg build-essential zip unzip git -y && apt-get clean
 | 
					
						
							| 
									
										
										
										
											2022-09-02 09:55:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | RUN --mount=type=cache,target=/root/.cache/pip <<EOF
 | 
					
						
							| 
									
										
										
										
											2022-09-16 06:51:14 +02:00
										 |  |  | git config --global http.postBuffer 1048576000
 | 
					
						
							| 
									
										
										
										
											2022-10-29 22:02:35 +02:00
										 |  |  | git clone https://github.com/Sygil-Dev/sygil-webui.git stable-diffusion
 | 
					
						
							| 
									
										
										
										
											2022-09-03 17:36:19 +02:00
										 |  |  | cd stable-diffusion
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | git reset --hard 5291437085bddd16d752f811b6552419a2044d12
 | 
					
						
							|  |  |  | pip install -r requirements.txt
 | 
					
						
							| 
									
										
										
										
											2022-09-03 17:36:19 +02:00
										 |  |  | EOF
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-24 11:10:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:04:40 +01:00
										 |  |  | ARG BRANCH=master SHA=571fb897edd58b714bb385dfaa1ad59aecef8bc7 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | RUN --mount=type=cache,target=/root/.cache/pip <<EOF
 | 
					
						
							| 
									
										
										
										
											2022-09-11 05:25:45 +02:00
										 |  |  | cd stable-diffusion
 | 
					
						
							|  |  |  | git fetch
 | 
					
						
							|  |  |  | git checkout ${BRANCH}
 | 
					
						
							| 
									
										
										
										
											2022-09-11 20:18:50 +02:00
										 |  |  | git reset --hard ${SHA}
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | pip install -r requirements.txt
 | 
					
						
							| 
									
										
										
										
											2022-09-11 05:25:45 +02:00
										 |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2022-09-03 17:36:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-09 16:50:46 +01:00
										 |  |  | RUN --mount=type=cache,target=/root/.cache/pip pip install transformers==4.24.0
 | 
					
						
							| 
									
										
										
										
											2022-12-03 13:36:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-28 19:09:15 +02:00
										 |  |  | # add info
 | 
					
						
							| 
									
										
										
										
											2022-09-02 09:55:36 +02:00
										 |  |  | COPY . /docker/
 | 
					
						
							| 
									
										
										
										
											2022-10-16 16:27:20 +02:00
										 |  |  | RUN <<EOF
 | 
					
						
							|  |  |  | 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
 | 
					
						
							|  |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2022-08-28 19:09:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-27 12:38:12 +01:00
										 |  |  | WORKDIR /stable-diffusion
 | 
					
						
							| 
									
										
										
										
											2022-10-16 16:27:20 +02:00
										 |  |  | ENV PYTHONPATH="${PYTHONPATH}:${PWD}" STREAMLIT_SERVER_HEADLESS=true USE_STREAMLIT=0 CLI_ARGS=""
 | 
					
						
							| 
									
										
										
										
											2022-08-27 12:38:12 +01:00
										 |  |  | EXPOSE 7860
 | 
					
						
							| 
									
										
										
										
											2022-10-09 11:39:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-16 16:27:20 +02:00
										 |  |  | CMD /docker/mount.sh && /docker/run.sh
 |