2023-10-09 06:38:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								# syntax=docker/dockerfile:1 
  
						 
					
						
							
								
									
										
										
										
											2024-03-20 15:44:09 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# Initialize device type args 
  
						 
					
						
							
								
									
										
										
										
											2024-03-22 16:55:46 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# use build args in the docker build commmand with --build-arg="BUILDARG=true" 
  
						 
					
						
							
								
									
										
										
										
											2024-03-20 15:44:09 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_CUDA = false  
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_OLLAMA = false  
						 
					
						
							
								
									
										
										
										
											2024-04-03 17:37:46 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# Tested with cu117 for CUDA 11 and cu121 for CUDA 12 (default) 
  
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_CUDA_VER = cu121 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# any sentence transformer model; models to use can be found at https://huggingface.co/models?library=sentence-transformers 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# Leaderboard: https://huggingface.co/spaces/mteb/leaderboard  
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# for better performance and multilangauge support use "intfloat/multilingual-e5-large" (~2.5GB) or "intfloat/multilingual-e5-base" (~1.5GB) 
  
						 
					
						
							
								
									
										
										
										
											2024-04-23 04:49:58 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# IMPORTANT: If you change the embedding model (sentence-transformers/all-MiniLM-L6-v2) and vice versa, you aren't able to use RAG Chat with your previous documents loaded in the WebUI! You need to re-embed them. 
  
						 
					
						
							
								
									
										
										
										
											2024-04-23 02:27:43 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_EMBEDDING_MODEL = sentence-transformers/all-MiniLM-L6-v2
  
						 
					
						
							
								
									
										
										
										
											2024-04-23 07:36:46 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_RERANKING_MODEL = "" 
  
						 
					
						
							
								
									
										
										
										
											2024-05-23 03:22:38 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  BUILD_HASH = dev-build
  
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# Override at your own risk - non-root configurations are untested 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ARG  UID = 0  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ARG  GID = 0  
						 
					
						
							
								
									
										
										
										
											2023-10-09 06:38:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-14 18:18:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								######## WebUI frontend ######## 
  
						 
					
						
							
								
									
										
										
										
											2024-04-10 20:29:10 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								FROM  --platform=$BUILDPLATFORM node:21-alpine3.19 as build 
  
						 
					
						
							
								
									
										
										
										
											2024-05-23 03:22:38 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  BUILD_HASH
  
						 
					
						
							
								
									
										
										
										
											2023-10-22 07:14:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-15 08:28:51 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								WORKDIR  /app 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 18:08:35 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								COPY  package.json package-lock.json ./
  
						 
					
						
							
								
									
										
										
										
											2024-01-05 13:15:13 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								RUN  npm ci
  
						 
					
						
							
								
									
										
										
										
											2024-01-05 12:32:51 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-01-05 13:15:13 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								COPY  . .
  
						 
					
						
							
								
									
										
										
										
											2024-05-26 15:49:30 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ENV  APP_BUILD_HASH = ${ BUILD_HASH } 
  
						 
					
						
							
								
									
										
										
										
											2024-01-05 13:15:13 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								RUN  npm run build
  
						 
					
						
							
								
									
										
										
										
											2023-10-09 06:38:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-14 18:18:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								######## WebUI backend ######## 
  
						 
					
						
							
								
									
										
										
										
											2024-01-08 00:28:35 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								FROM  python:3.11-slim-bookworm as base 
  
						 
					
						
							
								
									
										
										
										
											2023-11-15 08:28:51 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-04-02 17:28:04 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# Use args 
  
						 
					
						
							
								
									
										
										
										
											2024-03-20 15:44:09 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_CUDA
  
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_OLLAMA
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ARG  USE_CUDA_VER
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ARG  USE_EMBEDDING_MODEL
  
						 
					
						
							
								
									
										
										
										
											2024-04-23 04:49:58 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  USE_RERANKING_MODEL
  
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  UID
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ARG  GID
  
						 
					
						
							
								
									
										
										
										
											2024-03-20 15:44:09 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-14 18:18:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								## Basis ## 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ENV  ENV = prod \
  
						 
					
						
							
								
									
										
										
										
											2024-03-22 16:31:35 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    PORT = 8080  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-03-22 19:48:48 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    # pass build args to the build 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    USE_OLLAMA_DOCKER = ${ USE_OLLAMA }  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    USE_CUDA_DOCKER = ${ USE_CUDA }  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    USE_CUDA_DOCKER_VER = ${ USE_CUDA_VER }  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 04:49:58 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    USE_EMBEDDING_MODEL_DOCKER = ${ USE_EMBEDDING_MODEL }  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    USE_RERANKING_MODEL_DOCKER = ${ USE_RERANKING_MODEL } 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-05 10:55:15 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-14 18:18:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								## Basis URL Config ## 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ENV  OLLAMA_BASE_URL = "/ollama"  \ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    OPENAI_API_BASE_URL = "" 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-05 10:55:15 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-14 18:18:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								## API Key and Security Config ## 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ENV  OPENAI_API_KEY = ""  \ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    WEBUI_SECRET_KEY = ""  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    SCARF_NO_ANALYTICS = true  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-01 03:10:44 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    DO_NOT_TRACK = true  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    ANONYMIZED_TELEMETRY = false
 
							 
						 
					
						
							
								
									
										
										
										
											2023-11-15 08:28:51 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								#### Other models ######################################################### 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								## whisper TTS model settings ## 
  
						 
					
						
							
								
									
										
										
										
											2024-03-14 18:18:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ENV  WHISPER_MODEL = "base"  \ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    WHISPER_MODEL_DIR = "/app/backend/data/cache/whisper/models" 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-02-10 10:11:01 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								## RAG Embedding model settings ## 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ENV  RAG_EMBEDDING_MODEL = " $USE_EMBEDDING_MODEL_DOCKER "  \ 
  
						 
					
						
							
								
									
										
										
										
											2024-04-23 04:49:58 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    RAG_RERANKING_MODEL = " $USE_RERANKING_MODEL_DOCKER "  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    SENTENCE_TRANSFORMERS_HOME = "/app/backend/data/cache/embedding/models" 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 07:36:46 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								## Hugging Face download cache ## 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ENV  HF_HOME = "/app/backend/data/cache/embedding/models" 
  
						 
					
						
							
								
									
										
										
										
											2024-04-02 20:47:52 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								#### Other models ########################################################## 
  
						 
					
						
							
								
									
										
										
										
											2024-02-18 02:38:29 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-15 08:28:51 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								WORKDIR  /app/backend 
  
						 
					
						
							
								
									
										
										
										
											2024-01-08 13:22:37 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-05-01 03:10:44 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ENV  HOME /root
  
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# Create user and group if not root 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  if  [  $UID  -ne 0  ] ;  then  \ 
  
						 
					
						
							
								
									
										
										
										
											2024-05-26 05:43:35 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    if  [  $GID  -ne 0  ] ;  then  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    addgroup --gid $GID  app;  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    fi ;  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    adduser --uid $UID  --gid $GID  --home $HOME  --disabled-password --no-create-home app;  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    fi 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-05-01 03:10:44 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								RUN  mkdir -p $HOME /.cache/chroma
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  echo  -n 00000000-0000-0000-0000-000000000000 > $HOME /.cache/chroma/telemetry_user_id
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# Make sure the user has access to the app and root directory 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  chown -R $UID :$GID  /app $HOME 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-04-10 20:39:46 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								RUN  if  [  " $USE_OLLAMA "  =  "true"  ] ;  then  \ 
  
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:17:18 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    apt-get update &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    # Install pandoc and netcat 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    apt-get install -y --no-install-recommends pandoc netcat-openbsd curl &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    # for RAG OCR 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    # install helper tools 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:44:10 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    apt-get install -y --no-install-recommends curl jq &&  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:17:18 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    # install ollama 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    curl -fsSL https://ollama.com/install.sh |  sh &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    # cleanup 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    rm -rf /var/lib/apt/lists/*;  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-03-19 00:08:34 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    else  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:17:18 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    apt-get update &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    # Install pandoc and netcat 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 10:45:00 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    apt-get install -y --no-install-recommends pandoc netcat-openbsd curl jq &&  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:17:18 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    # for RAG OCR 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    # cleanup 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    rm -rf /var/lib/apt/lists/*;  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-03-19 00:08:34 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    fi 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-04-10 20:39:46 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# install python dependencies 
  
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								COPY  --chown= $UID :$GID  ./backend/requirements.txt ./requirements.txt
  
						 
					
						
							
								
									
										
										
										
											2024-03-22 16:31:35 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-04-16 21:57:32 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								RUN  pip3 install uv &&  \ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    if  [  " $USE_CUDA "  =  "true"  ] ;  then  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:17:18 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    # If you use CUDA the whisper and embedding model will be downloaded on first use 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/$USE_CUDA_DOCKER_VER  --no-cache-dir &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    uv pip install --system -r requirements.txt --no-cache-dir &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    python -c "import os; from sentence_transformers import SentenceTransformer; SentenceTransformer(os.environ['RAG_EMBEDDING_MODEL'], device='cpu')"  &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    python -c "import os; from faster_whisper import WhisperModel; WhisperModel(os.environ['WHISPER_MODEL'], device='cpu', compute_type='int8', download_root=os.environ['WHISPER_MODEL_DIR'])" ;  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-03-22 16:31:35 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    else  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:17:18 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu --no-cache-dir &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    uv pip install --system -r requirements.txt --no-cache-dir &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    python -c "import os; from sentence_transformers import SentenceTransformer; SentenceTransformer(os.environ['RAG_EMBEDDING_MODEL'], device='cpu')"  &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    python -c "import os; from faster_whisper import WhisperModel; WhisperModel(os.environ['WHISPER_MODEL'], device='cpu', compute_type='int8', download_root=os.environ['WHISPER_MODEL_DIR'])" ;  \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2024-05-22 04:28:38 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    fi ;  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    chown -R $UID :$GID  /app/backend/data/
 
							 
						 
					
						
							
								
									
										
										
										
											2024-03-07 10:49:35 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-01-08 12:21:32 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-02-13 22:11:53 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-01-23 20:48:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# copy embedding weight from build 
  
						 
					
						
							
								
									
										
										
										
											2024-03-14 18:18:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# RUN mkdir -p /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# COPY --from=build /app/onnx /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2/onnx 
  
						 
					
						
							
								
									
										
										
										
											2024-01-23 20:48:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# copy built frontend files 
  
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								COPY  --chown= $UID :$GID  --from= build /app/build /app/build
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								COPY  --chown= $UID :$GID  --from= build /app/CHANGELOG.md /app/CHANGELOG.md
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								COPY  --chown= $UID :$GID  --from= build /app/package.json /app/package.json
  
						 
					
						
							
								
									
										
										
										
											2024-01-23 20:48:27 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# copy backend files 
  
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								COPY  --chown= $UID :$GID  ./backend .
  
						 
					
						
							
								
									
										
										
										
											2023-11-15 08:28:51 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-17 03:11:09 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								EXPOSE  8080 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-05-16 02:44:10 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								HEALTHCHECK  CMD curl --silent --fail http://localhost:8080/health |  jq -e '.status == true'  ||  exit  1 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-05-17 00:23:08 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								USER  $UID:$GID 
  
						 
					
						
							
								
									
										
										
										
											2024-05-10 03:25:26 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-06-01 21:16:39 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ARG  BUILD_HASH
  
						 
					
						
							
								
									
										
										
										
											2024-05-26 15:49:30 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ENV  WEBUI_BUILD_VERSION = ${ BUILD_HASH } 
  
						 
					
						
							
								
									
										
										
										
											2024-05-23 03:22:38 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-05-01 04:05:11 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								CMD  [  "bash" ,  "start.sh" ]