From f076c55244aaeab33f12530336adfefecb6f861f Mon Sep 17 00:00:00 2001 From: Omar Khleif Date: Wed, 5 Feb 2025 10:24:06 -0800 Subject: [PATCH 01/47] Added tests + updated docs for asr mp3 change (#51) * Added tests + updated docs for asr mp3 change Signed-off-by: okhleif-IL * addressed review comments Signed-off-by: okhleif-IL --------- Signed-off-by: okhleif-IL --- MultimodalQnA/docker_compose/intel/cpu/xeon/README.md | 4 ++-- MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md | 4 ++-- MultimodalQnA/tests/test_compose_on_gaudi.sh | 7 +++++-- MultimodalQnA/tests/test_compose_on_xeon.sh | 7 +++++-- 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index 7e4fa6894a..467560e68e 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -315,7 +315,7 @@ curl http://${host_ip}:${LVM_PORT}/v1/lvm \ 7. dataprep-multimodal-redis -Download a sample video, image, pdf, and audio file and create a caption +Download a sample video (.mp4), image (.png, .gif, .jpg), pdf, and audio file (.wav, .mp3) and create a caption ```bash export video_fn="WeAreGoingOnBullrun.mp4" @@ -334,7 +334,7 @@ export audio_fn="AudioSample.wav" wget https://github.com/intel/intel-extension-for-transformers/raw/main/intel_extension_for_transformers/neural_chat/assets/audio/sample.wav -O ${audio_fn} ``` -Test dataprep microservice with generating transcript. This command updates a knowledge base by uploading a local video .mp4 and an audio .wav file. +Test dataprep microservice with generating transcript. This command updates a knowledge base by uploading a local video .mp4 and an audio .wav or .mp3 file. ```bash curl --silent --write-out "HTTPSTATUS:%{http_code}" \ diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index 2379fc3d4d..d6ebb795c9 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -261,7 +261,7 @@ curl http://${host_ip}:${LVM_PORT}/v1/lvm \ 7. Multimodal Dataprep Microservice -Download a sample video, image, PDF, and audio file and create a caption +Download a sample video (.mp4), image (.png, .gif, .jpg), pdf, and audio file (.wav, .mp3) and create a caption ```bash export video_fn="WeAreGoingOnBullrun.mp4" @@ -280,7 +280,7 @@ export audio_fn="AudioSample.wav" wget https://github.com/intel/intel-extension-for-transformers/raw/main/intel_extension_for_transformers/neural_chat/assets/audio/sample.wav -O ${audio_fn} ``` -Test dataprep microservice with generating transcript. This command updates a knowledge base by uploading a local video .mp4 and an audio .wav file. +Test dataprep microservice with generating transcript. This command updates a knowledge base by uploading a local video .mp4 and an audio .wav or .mp3 file. ```bash curl --silent --write-out "HTTPSTATUS:%{http_code}" \ diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index ccb4f1894d..7fbaac4119 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -16,6 +16,7 @@ ip_address=$(hostname -I | awk '{print $1}') export image_fn="apple.png" export video_fn="WeAreGoingOnBullrun.mp4" +export audio_fn="sample_audio.mp3" export caption_fn="apple.txt" export pdf_fn="nke-10k-2023.pdf" @@ -116,6 +117,7 @@ function prepare_data() { cd $LOG_PATH echo "Downloading image and video" wget https://github.com/docarray/docarray/blob/main/tests/toydata/image-data/apple.png?raw=true -O ${image_fn} + wget https://github.com/intel/intel-extension-for-transformers/raw/refs/tags/v1.5/intel_extension_for_transformers/neural_chat/ui/customized/talkingbot/src/lib/components/talkbot/assets/mid-age-man.mp3 -O ${audio_fn} wget http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/WeAreGoingOnBullrun.mp4 -O ${video_fn} wget https://raw.githubusercontent.com/opea-project/GenAIComps/v1.1/comps/retrievers/redis/data/nke-10k-2023.pdf -O ${pdf_fn} echo "Writing caption file" @@ -133,7 +135,7 @@ function validate_service() { if [[ $SERVICE_NAME == *"dataprep-multimodal-redis-transcript"* ]]; then cd $LOG_PATH - HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${video_fn}" -H 'Content-Type: multipart/form-data' "$URL") + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${video_fn}" -F "files=@./${audio_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-caption"* ]]; then cd $LOG_PATH HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -H 'Content-Type: multipart/form-data' "$URL") @@ -344,7 +346,7 @@ function validate_megaservice() { function validate_delete { echo "Validating data prep delete files" - export DATAPREP_DELETE_FILE_ENDPOINT="http://${host_ip}:6007/v1/dataprep/delete" + export DATAPREP_DELETE_FILE_ENDPOINT="http://${host_ip}:${DATAPREP_MMR_PORT}/v1/dataprep/delete" validate_service \ "${DATAPREP_DELETE_FILE_ENDPOINT}" \ '{"status":true}' \ @@ -357,6 +359,7 @@ function delete_data() { echo "Deleting image, video, and caption" rm -rf ${image_fn} rm -rf ${video_fn} + rm -rf ${audio_fn} rm -rf ${caption_fn} rm -rf ${pdf_fn} } diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index b5d254b58c..e7a2ccf519 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -16,6 +16,7 @@ ip_address=$(hostname -I | awk '{print $1}') export image_fn="apple.png" export video_fn="WeAreGoingOnBullrun.mp4" +export audio_fn="sample_audio.mp3" export caption_fn="apple.txt" export pdf_fn="nke-10k-2023.pdf" @@ -113,6 +114,7 @@ function prepare_data() { cd $LOG_PATH echo "Downloading image and video" wget https://github.com/docarray/docarray/blob/main/tests/toydata/image-data/apple.png?raw=true -O ${image_fn} + wget https://github.com/intel/intel-extension-for-transformers/raw/refs/tags/v1.5/intel_extension_for_transformers/neural_chat/ui/customized/talkingbot/src/lib/components/talkbot/assets/mid-age-man.mp3 -O ${audio_fn} wget http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/WeAreGoingOnBullrun.mp4 -O ${video_fn} wget https://raw.githubusercontent.com/opea-project/GenAIComps/v1.1/comps/retrievers/redis/data/nke-10k-2023.pdf -O ${pdf_fn} echo "Writing caption file" @@ -130,7 +132,7 @@ function validate_service() { if [[ $SERVICE_NAME == *"dataprep-multimodal-redis-transcript"* ]]; then cd $LOG_PATH - HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${video_fn}" -H 'Content-Type: multipart/form-data' "$URL") + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${video_fn}" -F "files=@./${audio_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-caption"* ]]; then cd $LOG_PATH HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -H 'Content-Type: multipart/form-data' "$URL") @@ -340,7 +342,7 @@ function validate_megaservice() { function validate_delete { echo "Validating data prep delete files" - export DATAPREP_DELETE_FILE_ENDPOINT="http://${host_ip}:6007/v1/dataprep/delete" + export DATAPREP_DELETE_FILE_ENDPOINT="http://${host_ip}:${DATAPREP_MMR_PORT}/v1/dataprep/delete" validate_service \ "${DATAPREP_DELETE_FILE_ENDPOINT}" \ '{"status":true}' \ @@ -353,6 +355,7 @@ function delete_data() { echo "Deleting image, video, and caption" rm -rf ${image_fn} rm -rf ${video_fn} + rm -rf ${audio_fn} rm -rf ${pdf_fn} rm -rf ${caption_fn} } From 11f797e135e1523c29acd3f3ff70b2f99642afd3 Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Wed, 5 Feb 2025 13:30:59 -0800 Subject: [PATCH 02/47] first commit for tts addition Signed-off-by: okhleif-IL --- .../docker_compose/intel/cpu/xeon/README.md | 44 ++++++++++++++----- .../intel/cpu/xeon/compose.yaml | 13 ++++++ .../docker_compose/intel/cpu/xeon/set_env.sh | 3 ++ .../docker_compose/intel/hpu/gaudi/README.md | 38 +++++++++++----- .../intel/hpu/gaudi/compose.yaml | 18 ++++++++ .../docker_compose/intel/hpu/gaudi/set_env.sh | 3 ++ MultimodalQnA/docker_image_build/build.yaml | 18 ++++++++ 7 files changed, 116 insertions(+), 21 deletions(-) diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index 467560e68e..7d9b2e5677 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -44,6 +44,10 @@ whisper === port 7066 - Open to 0.0.0.0/0 +speecht5-service +=== +port 7055 - Open to 0.0.0.0/0 + dataprep-multimodal-redis === Port 6007 - Open to 0.0.0.0/0 @@ -86,6 +90,8 @@ export MEGA_SERVICE_HOST_IP=${host_ip} export WHISPER_PORT=7066 export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" export WHISPER_MODEL="base" +export TTS_PORT=7055 +export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" export MAX_IMAGES=1 export REDIS_DB_PORT=6379 export REDIS_INSIGHTS_PORT=8001 @@ -172,7 +178,13 @@ Build whisper server image docker build --no-cache -t opea/whisper:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/asr/src/integrations/dependency/whisper/Dockerfile . ``` -### 6. Build MegaService Docker Image +### 6. Build TTS Image + +```bash +docker build -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . +``` + +### 7. Build MegaService Docker Image To construct the Mega Service, we utilize the [GenAIComps](https://github.com/opea-project/GenAIComps.git) microservice pipeline within the [multimodalqna.py](../../../../multimodalqna.py) Python script. Build MegaService Docker image via below command: @@ -183,7 +195,7 @@ docker build --no-cache -t opea/multimodalqna:latest --build-arg https_proxy=$ht cd ../.. ``` -### 7. Build UI Docker Image +### 8. Build UI Docker Image Build frontend Docker image via below command: @@ -200,11 +212,12 @@ Then run the command `docker images`, you will have the following 11 Docker Imag 3. `opea/lvm-llava:latest` 4. `opea/retriever:latest` 5. `opea/whisper:latest` -6. `opea/redis-vector-db` -7. `opea/embedding:latest` -8. `opea/embedding-multimodal-bridgetower:latest` -9. `opea/multimodalqna:latest` -10. `opea/multimodalqna-ui:latest` +6. `opea/speech5:latest` +7. `opea/redis-vector-db` +8. `opea/embedding:latest` +9. `opea/embedding-multimodal-bridgetower:latest` +10. `opea/multimodalqna:latest` +11. `opea/multimodalqna-ui:latest` ## 🚀 Start Microservices @@ -279,7 +292,16 @@ curl ${WHISPER_SERVER_ENDPOINT} \ -d '{"audio" : "UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"}' ``` -5. lvm-llava +5. tts + +```bash +curl ${TTS_ENDPOINT} \ + -X POST \ + -d '{"text": "Who are you?"}' \ + -H 'Content-Type: application/json' +``` + +6. lvm-llava ```bash curl http://${host_ip}:${LLAVA_SERVER_PORT}/generate \ @@ -288,7 +310,7 @@ curl http://${host_ip}:${LLAVA_SERVER_PORT}/generate \ -d '{"prompt":"Describe the image please.", "img_b64_str": "iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAFUlEQVR42mP8/5+hnoEIwDiqkL4KAcT9GO0U4BxoAAAAAElFTkSuQmCC"}' ``` -6. lvm +7. lvm ```bash curl http://${host_ip}:${LVM_PORT}/v1/lvm \ @@ -313,7 +335,7 @@ curl http://${host_ip}:${LVM_PORT}/v1/lvm \ -d '{"retrieved_docs": [], "initial_query": "What is this?", "top_n": 1, "metadata": [], "chat_template":"The caption of the image is: '\''{context}'\''. {question}"}' ``` -7. dataprep-multimodal-redis +8. dataprep-multimodal-redis Download a sample video (.mp4), image (.png, .gif, .jpg), pdf, and audio file (.wav, .mp3) and create a caption @@ -393,7 +415,7 @@ curl -X POST \ ${DATAPREP_DELETE_FILE_ENDPOINT} ``` -8. MegaService +9. MegaService Test the MegaService with a text query: diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml index 31f543c755..5e5144e504 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml @@ -13,6 +13,19 @@ services: http_proxy: ${http_proxy} https_proxy: ${https_proxy} restart: unless-stopped + speecht5-service: + image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} + container_name: speecht5-service + ports: + - "${TTS_PORT}:7055" + ipc: host + environment: + no_proxy: ${no_proxy} + http_proxy: ${http_proxy} + https_proxy: ${https_proxy} + TTS_PORT: ${TTS_PORT} + TTS_ENDPOINT: ${TTS_ENDPOINT} + restart: unless-stopped redis-vector-db: image: redis/redis-stack:7.2.0-v9 container_name: redis-vector-db diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh index 057f90990c..e85208997b 100755 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh @@ -17,6 +17,9 @@ export MM_RETRIEVER_SERVICE_HOST_IP=${host_ip} export LVM_SERVICE_HOST_IP=${host_ip} export MEGA_SERVICE_HOST_IP=${host_ip} +export TTS_PORT=7055 +export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" + export WHISPER_PORT=7066 export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" export WHISPER_MODEL="base" diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index d6ebb795c9..09c10047b9 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -120,7 +120,15 @@ Build whisper server image docker build --no-cache -t opea/whisper:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/asr/src/integrations/dependency/whisper/Dockerfile . ``` -### 6. Build MegaService Docker Image +### 6. Build TTS Server Image + +Build TTS server image + +```bash +docker build -t opea/speecht5-gaudi:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile.intel_hpu . +``` + +### 7. Build MegaService Docker Image To construct the Mega Service, we utilize the [GenAIComps](https://github.com/opea-project/GenAIComps.git) microservice pipeline within the [multimodalqna.py](../../../../multimodalqna.py) Python script. Build MegaService Docker image via below command: @@ -130,7 +138,7 @@ cd GenAIExamples/MultimodalQnA docker build --no-cache -t opea/multimodalqna:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile . ``` -### 6. Build UI Docker Image +### 8. Build UI Docker Image Build frontend Docker image via below command: @@ -146,11 +154,12 @@ Then run the command `docker images`, you will have the following 11 Docker Imag 3. `ghcr.io/huggingface/tgi-gaudi:2.0.6` 4. `opea/retriever:latest` 5. `opea/whisper:latest` -6. `opea/redis-vector-db` -7. `opea/embedding:latest` -8. `opea/embedding-multimodal-bridgetower:latest` -9. `opea/multimodalqna:latest` -10. `opea/multimodalqna-ui:latest` +6. `opea/speech5-gaudi:latest` +7. `opea/redis-vector-db` +8. `opea/embedding:latest` +9. `opea/embedding-multimodal-bridgetower:latest` +10. `opea/multimodalqna:latest` +11. `opea/multimodalqna-ui:latest` ## 🚀 Start Microservices @@ -234,7 +243,16 @@ curl http://${host_ip}:${LLAVA_SERVER_PORT}/generate \ -H 'Content-Type: application/json' ``` -6. lvm +6. tts + +```bash +curl ${TTS_ENDPOINT} \ + -X POST \ + -d '{"text": "Who are you?"}' \ + -H 'Content-Type: application/json' +``` + +7. lvm ```bash curl http://${host_ip}:${LVM_PORT}/v1/lvm \ @@ -259,7 +277,7 @@ curl http://${host_ip}:${LVM_PORT}/v1/lvm \ -d '{"retrieved_docs": [], "initial_query": "What is this?", "top_n": 1, "metadata": [], "chat_template":"The caption of the image is: '\''{context}'\''. {question}"}' ``` -7. Multimodal Dataprep Microservice +8. Multimodal Dataprep Microservice Download a sample video (.mp4), image (.png, .gif, .jpg), pdf, and audio file (.wav, .mp3) and create a caption @@ -339,7 +357,7 @@ curl -X POST \ ${DATAPREP_DELETE_FILE_ENDPOINT} ``` -8. MegaService +9. MegaService Test the MegaService with a text query: diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml index 26b5610f5e..0a9af50226 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml @@ -21,6 +21,24 @@ services: WHISPER_PORT: ${WHISPER_PORT} WHISPER_SERVER_ENDPOINT: ${WHISPER_SERVER_ENDPOINT} restart: unless-stopped + speecht5-service: + image: ${REGISTRY:-opea}/speecht5-gaudi:${TAG:-latest} + container_name: speecht5-service + ports: + - "${TTS_PORT}:${TTS_PORT}" + ipc: host + environment: + no_proxy: ${no_proxy} + http_proxy: ${http_proxy} + https_proxy: ${https_proxy} + TTS_PORT: ${TTS_PORT} + TTS_ENDPOINT: ${TTS_ENDPOINT} + HABANA_VISIBLE_DEVICES: all + OMPI_MCA_btl_vader_single_copy_mechanism: none + runtime: habana + cap_add: + - SYS_NICE + restart: unless-stopped dataprep-multimodal-redis: image: ${REGISTRY:-opea}/dataprep:${TAG:-latest} container_name: dataprep-multimodal-redis diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh index cc35d58d08..9c00377785 100755 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh @@ -23,6 +23,9 @@ export REDIS_URL="redis://${host_ip}:${REDIS_DB_PORT}" export REDIS_HOST=${host_ip} export INDEX_NAME="mm-rag-redis" +export TTS_PORT=7055 +export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" + export WHISPER_MODEL="base" export WHISPER_PORT=7066 export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" diff --git a/MultimodalQnA/docker_image_build/build.yaml b/MultimodalQnA/docker_image_build/build.yaml index 1fc599c3e5..0885b2d911 100644 --- a/MultimodalQnA/docker_image_build/build.yaml +++ b/MultimodalQnA/docker_image_build/build.yaml @@ -65,3 +65,21 @@ services: dockerfile: comps/asr/src/integrations/dependency/whisper/Dockerfile extends: multimodalqna image: ${REGISTRY:-opea}/whisper:${TAG:-latest} + speecht5-gaudi: + build: + context: GenAIComps + dockerfile: comps/tts/src/integrations/dependency/speecht5/Dockerfile.intel_hpu + extends: multimodalqna + image: ${REGISTRY:-opea}/speecht5-gaudi:${TAG:-latest} + speecht5: + build: + context: GenAIComps + dockerfile: comps/tts/src/integrations/dependency/speecht5/Dockerfile + extends: multimodalqna + image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} + tts: + build: + context: GenAIComps + dockerfile: comps/tts/src/Dockerfile + extends: multimodalqna + image: ${REGISTRY:-opea}/tts:${TAG:-latest} From 05ddb11c55a706a4da5799293ae3d336ce1611d1 Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Fri, 7 Feb 2025 14:51:09 -0800 Subject: [PATCH 03/47] added TTS linkage to backend Signed-off-by: okhleif-IL --- MultimodalQnA/multimodalqna.py | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index 0e3f87d190..8479f1d14e 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -9,6 +9,7 @@ import requests from comps import MegaServiceEndpoint, MicroService, ServiceOrchestrator, ServiceRoleType, ServiceType from comps.cores.proto.api_protocol import ( + AudioChatCompletionRequest, ChatCompletionRequest, ChatCompletionResponse, ChatCompletionResponseChoice, @@ -29,6 +30,8 @@ LVM_SERVICE_PORT = int(os.getenv("LVM_PORT", 9399)) WHISPER_PORT = int(os.getenv("WHISPER_PORT", 7066)) WHISPER_SERVER_ENDPOINT = os.getenv("WHISPER_SERVER_ENDPOINT", "http://0.0.0.0:$WHISPER_PORT/v1/asr") +TTS_PORT = int(os.getenv("TTS_PORT", 7055)) +TTS_ENDPOINT = os.getenv("TTS_ENDPOINT", "http://0.0.0.0:7055/v1/tts") def align_inputs(self, inputs, cur_node, runtime_graph, llm_parameters_dict, **kwargs): @@ -251,6 +254,22 @@ def convert_audio_to_text(self, audio): response = response.json() return response["asr_result"] + + def convert_text_to_audio(self, text): + if isinstance(text, dict): + input_dict = {"text": text["text"]} + else: + input_dict = {"text": text} + + response = requests.post(TTS_ENDPOINT, data=json.dumps(input_dict)) + + if response.status_code != 200: + return JSONResponse( + status_code=503, content={"message": "Unable to convert text to audio. {}".format(response.text)} + ) + + response = response.json() + return response["tts_result"] async def handle_request(self, request: Request): """MultimodalQnA accepts input queries as text, images, and/or audio. @@ -335,6 +354,10 @@ async def handle_request(self, request: Request): if "text" in result_dict[last_node].keys(): response = result_dict[last_node]["text"] + + # toggle on and off? + tts_audio = self.convert_text_to_audio(response) + else: # text is not in response message # something wrong, for example due to empty retrieval results @@ -345,14 +368,16 @@ async def handle_request(self, request: Request): if "metadata" in result_dict[last_node].keys(): # from retrieval results metadata = result_dict[last_node]["metadata"] + metadata["tts_response"] = tts_audio if decoded_audio_input: metadata["audio"] = decoded_audio_input else: # follow-up question, no retrieval if decoded_audio_input: metadata = {"audio": decoded_audio_input} + metadata["tts_response"] = tts_audio else: - metadata = None + metadata = {"tts_response": tts_audio} choices = [] usage = UsageInfo() From ee62b734dc106537b9a5b37d935eb5a6b80c79eb Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Fri, 7 Feb 2025 15:35:39 -0800 Subject: [PATCH 04/47] removed unused import Signed-off-by: okhleif-IL --- MultimodalQnA/multimodalqna.py | 1 - 1 file changed, 1 deletion(-) diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index 8479f1d14e..71c83fe235 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -9,7 +9,6 @@ import requests from comps import MegaServiceEndpoint, MicroService, ServiceOrchestrator, ServiceRoleType, ServiceType from comps.cores.proto.api_protocol import ( - AudioChatCompletionRequest, ChatCompletionRequest, ChatCompletionResponse, ChatCompletionResponseChoice, From 0f4e77d14af0239831d573a2e0252ebf9631f3db Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Mon, 10 Feb 2025 11:10:53 -0800 Subject: [PATCH 05/47] added necessary env vars Signed-off-by: okhleif-IL --- MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml index 5e5144e504..297888fc32 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml @@ -165,6 +165,8 @@ services: LVM_MODEL_ID: ${LVM_MODEL_ID} WHISPER_PORT: ${WHISPER_PORT} WHISPER_SERVER_ENDPOINT: ${WHISPER_SERVER_ENDPOINT} + TTS_PORT: ${TTS_PORT} + TTS_ENDPOINT: ${TTS_ENDPOINT} ipc: host restart: always multimodalqna-ui: From 66a89d6074df378120b07d5e250db6b4b5c2bcf6 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Mon, 10 Feb 2025 12:55:09 -0800 Subject: [PATCH 06/47] MMQnA UI option to show/delete files from vector store (#52) * Added logic for showing/deleting files from vector store Signed-off-by: Harsha Ramayanam * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Added message to show when vector store is empty Signed-off-by: Harsha Ramayanam * Update MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py Co-authored-by: Dina Suehiro Jones --------- Signed-off-by: Harsha Ramayanam Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Dina Suehiro Jones --- .../intel/cpu/xeon/compose.yaml | 2 + .../ui/gradio/multimodalqna_ui_gradio.py | 58 +++++++++++++++++++ 2 files changed, 60 insertions(+) diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml index fcb29b55d8..83e55386cd 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml @@ -170,6 +170,8 @@ services: - DATAPREP_INGEST_SERVICE_ENDPOINT=${DATAPREP_INGEST_SERVICE_ENDPOINT} - DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT=${DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT} - DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT=${DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT} + - DATAPREP_GET_FILE_ENDPOINT=${DATAPREP_GET_FILE_ENDPOINT} + - DATAPREP_DELETE_FILE_ENDPOINT=${DATAPREP_DELETE_FILE_ENDPOINT} - MEGA_SERVICE_PORT:=${MEGA_SERVICE_PORT} - UI_PORT=${UI_PORT} - DATAPREP_MMR_PORT=${DATAPREP_MMR_PORT} diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 7919ce5910..1ba4f43c2b 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -431,6 +431,39 @@ def clear_text(request: gr.Request): return None +def get_files(): + try: + response = requests.post(dataprep_get_file_addr, headers=headers) + logger.info(response.status_code) + files = response.json() + if files: + html_content = "
    " + "".join(f"
  • {item}
  • " for item in files) + "
" + yield ( + gr.HTML(html_content, visible=True, max_height=200) + ) + return + else: + yield ( + gr.HTML("Vector store is empty.", visible=True) + ) + return + except Exception as e: + logger.info(f"Error getting files from vector store: {str(e)}") + + +def delete_files(): + import json + + data = {"file_path": "all"} + try: + response = requests.post(dataprep_delete_file_addr, headers=headers, data=json.dumps(data)) + logger.info(response.status_code) + yield (gr.update(value="Deleted all files!")) + return + except Exception as e: + logger.info(f"Error deleting files from vector store: {str(e)}") + + with gr.Blocks() as upload_video: gr.Markdown("# Ingest Videos Using Generated Transcripts or Captions") gr.Markdown("Use this interface to ingest a video and generate transcripts or captions for it") @@ -577,6 +610,19 @@ def select_upload_type(choice, request: gr.Request): ], [state, chatbot, video, image, pdf, clear_btn], ) + +with gr.Blocks() as vector_store: + gr.Markdown("# Uploaded Files") + + with gr.Row(): + with gr.Column(scale=6): + files = gr.HTML(visible=False) + with gr.Column(scale=3): + refresh_btn = gr.Button(value="↻ Refresh", interactive=True, variant="primary") + delete_btn = gr.Button(value="🗑️ Delete", interactive=True, variant="stop") + refresh_btn.click(get_files, None, [files]) + delete_btn.click(delete_files, None, [files]) + with gr.Blocks(css=css) as demo: gr.Markdown("# MultimodalQnA") with gr.Tabs(): @@ -590,6 +636,8 @@ def select_upload_type(choice, request: gr.Request): upload_audio.render() with gr.TabItem("Upload PDF"): upload_pdf.render() + with gr.TabItem("Vector Store"): + vector_store.render() demo.queue() app = gr.mount_gradio_app(app, demo, path="/") @@ -618,6 +666,12 @@ def select_upload_type(choice, request: gr.Request): dataprep_gen_caption_endpoint = os.getenv( "DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT", f"http://localhost:{DATAPREP_MMR_PORT}/v1/generate_captions" ) + dataprep_get_file_endpoint = os.getenv( + "DATAPREP_GET_FILE_ENDPOINT", f"http://localhost:{DATAPREP_MMR_PORT}/v1/dataprep/get" + ) + dataprep_delete_file_endpoint = os.getenv( + "DATAPREP_DELETE_FILE_ENDPOINT", f"http://localhost:{DATAPREP_MMR_PORT}/v1/dataprep/delete" + ) args = parser.parse_args() logger.info(f"args: {args}") global gateway_addr @@ -628,5 +682,9 @@ def select_upload_type(choice, request: gr.Request): dataprep_gen_transcript_addr = dataprep_gen_transcript_endpoint global dataprep_gen_caption_addr dataprep_gen_caption_addr = dataprep_gen_caption_endpoint + global dataprep_get_file_addr + dataprep_get_file_addr = dataprep_get_file_endpoint + global dataprep_delete_file_addr + dataprep_delete_file_addr = dataprep_delete_file_endpoint uvicorn.run(app, host=args.host, port=args.port) From 5527bc33bc8a89763433bad5b2e6b144574fed42 Mon Sep 17 00:00:00 2001 From: Melanie Hart Buehler Date: Mon, 10 Feb 2025 14:02:20 -0800 Subject: [PATCH 07/47] Configurable UI timeout (#54) * Parameterize UI timeout and increase default Signed-off-by: Melanie Buehler * Add new variable to compose.yaml Signed-off-by: Melanie Buehler * Update READMEs Signed-off-by: Melanie Buehler --------- Signed-off-by: Melanie Buehler --- MultimodalQnA/docker_compose/intel/cpu/xeon/README.md | 1 + MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml | 1 + MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh | 1 + MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md | 1 + MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml | 1 + MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh | 1 + MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 4 +++- 7 files changed, 9 insertions(+), 1 deletion(-) diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index 467560e68e..a618324493 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -111,6 +111,7 @@ export LVM_ENDPOINT="http://${host_ip}:$LLAVA_SERVER_PORT" export MEGA_SERVICE_PORT=8888 export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:$MEGA_SERVICE_PORT/v1/multimodalqna" export UI_PORT=5173 +export UI_TIMEOUT=200 ``` Note: Please replace with `host_ip` with you external IP address, do not use localhost. diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml index 83e55386cd..cef5843c63 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml @@ -174,6 +174,7 @@ services: - DATAPREP_DELETE_FILE_ENDPOINT=${DATAPREP_DELETE_FILE_ENDPOINT} - MEGA_SERVICE_PORT:=${MEGA_SERVICE_PORT} - UI_PORT=${UI_PORT} + - UI_TIMEOUT=${UI_TIMEOUT} - DATAPREP_MMR_PORT=${DATAPREP_MMR_PORT} ipc: host restart: always diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh index e2a143e5d9..c5a7ab2aec 100755 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh @@ -57,3 +57,4 @@ export MEGA_SERVICE_PORT=8888 export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" export UI_PORT=5173 +export UI_TIMEOUT=200 diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index d6ebb795c9..969c763119 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -57,6 +57,7 @@ export LVM_ENDPOINT="http://${host_ip}:${LLAVA_SERVER_PORT}" export MEGA_SERVICE_PORT=8888 export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" export UI_PORT=5173 +export UI_TIMEOUT=200 ``` Note: Please replace with `host_ip` with you external IP address, do not use localhost. diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml index eeaa08449c..22ef768406 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml @@ -202,6 +202,7 @@ services: - DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT=${DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT} - MEGA_SERVICE_PORT:=${MEGA_SERVICE_PORT} - UI_PORT=${UI_PORT} + - UI_TIMEOUT=${UI_TIMEOUT} - DATAPREP_MMR_PORT=${DATAPREP_MMR_PORT} ipc: host restart: always diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh index a4bd92bf39..f7026263cd 100755 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh @@ -59,3 +59,4 @@ export MEGA_SERVICE_PORT=8888 export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" export UI_PORT=5173 +export UI_TIMEOUT=200 diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 1ba4f43c2b..b32faa71f4 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -19,6 +19,8 @@ logger = build_logger("gradio_web_server", "gradio_web_server.log") logflag = os.getenv("LOGFLAG", False) +ui_timeout = int(os.getenv("UI_TIMEOUT", 200)) + headers = {"Content-Type": "application/json"} css = """ @@ -132,7 +134,7 @@ def http_bot(state, request: gr.Request): url, headers=headers, json=pload, - timeout=100, + timeout=ui_timeout, ) logger.info(response.status_code) if logflag: From e500c10f605df5670ca2d60b7e5c3e148514420b Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Tue, 11 Feb 2025 10:41:44 -0800 Subject: [PATCH 08/47] reworked temp tts toggle logic Signed-off-by: okhleif-IL --- MultimodalQnA/multimodalqna.py | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index 71c83fe235..973da4587c 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -351,11 +351,16 @@ async def handle_request(self, request: Request): return response last_node = runtime_graph.all_leaves()[-1] + # Temporary until we create a toggle in the UI + tts = True + tts_audio = "" if "text" in result_dict[last_node].keys(): response = result_dict[last_node]["text"] + print("Text response is ", response) # toggle on and off? - tts_audio = self.convert_text_to_audio(response) + if tts: + tts_audio = self.convert_text_to_audio(response) else: # text is not in response message @@ -367,23 +372,27 @@ async def handle_request(self, request: Request): if "metadata" in result_dict[last_node].keys(): # from retrieval results metadata = result_dict[last_node]["metadata"] - metadata["tts_response"] = tts_audio if decoded_audio_input: metadata["audio"] = decoded_audio_input else: # follow-up question, no retrieval if decoded_audio_input: metadata = {"audio": decoded_audio_input} - metadata["tts_response"] = tts_audio else: - metadata = {"tts_response": tts_audio} + metadata = None choices = [] usage = UsageInfo() + + if tts and tts_audio: + chat_message = ChatMessage(role="assistant", content=response, audio={"data": tts_audio}) + else: + chat_message = ChatMessage(role="assistant", content=response) + choices.append( ChatCompletionResponseChoice( index=0, - message=ChatMessage(role="assistant", content=response), + message=chat_message, finish_reason="stop", metadata=metadata, ) From aafee334e999ebeae83b1d944b428f788fc445d6 Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Tue, 11 Feb 2025 15:45:10 -0800 Subject: [PATCH 09/47] added modalities as a toggle Signed-off-by: okhleif-IL --- MultimodalQnA/multimodalqna.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index 973da4587c..93f15de2da 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -351,15 +351,13 @@ async def handle_request(self, request: Request): return response last_node = runtime_graph.all_leaves()[-1] - # Temporary until we create a toggle in the UI - tts = True tts_audio = "" if "text" in result_dict[last_node].keys(): response = result_dict[last_node]["text"] print("Text response is ", response) - # toggle on and off? - if tts: + # toggle for TTS + if "audio" in data["modalities"]: tts_audio = self.convert_text_to_audio(response) else: @@ -384,7 +382,7 @@ async def handle_request(self, request: Request): choices = [] usage = UsageInfo() - if tts and tts_audio: + if tts_audio: chat_message = ChatMessage(role="assistant", content=response, audio={"data": tts_audio}) else: chat_message = ChatMessage(role="assistant", content=response) @@ -397,7 +395,7 @@ async def handle_request(self, request: Request): metadata=metadata, ) ) - return ChatCompletionResponse(model="multimodalqna", choices=choices, usage=usage) + return ChatCompletionResponse(model="multimodalqna", choices=choices, usage=usage, modalities=data["modalities"]) def start(self): self.service = MicroService( From e686ec3b709cd61511acba36b3db9e1b5456f97e Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Wed, 12 Feb 2025 10:09:59 -0800 Subject: [PATCH 10/47] removed print statement Signed-off-by: okhleif-IL --- MultimodalQnA/multimodalqna.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index 93f15de2da..df6159aca3 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -354,9 +354,7 @@ async def handle_request(self, request: Request): tts_audio = "" if "text" in result_dict[last_node].keys(): response = result_dict[last_node]["text"] - print("Text response is ", response) - - # toggle for TTS + # Toggle for TTS if "audio" in data["modalities"]: tts_audio = self.convert_text_to_audio(response) From e4ae51d37d50fe94e69d213d949d2f36e9fcec40 Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Wed, 12 Feb 2025 10:51:39 -0800 Subject: [PATCH 11/47] removed gaudi from tts Signed-off-by: okhleif-IL --- MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md | 5 +++-- .../docker_compose/intel/hpu/gaudi/compose.yaml | 9 ++------- MultimodalQnA/multimodalqna.py | 1 - 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index 09c10047b9..701bfad31e 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -125,7 +125,7 @@ docker build --no-cache -t opea/whisper:latest --build-arg https_proxy=$https_pr Build TTS server image ```bash -docker build -t opea/speecht5-gaudi:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile.intel_hpu . +docker build -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . ``` ### 7. Build MegaService Docker Image @@ -154,7 +154,7 @@ Then run the command `docker images`, you will have the following 11 Docker Imag 3. `ghcr.io/huggingface/tgi-gaudi:2.0.6` 4. `opea/retriever:latest` 5. `opea/whisper:latest` -6. `opea/speech5-gaudi:latest` +6. `opea/speech5:latest` 7. `opea/redis-vector-db` 8. `opea/embedding:latest` 9. `opea/embedding-multimodal-bridgetower:latest` @@ -167,6 +167,7 @@ Then run the command `docker images`, you will have the following 11 Docker Imag By default, the multimodal-embedding and LVM models are set to a default value as listed below: + | Service | Model | | --------- | ------------------------------------------- | | embedding | BridgeTower/bridgetower-large-itm-mlm-gaudi | diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml index 27cd55c653..1cbbb6cd30 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml @@ -22,10 +22,10 @@ services: WHISPER_SERVER_ENDPOINT: ${WHISPER_SERVER_ENDPOINT} restart: unless-stopped speecht5-service: - image: ${REGISTRY:-opea}/speecht5-gaudi:${TAG:-latest} + image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} container_name: speecht5-service ports: - - "${TTS_PORT}:${TTS_PORT}" + - "${TTS_PORT}:7055" ipc: host environment: no_proxy: ${no_proxy} @@ -33,11 +33,6 @@ services: https_proxy: ${https_proxy} TTS_PORT: ${TTS_PORT} TTS_ENDPOINT: ${TTS_ENDPOINT} - HABANA_VISIBLE_DEVICES: all - OMPI_MCA_btl_vader_single_copy_mechanism: none - runtime: habana - cap_add: - - SYS_NICE restart: unless-stopped dataprep-multimodal-redis: image: ${REGISTRY:-opea}/dataprep:${TAG:-latest} diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index df6159aca3..bf31888cf3 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -357,7 +357,6 @@ async def handle_request(self, request: Request): # Toggle for TTS if "audio" in data["modalities"]: tts_audio = self.convert_text_to_audio(response) - else: # text is not in response message # something wrong, for example due to empty retrieval results From e145e93361e89c25212a06335e6b63ee695f4061 Mon Sep 17 00:00:00 2001 From: Melanie Hart Buehler Date: Wed, 12 Feb 2025 14:11:59 -0800 Subject: [PATCH 12/47] Update retrieval endpoints in READMEs (#55) Signed-off-by: Melanie Buehler --- MultimodalQnA/docker_compose/amd/gpu/rocm/README.md | 2 +- MultimodalQnA/docker_compose/intel/cpu/xeon/README.md | 2 +- MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MultimodalQnA/docker_compose/amd/gpu/rocm/README.md b/MultimodalQnA/docker_compose/amd/gpu/rocm/README.md index f49b9815f1..4e3a031da9 100644 --- a/MultimodalQnA/docker_compose/amd/gpu/rocm/README.md +++ b/MultimodalQnA/docker_compose/amd/gpu/rocm/README.md @@ -178,7 +178,7 @@ curl http://${host_ip}:$MM_EMBEDDING_PORT_MICROSERVICE/v1/embeddings \ ```bash export your_embedding=$(python3 -c "import random; embedding = [random.uniform(-1, 1) for _ in range(512)]; print(embedding)") -curl http://${host_ip}:7000/v1/multimodal_retrieval \ +curl http://${host_ip}:7000/v1/retrieval \ -X POST \ -H "Content-Type: application/json" \ -d "{\"text\":\"test\",\"embedding\":${your_embedding}}" diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index a618324493..7fdfaabad4 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -265,7 +265,7 @@ curl http://${host_ip}:$MM_EMBEDDING_PORT_MICROSERVICE/v1/embeddings \ ```bash export your_embedding=$(python3 -c "import random; embedding = [random.uniform(-1, 1) for _ in range(512)]; print(embedding)") -curl http://${host_ip}:${REDIS_RETRIEVER_PORT}/v1/multimodal_retrieval \ +curl http://${host_ip}:${REDIS_RETRIEVER_PORT}/v1/retrieval \ -X POST \ -H "Content-Type: application/json" \ -d "{\"text\":\"test\",\"embedding\":${your_embedding}}" diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index 969c763119..a47ff05fc0 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -211,7 +211,7 @@ curl http://${host_ip}:$MM_EMBEDDING_PORT_MICROSERVICE/v1/embeddings \ ```bash export your_embedding=$(python3 -c "import random; embedding = [random.uniform(-1, 1) for _ in range(512)]; print(embedding)") -curl http://${host_ip}:7000/v1/multimodal_retrieval \ +curl http://${host_ip}:${REDIS_RETRIEVER_PORT}/v1/retrieval \ -X POST \ -H "Content-Type: application/json" \ -d "{\"text\":\"test\",\"embedding\":${your_embedding}}" From a1c7adbefe0511c61d2cae5c80a2af493b1501c2 Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Thu, 13 Feb 2025 11:40:03 -0800 Subject: [PATCH 13/47] doc updates and code refactor Signed-off-by: okhleif-IL --- MultimodalQnA/README.md | 2 +- .../docker_compose/intel/cpu/xeon/README.md | 4 ++-- .../docker_compose/intel/hpu/gaudi/README.md | 4 ++-- MultimodalQnA/multimodalqna.py | 20 ++++++++----------- 4 files changed, 13 insertions(+), 17 deletions(-) diff --git a/MultimodalQnA/README.md b/MultimodalQnA/README.md index bda42ee285..fc9ec304e8 100644 --- a/MultimodalQnA/README.md +++ b/MultimodalQnA/README.md @@ -2,7 +2,7 @@ Suppose you possess a set of videos, images, audio files, PDFs, or some combination thereof and wish to perform question-answering to extract insights from these documents. To respond to your questions, the system needs to comprehend a mix of textual, visual, and audio facts drawn from the document contents. The MultimodalQnA framework offers an optimal solution for this purpose. -`MultimodalQnA` addresses your questions by dynamically fetching the most pertinent multimodal information (e.g. images, transcripts, and captions) from your collection of video, image, audio, and PDF files. For this purpose, MultimodalQnA utilizes [BridgeTower model](https://huggingface.co/BridgeTower/bridgetower-large-itm-mlm-gaudi), a multimodal encoding transformer model which merges visual and textual data into a unified semantic space. During the ingestion phase, the BridgeTower model embeds both visual cues and auditory facts as texts, and those embeddings are then stored in a vector database. When it comes to answering a question, the MultimodalQnA will fetch its most relevant multimodal content from the vector store and feed it into a downstream Large Vision-Language Model (LVM) as input context to generate a response for the user. +`MultimodalQnA` addresses your questions by dynamically fetching the most pertinent multimodal information (e.g. images, transcripts, and captions) from your collection of video, image, audio, and PDF files. For this purpose, MultimodalQnA utilizes [BridgeTower model](https://huggingface.co/BridgeTower/bridgetower-large-itm-mlm-gaudi), a multimodal encoding transformer model which merges visual and textual data into a unified semantic space. During the ingestion phase, the BridgeTower model embeds both visual cues and auditory facts as texts, and those embeddings are then stored in a vector database. When it comes to answering a question, the MultimodalQnA will fetch its most relevant multimodal content from the vector store and feed it into a downstream Large Vision-Language Model (LVM) as input context to generate a response for the user, which can be text or audio. The MultimodalQnA architecture shows below: diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index c27c96f495..87457df544 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -182,7 +182,7 @@ docker build --no-cache -t opea/whisper:latest --build-arg https_proxy=$https_pr ### 6. Build TTS Image ```bash -docker build -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . +docker build --no-cache -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . ``` ### 7. Build MegaService Docker Image @@ -454,5 +454,5 @@ curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ ```bash curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -H "Content-Type: application/json" \ - -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10}' + -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' ``` diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index 6ed4c50e3b..493624e738 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -126,7 +126,7 @@ docker build --no-cache -t opea/whisper:latest --build-arg https_proxy=$https_pr Build TTS server image ```bash -docker build -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . +docker build --no-cache -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . ``` ### 7. Build MegaService Docker Image @@ -391,5 +391,5 @@ Test the MegaService with a back and forth conversation between the user and ass ```bash curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -H "Content-Type: application/json" \ - -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10}' + -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' ``` diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index bf31888cf3..fdbe400d5c 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -28,9 +28,9 @@ LVM_SERVICE_HOST_IP = os.getenv("LVM_SERVICE_HOST_IP", "0.0.0.0") LVM_SERVICE_PORT = int(os.getenv("LVM_PORT", 9399)) WHISPER_PORT = int(os.getenv("WHISPER_PORT", 7066)) -WHISPER_SERVER_ENDPOINT = os.getenv("WHISPER_SERVER_ENDPOINT", "http://0.0.0.0:$WHISPER_PORT/v1/asr") +WHISPER_SERVER_ENDPOINT = os.getenv("WHISPER_SERVER_ENDPOINT", f"http://0.0.0.0:{WHISPER_PORT}/v1/asr") TTS_PORT = int(os.getenv("TTS_PORT", 7055)) -TTS_ENDPOINT = os.getenv("TTS_ENDPOINT", "http://0.0.0.0:7055/v1/tts") +TTS_ENDPOINT = os.getenv("TTS_ENDPOINT", f"http://0.0.0.0:{TTS_PORT}/v1/tts") def align_inputs(self, inputs, cur_node, runtime_graph, llm_parameters_dict, **kwargs): @@ -289,6 +289,7 @@ async def handle_request(self, request: Request): print("[ MultimodalQnAService ] stream=True not used, this has not support stream yet!") stream_opt = False chat_request = ChatCompletionRequest.model_validate(data) + modalities = chat_request.modalities num_messages = len(data["messages"]) if isinstance(data["messages"], list) else 1 messages = self._handle_message(chat_request.messages) decoded_audio_input = "" @@ -351,12 +352,12 @@ async def handle_request(self, request: Request): return response last_node = runtime_graph.all_leaves()[-1] - tts_audio = "" + tts_audio = None if "text" in result_dict[last_node].keys(): response = result_dict[last_node]["text"] # Toggle for TTS - if "audio" in data["modalities"]: - tts_audio = self.convert_text_to_audio(response) + if "audio" in modalities: + tts_audio = {"data": self.convert_text_to_audio(response)} else: # text is not in response message # something wrong, for example due to empty retrieval results @@ -379,20 +380,15 @@ async def handle_request(self, request: Request): choices = [] usage = UsageInfo() - if tts_audio: - chat_message = ChatMessage(role="assistant", content=response, audio={"data": tts_audio}) - else: - chat_message = ChatMessage(role="assistant", content=response) - choices.append( ChatCompletionResponseChoice( index=0, - message=chat_message, + message=ChatMessage(role="assistant", content=response, audio=tts_audio), finish_reason="stop", metadata=metadata, ) ) - return ChatCompletionResponse(model="multimodalqna", choices=choices, usage=usage, modalities=data["modalities"]) + return ChatCompletionResponse(model="multimodalqna", choices=choices, usage=usage) def start(self): self.service = MicroService( From 632a60b3bf1780d265a2e254ef2a16dda6e46fa0 Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Thu, 13 Feb 2025 13:51:22 -0800 Subject: [PATCH 14/47] added tts test to megaservice tests Signed-off-by: okhleif-IL --- .../dataprep-multimodal-redis-caption.log | 26 + .../dataprep-multimodal-redis-ingest.log | 16 + .../tests/dataprep-multimodal-redis-pdf.log | 18 + .../dataprep-multimodal-redis-transcript.log | 14 + MultimodalQnA/tests/dataprep_del.log | 28 + MultimodalQnA/tests/dataprep_get.log | 42 + MultimodalQnA/tests/docker_image_build.log | 12967 ++++++++++++++++ .../embedding-multimodal-bridgetower.log | 0 MultimodalQnA/tests/embedding.log | 6 + MultimodalQnA/tests/lvm-llava.log | 26 + MultimodalQnA/tests/lvm.log | 2 + MultimodalQnA/tests/multimodalqna.log | 30 + MultimodalQnA/tests/retriever-redis.log | 2 + .../tests/start_services_with_compose.log | 0 MultimodalQnA/tests/test_compose_on_gaudi.sh | 2 +- MultimodalQnA/tests/test_compose_on_xeon.sh | 5 +- 16 files changed, 13181 insertions(+), 3 deletions(-) create mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-caption.log create mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log create mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log create mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log create mode 100644 MultimodalQnA/tests/dataprep_del.log create mode 100644 MultimodalQnA/tests/dataprep_get.log create mode 100644 MultimodalQnA/tests/docker_image_build.log create mode 100644 MultimodalQnA/tests/embedding-multimodal-bridgetower.log create mode 100644 MultimodalQnA/tests/embedding.log create mode 100644 MultimodalQnA/tests/lvm-llava.log create mode 100644 MultimodalQnA/tests/lvm.log create mode 100644 MultimodalQnA/tests/multimodalqna.log create mode 100644 MultimodalQnA/tests/retriever-redis.log create mode 100644 MultimodalQnA/tests/start_services_with_compose.log diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-caption.log b/MultimodalQnA/tests/dataprep-multimodal-redis-caption.log new file mode 100644 index 0000000000..174e08cdb4 --- /dev/null +++ b/MultimodalQnA/tests/dataprep-multimodal-redis-caption.log @@ -0,0 +1,26 @@ +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav +MoviePy - Done. +INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:52208 - "POST /v1/dataprep/get HTTP/1.1" 200 OK + +INFO: 10.23.167.165:49042 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK +INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error +INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request +INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav +MoviePy - Done. +INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:34750 - "POST /v1/dataprep/get HTTP/1.1" 200 OK + +INFO: 10.23.167.165:50186 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log b/MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log new file mode 100644 index 0000000000..24d26447db --- /dev/null +++ b/MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log @@ -0,0 +1,16 @@ +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav +MoviePy - Done. +INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error +INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request +INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav +MoviePy - Done. +INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log b/MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log new file mode 100644 index 0000000000..d95453b517 --- /dev/null +++ b/MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log @@ -0,0 +1,18 @@ +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav +MoviePy - Done. +INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error +INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request +INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav +MoviePy - Done. +INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log b/MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log new file mode 100644 index 0000000000..a445ba2353 --- /dev/null +++ b/MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log @@ -0,0 +1,14 @@ +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav +MoviePy - Done. +INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error +INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request +INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav +MoviePy - Done. +INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep_del.log b/MultimodalQnA/tests/dataprep_del.log new file mode 100644 index 0000000000..74808ffc2b --- /dev/null +++ b/MultimodalQnA/tests/dataprep_del.log @@ -0,0 +1,28 @@ +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav +MoviePy - Done. +INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:52208 - "POST /v1/dataprep/get HTTP/1.1" 200 OK + +INFO: 10.23.167.165:49042 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK +INFO: 10.23.167.165:50798 - "POST /v1/dataprep/delete HTTP/1.1" 200 OK +INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error +INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request +INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav +MoviePy - Done. +INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:34750 - "POST /v1/dataprep/get HTTP/1.1" 200 OK + +INFO: 10.23.167.165:50186 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK +INFO: 10.23.167.165:44076 - "POST /v1/dataprep/delete HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep_get.log b/MultimodalQnA/tests/dataprep_get.log new file mode 100644 index 0000000000..fb080f440b --- /dev/null +++ b/MultimodalQnA/tests/dataprep_get.log @@ -0,0 +1,42 @@ +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav +MoviePy - Done. +INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav +MoviePy - Done. +INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:52208 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error +INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request +INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav +MoviePy - Done. +INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error +INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request +INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} +/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - +MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav +MoviePy - Done. +INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK +INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK +INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK +INFO: 10.23.167.165:34750 - "POST /v1/dataprep/get HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/docker_image_build.log b/MultimodalQnA/tests/docker_image_build.log new file mode 100644 index 0000000000..66caeb8673 --- /dev/null +++ b/MultimodalQnA/tests/docker_image_build.log @@ -0,0 +1,12967 @@ +#1 [opea/retriever:latest internal] load build definition from Dockerfile +#1 transferring dockerfile: 1.14kB done +#1 DONE 0.0s + +#2 [opea/embedding-multimodal-bridgetower:latest internal] load build definition from Dockerfile +#2 transferring dockerfile: 811B done +#2 DONE 0.0s + +#3 [opea/multimodalqna:latest internal] load build definition from Dockerfile +#3 transferring dockerfile: 1.28kB done +#3 DONE 0.0s + +#4 [opea/embedding:latest internal] load build definition from Dockerfile +#4 transferring dockerfile: 582B done +#4 DONE 0.0s + +#5 [opea/whisper:latest internal] load build definition from Dockerfile +#5 transferring dockerfile: 1.14kB done +#5 DONE 0.0s + +#6 [opea/multimodalqna-ui:latest internal] load build definition from Dockerfile +#6 transferring dockerfile: 1.06kB done +#6 DONE 0.0s + +#7 [opea/dataprep:latest internal] load build definition from Dockerfile +#7 transferring dockerfile: 1.84kB done +#7 DONE 0.0s + +#8 [opea/lvm:latest internal] load build definition from Dockerfile +#8 transferring dockerfile: 558B done +#8 DONE 0.0s + +#9 [opea/lvm-llava:latest internal] load build definition from Dockerfile +#9 transferring dockerfile: 805B done +#9 DONE 0.0s + +#10 [opea/lvm-llava:latest internal] load metadata for docker.io/library/python:3.11-slim +#10 DONE 0.6s + +#11 [opea/multimodalqna:latest internal] load .dockerignore +#11 transferring context: 2B done +#11 DONE 0.0s + +#12 [opea/whisper:latest internal] load .dockerignore +#12 transferring context: 2B done +#12 DONE 0.0s + +#13 [opea/dataprep:latest internal] load .dockerignore +#13 transferring context: 2B done +#13 DONE 0.0s + +#14 [opea/lvm-llava:latest internal] load .dockerignore +#14 transferring context: 2B done +#14 DONE 0.0s + +#15 [opea/lvm:latest internal] load .dockerignore +#15 transferring context: 2B done +#15 DONE 0.0s + +#16 [opea/multimodalqna-ui:latest internal] load .dockerignore +#16 transferring context: 2B done +#16 DONE 0.0s + +#17 [opea/retriever:latest internal] load .dockerignore +#17 transferring context: 2B done +#17 DONE 0.0s + +#18 [opea/embedding:latest internal] load .dockerignore +#18 transferring context: 2B done +#18 DONE 0.0s + +#19 [opea/embedding:latest base 1/4] FROM docker.io/library/python:3.11-slim@sha256:6ed5bff4d7d377e2a27d9285553b8c21cfccc4f00881de1b24c9bc8d90016e82 +#19 CACHED + +#20 [opea/multimodalqna:latest internal] load build context +#20 transferring context: 17.83kB done +#20 DONE 0.0s + +#21 [opea/dataprep:latest internal] load build context +#21 ... + +#22 [opea/multimodalqna-ui:latest internal] load build context +#22 transferring context: 41.62kB done +#22 DONE 0.0s + +#23 [opea/embedding-multimodal-bridgetower:latest internal] load metadata for docker.io/library/python:3.10-slim +#23 DONE 0.7s + +#21 [opea/dataprep:latest internal] load build context +#21 ... + +#24 [opea/embedding-multimodal-bridgetower:latest internal] load .dockerignore +#24 transferring context: 2B done +#24 DONE 0.0s + +#25 [opea/embedding-multimodal-bridgetower:latest 1/6] FROM docker.io/library/python:3.10-slim@sha256:a636f5aafba3654ac4d04d7c234a75b77fa26646fe0dafe4654b731bc413b02f +#25 CACHED + +#21 [opea/dataprep:latest internal] load build context +#21 transferring context: 27.82MB 0.3s done +#21 DONE 0.3s + +#26 [opea/whisper:latest internal] load build context +#26 transferring context: 27.82MB 0.3s done +#26 DONE 0.3s + +#27 [opea/lvm-llava:latest internal] load build context +#27 transferring context: 27.82MB 0.3s done +#27 DONE 0.3s + +#28 [opea/embedding:latest internal] load build context +#28 transferring context: 27.82MB 0.3s done +#28 DONE 0.3s + +#29 [opea/lvm:latest internal] load build context +#29 transferring context: 27.82MB 0.3s done +#29 DONE 0.4s + +#30 [opea/retriever:latest internal] load build context +#30 transferring context: 27.82MB 0.3s done +#30 DONE 0.4s + +#31 [opea/embedding-multimodal-bridgetower:latest internal] load build context +#31 transferring context: 27.82MB 0.3s done +#31 DONE 0.3s + +#32 [opea/embedding:latest 2/4] COPY comps /home/comps +#32 DONE 0.7s + +#33 [opea/lvm:latest 2/6] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ +#33 DONE 1.0s + +#34 [opea/lvm-llava:latest 3/6] RUN apt-get update && apt-get install -y curl +#34 ... + +#35 [opea/embedding-multimodal-bridgetower:latest 2/6] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ +#35 DONE 1.2s + +#36 [opea/lvm:latest 3/5] COPY comps /home/user/comps +#36 DONE 0.3s + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 2.154 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#37 ... + +#38 [opea/multimodalqna:latest base 2/4] RUN apt-get update && apt-get upgrade -y && apt-get clean && rm -rf /var/lib/apt/lists/* +#0 0.800 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#0 0.884 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#0 0.928 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#0 0.974 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#0 1.203 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#0 1.232 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#0 2.188 Fetched 9303 kB in 1s (6446 kB/s) +#0 2.188 Reading package lists... +#0 2.639 Reading package lists... +#0 3.100 Building dependency tree... +#0 3.208 Reading state information... +#0 3.229 Calculating upgrade... +#0 3.359 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. +#38 DONE 3.6s + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 2.295 Collecting pip +#37 2.437 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#37 2.440 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#37 ... + +#39 [opea/multimodalqna:latest base 3/4] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user +#39 DONE 0.3s + +#40 [opea/multimodalqna:latest base 4/4] WORKDIR /home/user +#40 DONE 0.0s + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 2.725 Collecting setuptools +#37 2.766 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#37 2.858 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#37 3.623 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 2.4 MB/s eta 0:00:00 +#37 3.657 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#37 3.958 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 4.6 MB/s eta 0:00:00 +#37 4.097 Installing collected packages: setuptools, pip +#37 4.097 Attempting uninstall: setuptools +#37 4.100 Found existing installation: setuptools 65.5.1 +#37 4.119 Uninstalling setuptools-65.5.1: +#37 4.205 Successfully uninstalled setuptools-65.5.1 +#37 ... + +#41 [opea/embedding-multimodal-bridgetower:latest 3/6] RUN apt-get update && apt-get install -y curl +#0 0.788 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#0 0.816 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#0 0.843 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#0 0.875 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#0 0.972 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#0 1.000 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#0 1.927 Fetched 9303 kB in 1s (7958 kB/s) +#0 1.927 Reading package lists... +#0 2.421 Reading package lists... +#0 2.924 Building dependency tree... +#0 3.063 Reading state information... +#0 3.208 The following additional packages will be installed: +#0 3.208 libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 +#0 3.209 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 +#0 3.209 publicsuffix +#0 3.209 Suggested packages: +#0 3.209 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal +#0 3.209 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql +#0 3.309 The following NEW packages will be installed: +#0 3.309 curl libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 +#0 3.310 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 +#0 3.310 publicsuffix +#0 3.338 0 upgraded, 13 newly installed, 0 to remove and 0 not upgraded. +#0 3.338 Need to get 1837 kB of archives. +#0 3.338 After this operation, 4548 kB of additional disk space will be used. +#0 3.338 Get:1 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] +#0 3.349 Get:2 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] +#0 3.355 Get:3 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] +#0 3.363 Get:4 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] +#0 3.371 Get:5 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] +#0 3.378 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] +#0 3.385 Get:7 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] +#0 3.391 Get:8 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] +#0 3.400 Get:9 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] +#0 3.411 Get:10 http://deb.debian.org/debian bookworm/main amd64 curl amd64 7.88.1-10+deb12u8 [315 kB] +#0 3.418 Get:11 http://deb.debian.org/debian bookworm/main amd64 libldap-common all 2.5.13+dfsg-5 [29.3 kB] +#0 3.425 Get:12 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules amd64 2.1.28+dfsg-10 [66.6 kB] +#0 3.432 Get:13 http://deb.debian.org/debian bookworm/main amd64 publicsuffix all 20230209.2326-1 [126 kB] +#0 3.551 debconf: delaying package configuration, since apt-utils is not installed +#0 3.574 Fetched 1837 kB in 0s (15.5 MB/s) +#0 3.587 Selecting previously unselected package libbrotli1:amd64. +#0 3.587 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) +#0 3.593 Preparing to unpack .../00-libbrotli1_1.0.9-2+b6_amd64.deb ... +#0 3.594 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... +#0 3.626 Selecting previously unselected package libsasl2-modules-db:amd64. +#0 3.627 Preparing to unpack .../01-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... +#0 3.627 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#0 3.646 Selecting previously unselected package libsasl2-2:amd64. +#0 3.646 Preparing to unpack .../02-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... +#0 3.648 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#0 3.664 Selecting previously unselected package libldap-2.5-0:amd64. +#0 3.664 Preparing to unpack .../03-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... +#0 3.665 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#0 3.690 Selecting previously unselected package libnghttp2-14:amd64. +#0 3.691 Preparing to unpack .../04-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... +#0 3.691 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#0 3.709 Selecting previously unselected package libpsl5:amd64. +#0 3.709 Preparing to unpack .../05-libpsl5_0.21.2-1_amd64.deb ... +#0 3.710 Unpacking libpsl5:amd64 (0.21.2-1) ... +#0 3.727 Selecting previously unselected package librtmp1:amd64. +#0 3.727 Preparing to unpack .../06-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... +#0 3.728 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#0 3.744 Selecting previously unselected package libssh2-1:amd64. +#0 3.745 Preparing to unpack .../07-libssh2-1_1.10.0-3+b1_amd64.deb ... +#0 3.745 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... +#0 3.771 Selecting previously unselected package libcurl4:amd64. +#0 3.771 Preparing to unpack .../08-libcurl4_7.88.1-10+deb12u8_amd64.deb ... +#0 3.772 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... +#0 3.807 Selecting previously unselected package curl. +#0 3.807 Preparing to unpack .../09-curl_7.88.1-10+deb12u8_amd64.deb ... +#0 3.808 Unpacking curl (7.88.1-10+deb12u8) ... +#0 3.840 Selecting previously unselected package libldap-common. +#0 3.840 Preparing to unpack .../10-libldap-common_2.5.13+dfsg-5_all.deb ... +#0 3.841 Unpacking libldap-common (2.5.13+dfsg-5) ... +#0 3.857 Selecting previously unselected package libsasl2-modules:amd64. +#0 3.858 Preparing to unpack .../11-libsasl2-modules_2.1.28+dfsg-10_amd64.deb ... +#0 3.863 Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... +#0 3.903 Selecting previously unselected package publicsuffix. +#0 3.904 Preparing to unpack .../12-publicsuffix_20230209.2326-1_all.deb ... +#0 3.905 Unpacking publicsuffix (20230209.2326-1) ... +#0 3.931 Setting up libpsl5:amd64 (0.21.2-1) ... +#0 3.935 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... +#0 3.937 Setting up libsasl2-modules:amd64 (2.1.28+dfsg-10) ... +#0 3.945 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#0 3.948 Setting up libldap-common (2.5.13+dfsg-5) ... +#0 3.952 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#0 3.955 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#0 3.957 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#0 3.960 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... +#0 3.978 Setting up publicsuffix (20230209.2326-1) ... +#0 3.981 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#0 3.983 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... +#0 3.986 Setting up curl (7.88.1-10+deb12u8) ... +#0 3.989 Processing triggers for libc-bin (2.36-9+deb12u9) ... +#41 DONE 4.3s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#0 0.800 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#0 0.901 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#0 0.926 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#0 0.979 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#0 1.076 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#0 1.086 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#0 2.140 Fetched 9303 kB in 2s (5999 kB/s) +#0 2.140 Reading package lists... +#0 2.623 Reading package lists... +#0 3.093 Building dependency tree... +#0 3.207 Reading state information... +#0 3.348 The following additional packages will be installed: +#0 3.348 adwaita-icon-theme at-spi2-common binutils binutils-common +#0 3.348 binutils-x86-64-linux-gnu bzip2 ca-certificates-java coinor-libcbc3 +#0 3.348 coinor-libcgl1 coinor-libclp1 coinor-libcoinmp1v5 coinor-libcoinutils3v5 +#0 3.348 coinor-libosi1v5 cpp cpp-12 default-jre-headless dirmngr dpkg-dev fontconfig +#0 3.348 fontconfig-config fonts-dejavu-core fonts-opensymbol g++ g++-12 gcc gcc-12 +#0 3.348 gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server +#0 3.348 gpgconf gpgsm gtk-update-icon-cache hicolor-icon-theme iso-codes java-common +#0 3.348 libabsl20220623 libabw-0.1-1 libarchive13 libasan8 libasound2 +#0 3.348 libasound2-data libassuan0 libatk1.0-0 libatomic1 libavahi-client3 +#0 3.348 libavahi-common-data libavahi-common3 libbinutils libblas3 +#0 3.348 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-locale1.74.0 +#0 3.348 libboost-thread1.74.0 libbox2d2 libbrotli1 libbsd0 libc-dev-bin libc6-dev +#0 3.348 libcap2-bin libcc1-0 libcdr-0.1-1 libclucene-contribs1v5 libclucene-core1v5 +#0 3.348 libcolamd2 libcrypt-dev libctf-nobfd0 libctf0 libcups2 libcurl3-gnutls +#0 3.348 libcurl4 libdatrie1 libdbus-1-3 libdconf1 libdeflate0 libdpkg-perl +#0 3.348 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 +#0 3.348 libdrm2 libdw1 libe-book-0.1-1 libedit2 libelf1 libeot0 libepoxy0 +#0 3.348 libepubgen-0.1-1 libetonyek-0.1-1 libexpat1 libexttextcat-2.0-0 +#0 3.348 libexttextcat-data libfontconfig1 libfreehand-0.1-1 libfreetype6 libfribidi0 +#0 3.348 libgcc-12-dev libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common +#0 3.348 libgfortran5 libgif7 libgl1 libgl1-mesa-dri libglapi-mesa libglib2.0-0 +#0 3.348 libglvnd0 libglx-mesa0 libglx0 libgomp1 libgpgme11 libgpgmepp6 libgprofng0 +#0 3.348 libgraphite2-3 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk2.0-0 +#0 3.348 libgtk2.0-common libharfbuzz-icu0 libharfbuzz0b libhunspell-1.7-0 libhyphen0 +#0 3.348 libice6 libicu72 libisl23 libitm1 libjansson4 libjbig0 libjemalloc2 +#0 3.348 libjpeg62-turbo libksba8 liblangtag-common liblangtag1 liblapack3 liblcms2-2 +#0 3.348 libldap-2.5-0 liblept5 liblerc4 libllvm15 liblsan0 libltdl7 libmhash2 +#0 3.348 libmpc3 libmpfr6 libmspub-0.1-1 libmwaw-0.3-3 libmythes-1.2-0 libnghttp2-14 +#0 3.348 libnpth0 libnsl-dev libnspr4 libnss3 libnumbertext-1.0-0 libnumbertext-data +#0 3.348 libodfgen-0.1-1 libopenjp2-7 liborc-0.4-0 liborcus-0.17-0 +#0 3.348 liborcus-parser-0.17-0 libpagemaker-0.0-0 libpango-1.0-0 libpangocairo-1.0-0 +#0 3.348 libpangoft2-1.0-0 libpciaccess0 libpcsclite1 libperl5.36 libpixman-1-0 +#0 3.348 libpng16-16 libpoppler126 libpq5 libpsl5 libpython3-stdlib libpython3.11 +#0 3.348 libpython3.11-minimal libpython3.11-stdlib libquadmath0 libqxp-0.0-0 +#0 3.348 libraptor2-0 librasqal3 librdf0 libreoffice-base libreoffice-base-core +#0 3.348 libreoffice-base-drivers libreoffice-calc libreoffice-common +#0 3.348 libreoffice-core libreoffice-draw libreoffice-impress libreoffice-math +#0 3.348 libreoffice-report-builder-bin libreoffice-style-colibre libreoffice-writer +#0 3.348 librevenge-0.0-0 librtmp1 libsasl2-2 libsasl2-modules-db libsensors-config +#0 3.348 libsensors5 libsm6 libssh2-1 libssl-dev libstaroffice-0.0-0 libstdc++-12-dev +#0 3.348 libsuitesparseconfig5 libtesseract5 libthai-data libthai0 libtiff6 +#0 3.348 libtirpc-dev libtsan2 libubsan1 libuno-cppu3 libuno-cppuhelpergcc3-3 +#0 3.348 libuno-purpenvhelpergcc3-3 libuno-sal3 libuno-salhelpergcc3-3 libunwind8 +#0 3.348 libvisio-0.1-1 libwebp7 libwebpmux3 libwpd-0.10-10 libwpg-0.3-3 libwps-0.4-4 +#0 3.348 libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri2-0 libxcb-dri3-0 +#0 3.348 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shm0 +#0 3.348 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcomposite1 libxcursor1 libxdamage1 +#0 3.348 libxdmcp6 libxext6 libxfixes3 libxi6 libxinerama1 libxml2 libxmlsec1 +#0 3.348 libxmlsec1-nss libxrandr2 libxrender1 libxshmfence1 libxslt1.1 libxtst6 +#0 3.349 libxxf86vm1 libyajl2 libz3-4 libzmf-0.0-0 libzxing2 linux-libc-dev lp-solve +#0 3.349 make media-types openjdk-17-jre openjdk-17-jre-headless patch perl +#0 3.349 perl-modules-5.36 pinentry-curses python3 python3-minimal python3-uno +#0 3.349 python3.11 python3.11-minimal rpcsvc-proto sensible-utils shared-mime-info +#0 3.349 tesseract-ocr-eng tesseract-ocr-osd ucf uno-libs-private ure x11-common +#0 3.349 xz-utils +#0 3.350 Suggested packages: +#0 3.350 binutils-doc bzip2-doc cpp-doc gcc-12-locales cpp-12-doc dbus-user-session +#0 3.350 libpam-systemd pinentry-gnome3 tor debian-keyring g++-multilib +#0 3.350 g++-12-multilib gcc-12-doc gcc-multilib manpages-dev autoconf automake +#0 3.350 libtool flex bison gdb gcc-doc gcc-12-multilib parcimonie xloadimage +#0 3.350 scdaemon isoquery lrzip libasound2-plugins alsa-utils glibc-doc cups-common +#0 3.350 git bzr low-memory-monitor libvisual-0.4-plugins gstreamer1.0-tools gvfs +#0 3.350 liblcms2-utils pciutils pcscd postgresql-doc-15 raptor2-utils rasqal-utils +#0 3.350 librdf-storage-mysql librdf-storage-postgresql librdf-storage-sqlite +#0 3.350 librdf-storage-virtuoso redland-utils cups-bsd firefox-esr | thunderbird +#0 3.350 | firefox ghostscript gpa hunspell-dictionary hyphen-hyphenation-patterns +#0 3.350 imagemagick | graphicsmagick-imagemagick-compat libreoffice-gnome +#0 3.350 | libreoffice-plasma libreoffice-grammarcheck libreoffice-help +#0 3.350 libreoffice-l10n libreoffice-librelogo myspell-dictionary mythes-thesaurus +#0 3.350 openclipart-libreoffice pstoedit unixodbc gstreamer1.0-plugins-base +#0 3.350 gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly gstreamer1.0-plugins-bad +#0 3.350 gstreamer1.0-libav libsane1 libofficebean-java libreoffice-report-builder +#0 3.350 libjtds-java libreoffice-sdbc-mysql | libmyodbc | libmariadb-java +#0 3.350 libreoffice-sdbc-postgresql | odbc-postgresql | libpg-java libsqliteodbc +#0 3.350 | tdsodbc | odbc-mdbtools ocl-icd-libopencl1 | mesa-opencl-icd +#0 3.350 | beignet-opencl-icd bluez fonts-crosextra-caladea fonts-crosextra-carlito +#0 3.350 libreoffice-java-common lm-sensors libssl-doc libstdc++-12-doc make-doc +#0 3.350 libnss-mdns fonts-dejavu-extra fonts-ipafont-gothic fonts-ipafont-mincho +#0 3.350 fonts-wqy-microhei | fonts-wqy-zenhei fonts-indic ed diffutils-doc perl-doc +#0 3.350 libterm-readline-gnu-perl | libterm-readline-perl-perl +#0 3.350 libtap-harness-archive-perl pinentry-doc python3-doc python3-tk python3-venv +#0 3.350 python3.11-venv python3.11-doc binfmt-support +#0 3.350 Recommended packages: +#0 3.350 librsvg2-common fakeroot libalgorithm-merge-perl alsa-ucm-conf +#0 3.350 alsa-topology-conf manpages manpages-dev libc-devtools libpam-cap dbus +#0 3.350 libfile-fcntllock-perl liblocale-gettext-perl libgdk-pixbuf2.0-bin +#0 3.350 libglib2.0-data xdg-user-dirs gstreamer1.0-plugins-base libgail-common +#0 3.350 libgtk2.0-bin hunspell-en-us | hunspell-dictionary | myspell-dictionary +#0 3.350 libldap-common poppler-data publicsuffix fonts-crosextra-caladea +#0 3.350 fonts-crosextra-carlito fonts-dejavu fonts-liberation fonts-liberation2 +#0 3.350 fonts-linuxlibertine fonts-noto-core fonts-noto-extra fonts-noto-mono +#0 3.350 fonts-noto-ui-core fonts-sil-gentium-basic libreoffice-nlpsolver +#0 3.350 libreoffice-report-builder libreoffice-script-provider-bsh +#0 3.350 libreoffice-script-provider-js libreoffice-script-provider-python +#0 3.350 libreoffice-sdbc-mysql libreoffice-sdbc-postgresql +#0 3.350 libreoffice-wiki-publisher libreoffice-java-common libreoffice-sdbc-hsqldb +#0 3.350 libreoffice-sdbc-firebird fonts-liberation2 | ttf-mscorefonts-installer +#0 3.350 apparmor xdg-utils libpaper-utils gstreamer1.0-plugins-good +#0 3.350 gstreamer1.0-plugins-ugly gstreamer1.0-plugins-bad gstreamer1.0-libav +#0 3.350 libsasl2-modules libatk-wrapper-java-jni fonts-dejavu-extra +#0 4.480 The following NEW packages will be installed: +#0 4.480 adwaita-icon-theme at-spi2-common binutils binutils-common +#0 4.480 binutils-x86-64-linux-gnu build-essential bzip2 ca-certificates-java +#0 4.480 coinor-libcbc3 coinor-libcgl1 coinor-libclp1 coinor-libcoinmp1v5 +#0 4.480 coinor-libcoinutils3v5 coinor-libosi1v5 cpp cpp-12 default-jre +#0 4.480 default-jre-headless dirmngr dpkg-dev fontconfig fontconfig-config +#0 4.480 fonts-dejavu-core fonts-opensymbol g++ g++-12 gcc gcc-12 gnupg gnupg-l10n +#0 4.480 gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm +#0 4.480 gtk-update-icon-cache hicolor-icon-theme iso-codes java-common +#0 4.480 libabsl20220623 libabw-0.1-1 libarchive13 libasan8 libasound2 +#0 4.480 libasound2-data libassuan0 libatk1.0-0 libatomic1 libavahi-client3 +#0 4.480 libavahi-common-data libavahi-common3 libbinutils libblas3 +#0 4.480 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-locale1.74.0 +#0 4.480 libboost-thread1.74.0 libbox2d2 libbrotli1 libbsd0 libc-dev-bin libc6-dev +#0 4.480 libcairo2 libcap2-bin libcc1-0 libcdr-0.1-1 libclucene-contribs1v5 +#0 4.480 libclucene-core1v5 libcolamd2 libcrypt-dev libctf-nobfd0 libctf0 libcups2 +#0 4.480 libcurl3-gnutls libcurl4 libdatrie1 libdbus-1-3 libdconf1 libdeflate0 +#0 4.480 libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 +#0 4.480 libdrm-radeon1 libdrm2 libdw1 libe-book-0.1-1 libedit2 libelf1 libeot0 +#0 4.480 libepoxy0 libepubgen-0.1-1 libetonyek-0.1-1 libexpat1 libexttextcat-2.0-0 +#0 4.480 libexttextcat-data libfontconfig1 libfreehand-0.1-1 libfreetype6 libfribidi0 +#0 4.480 libgcc-12-dev libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common +#0 4.480 libgfortran5 libgif7 libgl1 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa +#0 4.480 libglib2.0-0 libglvnd0 libglx-mesa0 libglx0 libgomp1 libgpgme11 libgpgmepp6 +#0 4.480 libgprofng0 libgraphite2-3 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 +#0 4.480 libgtk2.0-0 libgtk2.0-common libharfbuzz-icu0 libharfbuzz0b +#0 4.480 libhunspell-1.7-0 libhyphen0 libice6 libicu72 libisl23 libitm1 libjansson4 +#0 4.480 libjbig0 libjemalloc-dev libjemalloc2 libjpeg62-turbo libksba8 +#0 4.480 liblangtag-common liblangtag1 liblapack3 liblcms2-2 libldap-2.5-0 liblept5 +#0 4.480 liblerc4 libllvm15 liblsan0 libltdl7 libmhash2 libmpc3 libmpfr6 +#0 4.480 libmspub-0.1-1 libmwaw-0.3-3 libmythes-1.2-0 libnghttp2-14 libnpth0 +#0 4.480 libnsl-dev libnspr4 libnss3 libnumbertext-1.0-0 libnumbertext-data +#0 4.480 libodfgen-0.1-1 libopenjp2-7 liborc-0.4-0 liborcus-0.17-0 +#0 4.481 liborcus-parser-0.17-0 libpagemaker-0.0-0 libpango-1.0-0 libpangocairo-1.0-0 +#0 4.481 libpangoft2-1.0-0 libpciaccess0 libpcsclite1 libperl5.36 libpixman-1-0 +#0 4.481 libpng16-16 libpoppler126 libpq-dev libpq5 libpsl5 libpython3-stdlib +#0 4.481 libpython3.11 libpython3.11-minimal libpython3.11-stdlib libquadmath0 +#0 4.481 libqxp-0.0-0 libraptor2-0 librasqal3 librdf0 libreoffice libreoffice-base +#0 4.481 libreoffice-base-core libreoffice-base-drivers libreoffice-calc +#0 4.481 libreoffice-common libreoffice-core libreoffice-draw libreoffice-impress +#0 4.481 libreoffice-math libreoffice-report-builder-bin libreoffice-style-colibre +#0 4.481 libreoffice-writer librevenge-0.0-0 librtmp1 libsasl2-2 libsasl2-modules-db +#0 4.481 libsensors-config libsensors5 libsm6 libssh2-1 libssl-dev +#0 4.481 libstaroffice-0.0-0 libstdc++-12-dev libsuitesparseconfig5 libtesseract5 +#0 4.481 libthai-data libthai0 libtiff6 libtirpc-dev libtsan2 libubsan1 libuno-cppu3 +#0 4.481 libuno-cppuhelpergcc3-3 libuno-purpenvhelpergcc3-3 libuno-sal3 +#0 4.481 libuno-salhelpergcc3-3 libunwind8 libvisio-0.1-1 libwebp7 libwebpmux3 +#0 4.481 libwpd-0.10-10 libwpg-0.3-3 libwps-0.4-4 libx11-6 libx11-data libx11-xcb1 +#0 4.481 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 +#0 4.481 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 +#0 4.481 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 +#0 4.481 libxinerama1 libxml2 libxmlsec1 libxmlsec1-nss libxrandr2 libxrender1 +#0 4.481 libxshmfence1 libxslt1.1 libxtst6 libxxf86vm1 libyajl2 libz3-4 libzmf-0.0-0 +#0 4.481 libzxing2 linux-libc-dev lp-solve make media-types openjdk-17-jre +#0 4.481 openjdk-17-jre-headless patch perl perl-modules-5.36 pinentry-curses +#0 4.481 poppler-utils python3 python3-minimal python3-uno python3.11 +#0 4.481 python3.11-minimal rpcsvc-proto sensible-utils shared-mime-info +#0 4.481 tesseract-ocr tesseract-ocr-eng tesseract-ocr-osd ucf uno-libs-private ure +#0 4.481 wget x11-common xz-utils +#0 4.549 0 upgraded, 297 newly installed, 0 to remove and 0 not upgraded. +#0 4.549 Need to get 343 MB of archives. +#0 4.549 After this operation, 1328 MB of additional disk space will be used. +#0 4.549 Get:1 http://deb.debian.org/debian bookworm/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u1 [2815 kB] +#0 4.641 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB] +#0 4.680 Get:3 http://deb.debian.org/debian bookworm/main amd64 libperl5.36 amd64 5.36.0-7+deb12u1 [4218 kB] +#0 4.786 Get:4 http://deb.debian.org/debian bookworm/main amd64 perl amd64 5.36.0-7+deb12u1 [239 kB] +#0 4.831 Get:5 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] +#0 4.872 Get:6 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] +#0 4.919 Get:7 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] +#0 4.991 Get:8 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] +#0 5.054 Get:9 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] +#0 5.097 Get:10 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] +#0 5.129 Get:11 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] +#0 5.166 Get:12 http://deb.debian.org/debian bookworm/main amd64 fontconfig amd64 2.14.1-4 [449 kB] +#0 5.207 Get:13 http://deb.debian.org/debian-security bookworm-security/main amd64 fonts-opensymbol all 4:102.12+LibO7.4.7-1+deb12u6 [114 kB] +#0 5.224 Get:14 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-style-colibre all 4:7.4.7-1+deb12u6 [7172 kB] +#0 5.285 Get:15 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-sal3 amd64 4:7.4.7-1+deb12u6 [196 kB] +#0 5.299 Get:16 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-salhelpergcc3-3 amd64 4:7.4.7-1+deb12u6 [38.0 kB] +#0 5.339 Get:17 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-cppu3 amd64 4:7.4.7-1+deb12u6 [102 kB] +#0 5.355 Get:18 http://deb.debian.org/debian-security bookworm-security/main amd64 uno-libs-private amd64 4:7.4.7-1+deb12u6 [227 kB] +#0 5.388 Get:19 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] +#0 5.468 Get:20 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] +#0 5.485 Get:21 http://deb.debian.org/debian bookworm/main amd64 liblangtag-common all 0.6.4-2 [191 kB] +#0 5.520 Get:22 http://deb.debian.org/debian bookworm/main amd64 liblangtag1 amd64 0.6.4-2 [51.5 kB] +#0 5.553 Get:23 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-cppuhelpergcc3-3 amd64 4:7.4.7-1+deb12u6 [298 kB] +#0 5.592 Get:24 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-purpenvhelpergcc3-3 amd64 4:7.4.7-1+deb12u6 [37.1 kB] +#0 5.627 Get:25 http://deb.debian.org/debian-security bookworm-security/main amd64 ure amd64 4:7.4.7-1+deb12u6 [1226 kB] +#0 5.675 Get:26 http://deb.debian.org/debian bookworm/main amd64 sensible-utils all 0.0.17+nmu1 [19.0 kB] +#0 5.691 Get:27 http://deb.debian.org/debian bookworm/main amd64 ucf all 3.0043+nmu1+deb12u1 [55.3 kB] +#0 5.707 Get:28 http://deb.debian.org/debian bookworm/main amd64 libnumbertext-data all 1.0.11-1 [70.2 kB] +#0 5.723 Get:29 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-common all 4:7.4.7-1+deb12u6 [24.5 MB] +#42 ... + +#43 [opea/embedding-multimodal-bridgetower:latest 4/6] COPY --chown=user comps /home/user/comps +#43 DONE 0.3s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 5.870 Get:30 http://deb.debian.org/debian bookworm/main amd64 libabsl20220623 amd64 20220623.1-1 [391 kB] +#42 5.876 Get:31 http://deb.debian.org/debian bookworm/main amd64 libboost-thread1.74.0 amd64 1.74.0+ds1-21 [257 kB] +#42 5.879 Get:32 http://deb.debian.org/debian bookworm/main amd64 libboost-locale1.74.0 amd64 1.74.0+ds1-21 [449 kB] +#42 5.887 Get:33 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] +#42 5.890 Get:34 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] +#42 5.890 Get:35 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] +#42 5.892 Get:36 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] +#42 5.898 Get:37 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] +#42 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 ... + +#34 [opea/lvm-llava:latest 3/6] RUN apt-get update && apt-get install -y curl +#34 1.914 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#34 1.948 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#34 1.981 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#34 2.011 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#34 2.280 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#34 2.316 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#34 3.262 Fetched 9303 kB in 2s (3833 kB/s) +#34 3.262 Reading package lists... +#34 3.740 Reading package lists... +#34 4.194 Building dependency tree... +#34 4.287 Reading state information... +#34 4.396 The following additional packages will be installed: +#34 4.396 libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 +#34 4.396 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 +#34 4.396 publicsuffix +#34 4.397 Suggested packages: +#34 4.397 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal +#34 4.397 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql +#34 4.492 The following NEW packages will be installed: +#34 4.492 curl libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 +#34 4.492 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 +#34 4.493 publicsuffix +#34 4.518 0 upgraded, 13 newly installed, 0 to remove and 0 not upgraded. +#34 4.518 Need to get 1837 kB of archives. +#34 4.518 After this operation, 4548 kB of additional disk space will be used. +#34 4.518 Get:1 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] +#34 4.529 Get:2 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] +#34 4.534 Get:3 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] +#34 4.541 Get:4 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] +#34 4.548 Get:5 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] +#34 4.555 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] +#34 4.561 Get:7 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] +#34 4.567 Get:8 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] +#34 4.577 Get:9 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] +#34 4.614 Get:10 http://deb.debian.org/debian bookworm/main amd64 curl amd64 7.88.1-10+deb12u8 [315 kB] +#34 4.651 Get:11 http://deb.debian.org/debian bookworm/main amd64 libldap-common all 2.5.13+dfsg-5 [29.3 kB] +#34 4.687 Get:12 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules amd64 2.1.28+dfsg-10 [66.6 kB] +#34 4.729 Get:13 http://deb.debian.org/debian bookworm/main amd64 publicsuffix all 20230209.2326-1 [126 kB] +#34 4.862 debconf: delaying package configuration, since apt-utils is not installed +#34 4.918 Fetched 1837 kB in 0s (7758 kB/s) +#34 4.939 Selecting previously unselected package libbrotli1:amd64. +#34 4.939 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) +#34 4.945 Preparing to unpack .../00-libbrotli1_1.0.9-2+b6_amd64.deb ... +#34 4.946 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... +#34 4.979 Selecting previously unselected package libsasl2-modules-db:amd64. +#34 4.980 Preparing to unpack .../01-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... +#34 4.984 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#34 4.997 Selecting previously unselected package libsasl2-2:amd64. +#34 4.998 Preparing to unpack .../02-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... +#34 4.998 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#34 5.015 Selecting previously unselected package libldap-2.5-0:amd64. +#34 5.016 Preparing to unpack .../03-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... +#34 5.016 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#34 5.048 Selecting previously unselected package libnghttp2-14:amd64. +#34 5.048 Preparing to unpack .../04-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... +#34 5.049 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#34 5.067 Selecting previously unselected package libpsl5:amd64. +#34 5.068 Preparing to unpack .../05-libpsl5_0.21.2-1_amd64.deb ... +#34 5.069 Unpacking libpsl5:amd64 (0.21.2-1) ... +#34 5.087 Selecting previously unselected package librtmp1:amd64. +#34 5.088 Preparing to unpack .../06-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... +#34 5.089 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#34 5.108 Selecting previously unselected package libssh2-1:amd64. +#34 5.109 Preparing to unpack .../07-libssh2-1_1.10.0-3+b1_amd64.deb ... +#34 5.110 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... +#34 5.141 Selecting previously unselected package libcurl4:amd64. +#34 5.141 Preparing to unpack .../08-libcurl4_7.88.1-10+deb12u8_amd64.deb ... +#34 5.143 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... +#34 5.179 Selecting previously unselected package curl. +#34 5.179 Preparing to unpack .../09-curl_7.88.1-10+deb12u8_amd64.deb ... +#34 5.180 Unpacking curl (7.88.1-10+deb12u8) ... +#34 5.210 Selecting previously unselected package libldap-common. +#34 5.210 Preparing to unpack .../10-libldap-common_2.5.13+dfsg-5_all.deb ... +#34 5.211 Unpacking libldap-common (2.5.13+dfsg-5) ... +#34 5.225 Selecting previously unselected package libsasl2-modules:amd64. +#34 5.225 Preparing to unpack .../11-libsasl2-modules_2.1.28+dfsg-10_amd64.deb ... +#34 5.231 Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... +#34 5.249 Selecting previously unselected package publicsuffix. +#34 5.250 Preparing to unpack .../12-publicsuffix_20230209.2326-1_all.deb ... +#34 5.251 Unpacking publicsuffix (20230209.2326-1) ... +#34 5.281 Setting up libpsl5:amd64 (0.21.2-1) ... +#34 5.284 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... +#34 5.286 Setting up libsasl2-modules:amd64 (2.1.28+dfsg-10) ... +#34 5.293 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#34 5.297 Setting up libldap-common (2.5.13+dfsg-5) ... +#34 5.301 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#34 5.303 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#34 5.305 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#34 5.307 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... +#34 5.310 Setting up publicsuffix (20230209.2326-1) ... +#34 5.312 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#34 5.314 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... +#34 5.316 Setting up curl (7.88.1-10+deb12u8) ... +#34 5.318 Processing triggers for libc-bin (2.36-9+deb12u9) ... +#34 DONE 5.5s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 5.906 Get:38 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] +#42 5.916 Get:39 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] +#42 5.922 Get:40 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] +#42 5.933 Get:41 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] +#42 5.938 Get:42 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] +#42 5.939 Get:43 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] +#42 5.952 Get:44 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] +#42 5.998 Get:45 http://deb.debian.org/debian bookworm/main amd64 libclucene-core1v5 amd64 2.3.3.4+dfsg-1.1 [489 kB] +#42 6.015 Get:46 http://deb.debian.org/debian bookworm/main amd64 libclucene-contribs1v5 amd64 2.3.3.4+dfsg-1.1 [85.7 kB] +#42 6.028 Get:47 http://deb.debian.org/debian bookworm/main amd64 libavahi-common-data amd64 0.8-10+deb12u1 [107 kB] +#42 6.041 Get:48 http://deb.debian.org/debian bookworm/main amd64 libavahi-common3 amd64 0.8-10+deb12u1 [42.1 kB] +#42 6.047 Get:49 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB] +#42 6.061 Get:50 http://deb.debian.org/debian bookworm/main amd64 libavahi-client3 amd64 0.8-10+deb12u1 [45.8 kB] +#42 6.075 Get:51 http://deb.debian.org/debian bookworm/main amd64 libcups2 amd64 2.4.2-3+deb12u8 [246 kB] +#42 6.080 Get:52 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] +#42 6.086 Get:53 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] +#42 6.092 Get:54 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] +#42 6.099 Get:55 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] +#42 6.104 Get:56 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] +#42 6.111 Get:57 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] +#42 6.117 Get:58 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] +#42 6.123 Get:59 http://deb.debian.org/debian bookworm/main amd64 libcurl3-gnutls amd64 7.88.1-10+deb12u8 [385 kB] +#42 6.132 Get:60 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] +#42 6.151 Get:61 http://deb.debian.org/debian bookworm/main amd64 libdconf1 amd64 0.40.0-4 [40.9 kB] +#42 6.192 Get:62 http://deb.debian.org/debian bookworm/main amd64 libeot0 amd64 0.01-5+b1 [27.1 kB] +#42 6.229 Get:63 http://deb.debian.org/debian bookworm/main amd64 libepoxy0 amd64 1.5.10-1 [189 kB] +#42 6.246 Get:64 http://deb.debian.org/debian bookworm/main amd64 libexttextcat-data all 3.4.5-1 [164 kB] +#42 6.261 Get:65 http://deb.debian.org/debian bookworm/main amd64 libexttextcat-2.0-0 amd64 3.4.5-1 [15.9 kB] +#42 6.274 Get:66 http://deb.debian.org/debian bookworm/main amd64 libassuan0 amd64 2.5.5-5 [48.5 kB] +#42 6.287 Get:67 http://deb.debian.org/debian bookworm/main amd64 gpgconf amd64 2.2.40-1.1 [564 kB] +#42 6.303 Get:68 http://deb.debian.org/debian bookworm/main amd64 libksba8 amd64 1.6.3-2 [128 kB] +#42 6.318 Get:69 http://deb.debian.org/debian bookworm/main amd64 libnpth0 amd64 1.6-3 [19.0 kB] +#42 6.331 Get:70 http://deb.debian.org/debian bookworm/main amd64 dirmngr amd64 2.2.40-1.1 [792 kB] +#42 6.368 Get:71 http://deb.debian.org/debian bookworm/main amd64 gnupg-l10n all 2.2.40-1.1 [1093 kB] +#42 6.392 Get:72 http://deb.debian.org/debian bookworm/main amd64 gnupg-utils amd64 2.2.40-1.1 [927 kB] +#42 6.418 Get:73 http://deb.debian.org/debian bookworm/main amd64 gpg amd64 2.2.40-1.1 [949 kB] +#42 6.434 Get:74 http://deb.debian.org/debian bookworm/main amd64 pinentry-curses amd64 1.2.1-1 [77.4 kB] +#42 6.447 Get:75 http://deb.debian.org/debian bookworm/main amd64 gpg-agent amd64 2.2.40-1.1 [695 kB] +#42 6.462 Get:76 http://deb.debian.org/debian bookworm/main amd64 gpg-wks-client amd64 2.2.40-1.1 [541 kB] +#42 6.480 Get:77 http://deb.debian.org/debian bookworm/main amd64 gpg-wks-server amd64 2.2.40-1.1 [531 kB] +#42 6.493 Get:78 http://deb.debian.org/debian bookworm/main amd64 gpgsm amd64 2.2.40-1.1 [671 kB] +#42 6.540 Get:79 http://deb.debian.org/debian bookworm/main amd64 gnupg all 2.2.40-1.1 [846 kB] +#42 6.599 Get:80 http://deb.debian.org/debian bookworm/main amd64 libgpgme11 amd64 1.18.0-3+b1 [300 kB] +#42 6.646 Get:81 http://deb.debian.org/debian bookworm/main amd64 libgpgmepp6 amd64 1.18.0-3+b1 [293 kB] +#42 6.695 Get:82 http://deb.debian.org/debian bookworm/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +#42 6.726 Get:83 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] +#42 ... + +#45 [opea/lvm-llava:latest 4/6] COPY comps /home/user/comps +#45 DONE 0.3s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 6.772 Get:84 http://deb.debian.org/debian bookworm/main amd64 libdw1 amd64 0.188-2.1 [235 kB] +#42 6.816 Get:85 http://deb.debian.org/debian bookworm/main amd64 libunwind8 amd64 1.6.2-3 [51.2 kB] +#42 6.830 Get:86 http://deb.debian.org/debian bookworm/main amd64 libcap2-bin amd64 1:2.66-4 [34.7 kB] +#42 6.847 Get:87 http://deb.debian.org/debian bookworm/main amd64 libgstreamer1.0-0 amd64 1.22.0-2+deb12u1 [1170 kB] +#42 6.864 Get:88 http://deb.debian.org/debian bookworm/main amd64 liborc-0.4-0 amd64 1:0.4.33-2 [164 kB] +#42 6.878 Get:89 http://deb.debian.org/debian bookworm/main amd64 iso-codes all 4.15.0-1 [2906 kB] +#42 6.904 Get:90 http://deb.debian.org/debian bookworm/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.22.0-3+deb12u4 [935 kB] +#42 6.911 Get:91 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz0b amd64 6.0.0+dfsg-3 [1945 kB] +#42 6.932 Get:92 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz-icu0 amd64 6.0.0+dfsg-3 [1557 kB] +#42 6.975 Get:93 http://deb.debian.org/debian bookworm/main amd64 libhunspell-1.7-0 amd64 1.7.1-1 [193 kB] +#42 7.013 Get:94 http://deb.debian.org/debian bookworm/main amd64 libhyphen0 amd64 2.8.8-7 [32.5 kB] +#42 7.049 Get:95 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB] +#42 7.064 Get:96 http://deb.debian.org/debian bookworm/main amd64 libice6 amd64 2:1.0.10-1 [58.5 kB] +#42 7.070 Get:97 http://deb.debian.org/debian bookworm/main amd64 libjpeg62-turbo amd64 1:2.1.5-2 [166 kB] +#42 7.077 Get:98 http://deb.debian.org/debian bookworm/main amd64 liblcms2-2 amd64 2.14-2 [154 kB] +#42 7.091 Get:99 http://deb.debian.org/debian bookworm/main amd64 libmythes-1.2-0 amd64 2:1.2.5-1 [11.1 kB] +#42 7.097 Get:100 http://deb.debian.org/debian bookworm/main amd64 libnspr4 amd64 2:4.35-1 [113 kB] +#42 7.104 Get:101 http://deb.debian.org/debian bookworm/main amd64 libnss3 amd64 2:3.87.1-1+deb12u1 [1331 kB] +#42 7.125 Get:102 http://deb.debian.org/debian bookworm/main amd64 libnumbertext-1.0-0 amd64 1.0.11-1 [106 kB] +#42 7.139 Get:103 http://deb.debian.org/debian-security bookworm-security/main amd64 libopenjp2-7 amd64 2.5.0-2+deb12u1 [189 kB] +#42 7.154 Get:104 http://deb.debian.org/debian bookworm/main amd64 libboost-filesystem1.74.0 amd64 1.74.0+ds1-21 [258 kB] +#42 7.171 Get:105 http://deb.debian.org/debian bookworm/main amd64 libboost-iostreams1.74.0 amd64 1.74.0+ds1-21 [240 kB] +#42 7.190 Get:106 http://deb.debian.org/debian bookworm/main amd64 liborcus-parser-0.17-0 amd64 0.17.2-2+b2 [111 kB] +#42 7.205 Get:107 http://deb.debian.org/debian bookworm/main amd64 liborcus-0.17-0 amd64 0.17.2-2+b2 [383 kB] +#42 7.211 Get:108 http://deb.debian.org/debian bookworm/main amd64 libdeflate0 amd64 1.14-1 [61.4 kB] +#42 7.220 Get:109 http://deb.debian.org/debian bookworm/main amd64 libjbig0 amd64 2.1-6.1 [31.7 kB] +#42 7.225 Get:110 http://deb.debian.org/debian bookworm/main amd64 liblerc4 amd64 4.0.0+ds-2 [170 kB] +#42 7.233 Get:111 http://deb.debian.org/debian bookworm/main amd64 libwebp7 amd64 1.2.4-0.2+deb12u1 [286 kB] +#42 7.240 Get:112 http://deb.debian.org/debian bookworm/main amd64 libtiff6 amd64 4.5.0-6+deb12u2 [316 kB] +#42 7.254 Get:113 http://deb.debian.org/debian bookworm/main amd64 libpoppler126 amd64 22.12.0-2+b1 [1852 kB] +#42 7.271 Get:114 http://deb.debian.org/debian bookworm/main amd64 libxslt1.1 amd64 1.1.35-1 [242 kB] +#42 7.314 Get:115 http://deb.debian.org/debian bookworm/main amd64 libyajl2 amd64 2.1.0-3+deb12u2 [23.0 kB] +#42 7.356 Get:116 http://deb.debian.org/debian bookworm/main amd64 libraptor2-0 amd64 2.0.15-4 [163 kB] +#42 7.404 Get:117 http://deb.debian.org/debian bookworm/main amd64 libltdl7 amd64 2.4.7-7~deb12u1 [393 kB] +#42 7.419 Get:118 http://deb.debian.org/debian bookworm/main amd64 libmhash2 amd64 0.9.9.9-9 [94.2 kB] +#42 7.435 Get:119 http://deb.debian.org/debian bookworm/main amd64 librasqal3 amd64 0.9.33-2 [191 kB] +#42 7.450 Get:120 http://deb.debian.org/debian bookworm/main amd64 librdf0 amd64 1.0.17-3 [105 kB] +#42 7.478 Get:121 http://deb.debian.org/debian bookworm/main amd64 librevenge-0.0-0 amd64 0.0.5-3 [287 kB] +#42 7.492 Get:122 http://deb.debian.org/debian bookworm/main amd64 libsm6 amd64 2:1.2.3-1 [35.1 kB] +#42 7.498 Get:123 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] +#42 7.505 Get:124 http://deb.debian.org/debian bookworm/main amd64 libxinerama1 amd64 2:1.1.4-3 [17.8 kB] +#42 7.520 Get:125 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1 amd64 1.2.37-2 [153 kB] +#42 7.535 Get:126 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1-nss amd64 1.2.37-2 [64.8 kB] +#42 7.541 Get:127 http://deb.debian.org/debian bookworm/main amd64 libxrandr2 amd64 2:1.5.2-2+b1 [39.2 kB] +#42 7.555 Get:128 http://deb.debian.org/debian bookworm/main amd64 libzxing2 amd64 1.4.0-3+b1 [601 kB] +#42 7.588 Get:129 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-core amd64 4:7.4.7-1+deb12u6 [32.6 MB] +#42 7.802 Get:130 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-base-core amd64 4:7.4.7-1+deb12u6 [799 kB] +#42 7.805 Get:131 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-base-drivers amd64 4:7.4.7-1+deb12u6 [546 kB] +#42 7.807 Get:132 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-base amd64 4:7.4.7-1+deb12u6 [1416 kB] +#42 7.832 Get:133 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-minimal amd64 3.11.2-6+deb12u5 [816 kB] +#42 7.842 Get:134 http://deb.debian.org/debian bookworm/main amd64 python3.11-minimal amd64 3.11.2-6+deb12u5 [2067 kB] +#42 7.862 Get:135 http://deb.debian.org/debian bookworm/main amd64 python3-minimal amd64 3.11.2-1+b1 [26.3 kB] +#42 7.862 Get:136 http://deb.debian.org/debian bookworm/main amd64 media-types all 10.0.0 [26.1 kB] +#42 7.867 Get:137 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-stdlib amd64 3.11.2-6+deb12u5 [1797 kB] +#42 7.878 Get:138 http://deb.debian.org/debian bookworm/main amd64 python3.11 amd64 3.11.2-6+deb12u5 [573 kB] +#42 7.885 Get:139 http://deb.debian.org/debian bookworm/main amd64 libpython3-stdlib amd64 3.11.2-1+b1 [9312 B] +#42 7.891 Get:140 http://deb.debian.org/debian bookworm/main amd64 python3 amd64 3.11.2-1+b1 [26.3 kB] +#42 7.897 Get:141 http://deb.debian.org/debian bookworm/main amd64 bzip2 amd64 1.0.8-5+b1 [49.8 kB] +#42 7.903 Get:142 http://deb.debian.org/debian bookworm/main amd64 wget amd64 1.21.3-1+b2 [984 kB] +#42 7.913 Get:143 http://deb.debian.org/debian bookworm/main amd64 xz-utils amd64 5.4.1-0.2 [471 kB] +#42 7.920 Get:144 http://deb.debian.org/debian bookworm/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +#42 7.926 Get:145 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-common all 2.42.10+dfsg-1+deb12u1 [306 kB] +#42 7.933 Get:146 http://deb.debian.org/debian bookworm/main amd64 shared-mime-info amd64 2.2-1 [729 kB] +#42 7.940 Get:147 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.10+dfsg-1+deb12u1 [139 kB] +#42 7.946 Get:148 http://deb.debian.org/debian bookworm/main amd64 gtk-update-icon-cache amd64 3.24.38-2~deb12u3 [44.2 kB] +#42 7.953 Get:149 http://deb.debian.org/debian bookworm/main amd64 adwaita-icon-theme all 43-1 [5124 kB] +#42 7.982 Get:150 http://deb.debian.org/debian bookworm/main amd64 at-spi2-common all 2.46.0-5 [162 kB] +#42 7.983 Get:151 http://deb.debian.org/debian bookworm/main amd64 binutils-common amd64 2.40-2 [2487 kB] +#42 7.996 Get:152 http://deb.debian.org/debian bookworm/main amd64 libbinutils amd64 2.40-2 [572 kB] +#42 8.003 Get:153 http://deb.debian.org/debian bookworm/main amd64 libctf-nobfd0 amd64 2.40-2 [153 kB] +#42 8.010 Get:154 http://deb.debian.org/debian bookworm/main amd64 libctf0 amd64 2.40-2 [89.8 kB] +#42 8.023 Get:155 http://deb.debian.org/debian bookworm/main amd64 libgprofng0 amd64 2.40-2 [812 kB] +#42 8.035 Get:156 http://deb.debian.org/debian bookworm/main amd64 libjansson4 amd64 2.14-2 [40.8 kB] +#42 8.041 Get:157 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-64-linux-gnu amd64 2.40-2 [2246 kB] +#42 8.082 Get:158 http://deb.debian.org/debian bookworm/main amd64 binutils amd64 2.40-2 [65.0 kB] +#42 8.118 Get:159 http://deb.debian.org/debian bookworm/main amd64 libc-dev-bin amd64 2.36-9+deb12u9 [46.7 kB] +#42 8.154 Get:160 http://deb.debian.org/debian bookworm-updates/main amd64 linux-libc-dev amd64 6.1.124-1 [2099 kB] +#42 8.199 Get:161 http://deb.debian.org/debian bookworm/main amd64 libcrypt-dev amd64 1:4.4.33-2 [118 kB] +#42 8.234 Get:162 http://deb.debian.org/debian bookworm/main amd64 libtirpc-dev amd64 1.3.3+ds-1 [191 kB] +#42 8.271 Get:163 http://deb.debian.org/debian bookworm/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +#42 8.311 Get:164 http://deb.debian.org/debian bookworm/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB] +#42 8.350 Get:165 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd64 2.36-9+deb12u9 [1904 kB] +#42 8.401 Get:166 http://deb.debian.org/debian bookworm/main amd64 libisl23 amd64 0.25-1.1 [683 kB] +#42 8.448 Get:167 http://deb.debian.org/debian bookworm/main amd64 libmpfr6 amd64 4.2.0-1 [701 kB] +#42 8.492 Get:168 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 1.3.1-1 [51.5 kB] +#42 8.574 Get:169 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 12.2.0-14 [9764 kB] +#42 8.685 Get:170 http://deb.debian.org/debian bookworm/main amd64 cpp amd64 4:12.2.0-3 [6836 B] +#42 8.715 Get:171 http://deb.debian.org/debian bookworm/main amd64 libcc1-0 amd64 12.2.0-14 [41.7 kB] +#42 8.744 Get:172 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB] +#42 8.774 Get:173 http://deb.debian.org/debian bookworm/main amd64 libitm1 amd64 12.2.0-14 [26.1 kB] +#42 8.804 Get:174 http://deb.debian.org/debian bookworm/main amd64 libatomic1 amd64 12.2.0-14 [9328 B] +#42 8.834 Get:175 http://deb.debian.org/debian bookworm/main amd64 libasan8 amd64 12.2.0-14 [2195 kB] +#42 8.879 Get:176 http://deb.debian.org/debian bookworm/main amd64 liblsan0 amd64 12.2.0-14 [969 kB] +#42 8.916 Get:177 http://deb.debian.org/debian bookworm/main amd64 libtsan2 amd64 12.2.0-14 [2196 kB] +#42 8.973 Get:178 http://deb.debian.org/debian bookworm/main amd64 libubsan1 amd64 12.2.0-14 [883 kB] +#42 9.007 Get:179 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB] +#42 9.040 Get:180 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev amd64 12.2.0-14 [2437 kB] +#42 9.088 Get:181 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 12.2.0-14 [19.3 MB] +#42 9.343 Get:182 http://deb.debian.org/debian bookworm/main amd64 gcc amd64 4:12.2.0-3 [5216 B] +#42 9.366 Get:183 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-dev amd64 12.2.0-14 [2046 kB] +#42 9.418 Get:184 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 12.2.0-14 [10.7 MB] +#42 ... + +#46 [opea/multimodalqna:latest git 1/2] RUN apt-get update && apt-get install -y --no-install-recommends git +#0 0.335 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#0 0.347 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#0 0.356 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#0 0.438 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#0 0.629 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#0 0.635 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#0 1.655 Fetched 9303 kB in 1s (6984 kB/s) +#0 1.655 Reading package lists... +#0 2.167 Reading package lists... +#0 2.635 Building dependency tree... +#0 2.743 Reading state information... +#0 2.852 The following additional packages will be installed: +#0 2.852 git-man libbrotli1 libcurl3-gnutls liberror-perl libexpat1 libgdbm-compat4 +#0 2.853 libldap-2.5-0 libnghttp2-14 libperl5.36 libpsl5 librtmp1 libsasl2-2 +#0 2.853 libsasl2-modules-db libssh2-1 perl perl-modules-5.36 +#0 2.854 Suggested packages: +#0 2.854 gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-email git-gui +#0 2.854 gitk gitweb git-cvs git-mediawiki git-svn sensible-utils perl-doc +#0 2.854 libterm-readline-gnu-perl | libterm-readline-perl-perl make +#0 2.854 libtap-harness-archive-perl +#0 2.854 Recommended packages: +#0 2.854 patch less ssh-client libldap-common publicsuffix libsasl2-modules +#0 2.973 The following NEW packages will be installed: +#0 2.973 git git-man libbrotli1 libcurl3-gnutls liberror-perl libexpat1 +#0 2.973 libgdbm-compat4 libldap-2.5-0 libnghttp2-14 libperl5.36 libpsl5 librtmp1 +#0 2.974 libsasl2-2 libsasl2-modules-db libssh2-1 perl perl-modules-5.36 +#0 3.001 0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded. +#0 3.001 Need to get 18.1 MB of archives. +#0 3.001 After this operation, 100 MB of additional disk space will be used. +#0 3.001 Get:1 http://deb.debian.org/debian bookworm/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u1 [2815 kB] +#0 3.038 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB] +#0 3.044 Get:3 http://deb.debian.org/debian bookworm/main amd64 libperl5.36 amd64 5.36.0-7+deb12u1 [4218 kB] +#0 3.074 Get:4 http://deb.debian.org/debian bookworm/main amd64 perl amd64 5.36.0-7+deb12u1 [239 kB] +#0 3.079 Get:5 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] +#0 3.087 Get:6 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] +#0 3.094 Get:7 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] +#0 3.101 Get:8 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] +#0 3.109 Get:9 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] +#0 3.117 Get:10 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] +#0 3.126 Get:11 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] +#0 3.133 Get:12 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] +#0 3.140 Get:13 http://deb.debian.org/debian bookworm/main amd64 libcurl3-gnutls amd64 7.88.1-10+deb12u8 [385 kB] +#0 3.171 Get:14 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] +#0 3.199 Get:15 http://deb.debian.org/debian bookworm/main amd64 liberror-perl all 0.17029-2 [29.0 kB] +#0 3.227 Get:16 http://deb.debian.org/debian-security bookworm-security/main amd64 git-man all 1:2.39.5-0+deb12u2 [2053 kB] +#0 3.266 Get:17 http://deb.debian.org/debian-security bookworm-security/main amd64 git amd64 1:2.39.5-0+deb12u2 [7260 kB] +#0 3.417 debconf: delaying package configuration, since apt-utils is not installed +#0 3.440 Fetched 18.1 MB in 0s (55.0 MB/s) +#0 3.454 Selecting previously unselected package perl-modules-5.36. +#0 3.454 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) +#0 3.459 Preparing to unpack .../00-perl-modules-5.36_5.36.0-7+deb12u1_all.deb ... +#0 3.460 Unpacking perl-modules-5.36 (5.36.0-7+deb12u1) ... +#0 3.735 Selecting previously unselected package libgdbm-compat4:amd64. +#0 3.736 Preparing to unpack .../01-libgdbm-compat4_1.23-3_amd64.deb ... +#0 3.737 Unpacking libgdbm-compat4:amd64 (1.23-3) ... +#0 3.755 Selecting previously unselected package libperl5.36:amd64. +#0 3.756 Preparing to unpack .../02-libperl5.36_5.36.0-7+deb12u1_amd64.deb ... +#0 3.757 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u1) ... +#0 4.068 Selecting previously unselected package perl. +#0 4.069 Preparing to unpack .../03-perl_5.36.0-7+deb12u1_amd64.deb ... +#0 4.074 Unpacking perl (5.36.0-7+deb12u1) ... +#0 4.105 Selecting previously unselected package libbrotli1:amd64. +#0 4.106 Preparing to unpack .../04-libbrotli1_1.0.9-2+b6_amd64.deb ... +#0 4.107 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... +#0 4.140 Selecting previously unselected package libsasl2-modules-db:amd64. +#0 4.141 Preparing to unpack .../05-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... +#0 4.141 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#0 4.161 Selecting previously unselected package libsasl2-2:amd64. +#0 4.162 Preparing to unpack .../06-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... +#0 4.163 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#0 4.180 Selecting previously unselected package libldap-2.5-0:amd64. +#0 4.180 Preparing to unpack .../07-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... +#0 4.181 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#0 4.206 Selecting previously unselected package libnghttp2-14:amd64. +#0 4.207 Preparing to unpack .../08-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... +#0 4.207 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#0 4.225 Selecting previously unselected package libpsl5:amd64. +#0 4.226 Preparing to unpack .../09-libpsl5_0.21.2-1_amd64.deb ... +#0 4.227 Unpacking libpsl5:amd64 (0.21.2-1) ... +#0 4.243 Selecting previously unselected package librtmp1:amd64. +#0 4.243 Preparing to unpack .../10-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... +#0 4.244 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#0 4.262 Selecting previously unselected package libssh2-1:amd64. +#0 4.262 Preparing to unpack .../11-libssh2-1_1.10.0-3+b1_amd64.deb ... +#0 4.263 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... +#0 4.309 Selecting previously unselected package libcurl3-gnutls:amd64. +#0 4.309 Preparing to unpack .../12-libcurl3-gnutls_7.88.1-10+deb12u8_amd64.deb ... +#0 4.310 Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... +#0 4.346 Selecting previously unselected package libexpat1:amd64. +#0 4.347 Preparing to unpack .../13-libexpat1_2.5.0-1+deb12u1_amd64.deb ... +#0 4.347 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... +#0 4.367 Selecting previously unselected package liberror-perl. +#0 4.368 Preparing to unpack .../14-liberror-perl_0.17029-2_all.deb ... +#0 4.369 Unpacking liberror-perl (0.17029-2) ... +#0 4.383 Selecting previously unselected package git-man. +#0 4.384 Preparing to unpack .../15-git-man_1%3a2.39.5-0+deb12u2_all.deb ... +#0 4.384 Unpacking git-man (1:2.39.5-0+deb12u2) ... +#0 4.504 Selecting previously unselected package git. +#0 4.505 Preparing to unpack .../16-git_1%3a2.39.5-0+deb12u2_amd64.deb ... +#0 4.510 Unpacking git (1:2.39.5-0+deb12u2) ... +#0 4.832 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... +#0 4.834 Setting up libpsl5:amd64 (0.21.2-1) ... +#0 4.835 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... +#0 4.837 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#0 4.839 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#0 4.841 Setting up perl-modules-5.36 (5.36.0-7+deb12u1) ... +#0 4.843 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#0 4.845 Setting up libgdbm-compat4:amd64 (1.23-3) ... +#0 4.847 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#0 4.849 Setting up git-man (1:2.39.5-0+deb12u2) ... +#0 4.850 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... +#0 4.852 Setting up libperl5.36:amd64 (5.36.0-7+deb12u1) ... +#0 4.854 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#0 4.855 Setting up perl (5.36.0-7+deb12u1) ... +#0 4.864 Setting up libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... +#0 4.866 Setting up liberror-perl (0.17029-2) ... +#0 4.868 Setting up git (1:2.39.5-0+deb12u2) ... +#0 4.875 Processing triggers for libc-bin (2.36-9+deb12u9) ... +#46 DONE 5.7s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 9.717 Get:185 http://deb.debian.org/debian bookworm/main amd64 g++ amd64 4:12.2.0-3 [1356 B] +#42 9.755 Get:186 http://deb.debian.org/debian bookworm/main amd64 make amd64 4.3-4.1 [396 kB] +#42 9.797 Get:187 http://deb.debian.org/debian bookworm/main amd64 libdpkg-perl all 1.21.22 [603 kB] +#42 9.845 Get:188 http://deb.debian.org/debian bookworm/main amd64 patch amd64 2.7.6-7 [128 kB] +#42 9.880 Get:189 http://deb.debian.org/debian bookworm/main amd64 dpkg-dev all 1.21.22 [1353 kB] +#42 9.937 Get:190 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B] +#42 9.971 Get:191 http://deb.debian.org/debian bookworm/main amd64 ca-certificates-java all 20230710~deb12u1 [11.9 kB] +#42 10.01 Get:192 http://deb.debian.org/debian bookworm/main amd64 libblas3 amd64 3.11.0-2 [149 kB] +#42 10.06 Get:193 http://deb.debian.org/debian bookworm/main amd64 libgfortran5 amd64 12.2.0-14 [793 kB] +#42 ... + +#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim +#0 0.795 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#0 0.813 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#0 0.828 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#0 0.903 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#0 1.593 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#0 1.616 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#0 2.589 Fetched 9303 kB in 2s (5101 kB/s) +#0 2.589 Reading package lists... +#0 3.042 Reading package lists... +#0 3.529 Building dependency tree... +#0 3.640 Reading state information... +#0 3.767 The following additional packages will be installed: +#0 3.767 fontconfig-config fonts-dejavu-core libbrotli1 libbsd0 libdrm-amdgpu1 +#0 3.767 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 +#0 3.767 libelf1 libexpat1 libfontconfig1 libfreetype6 libgl1 libgl1-mesa-dri +#0 3.767 libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgpm2 libicu72 libjemalloc2 +#0 3.767 libllvm15 libpciaccess0 libpixman-1-0 libpng16-16 libsensors-config +#0 3.767 libsensors5 libsodium23 libx11-6 libx11-data libx11-xcb1 libxau6 +#0 3.767 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 +#0 3.767 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxdmcp6 +#0 3.768 libxext6 libxfixes3 libxml2 libxrender1 libxshmfence1 libxxf86vm1 libz3-4 +#0 3.768 vim-common vim-runtime +#0 3.769 Suggested packages: +#0 3.769 low-memory-monitor gpm binutils pciutils lm-sensors ctags vim-doc +#0 3.769 vim-scripts +#0 3.769 Recommended packages: +#0 3.769 libglib2.0-data shared-mime-info xdg-user-dirs xxd +#0 4.023 The following NEW packages will be installed: +#0 4.023 fontconfig-config fonts-dejavu-core libbrotli1 libbsd0 libcairo2 +#0 4.023 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 +#0 4.023 libdrm2 libedit2 libelf1 libexpat1 libfontconfig1 libfreetype6 libgl1 +#0 4.023 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa libglib2.0-0 libglvnd0 +#0 4.023 libglx-mesa0 libglx0 libgpm2 libicu72 libjemalloc-dev libjemalloc2 libllvm15 +#0 4.024 libpciaccess0 libpixman-1-0 libpng16-16 libsensors-config libsensors5 +#0 4.024 libsodium23 libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri2-0 +#0 4.024 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 +#0 4.024 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxdmcp6 libxext6 +#0 4.024 libxfixes3 libxml2 libxrender1 libxshmfence1 libxxf86vm1 libz3-4 vim +#0 4.024 vim-common vim-runtime +#0 4.098 0 upgraded, 60 newly installed, 0 to remove and 0 not upgraded. +#0 4.098 Need to get 66.2 MB of archives. +#0 4.098 After this operation, 275 MB of additional disk space will be used. +#0 4.098 Get:1 http://deb.debian.org/debian bookworm/main amd64 vim-common all 2:9.0.1378-2 [124 kB] +#0 4.149 Get:2 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] +#0 4.210 Get:3 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] +#0 4.253 Get:4 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] +#0 4.297 Get:5 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] +#0 4.341 Get:6 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] +#0 4.384 Get:7 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] +#0 4.399 Get:8 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] +#0 4.448 Get:9 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] +#0 4.463 Get:10 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] +#0 4.474 Get:11 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] +#0 4.480 Get:12 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] +#0 4.486 Get:13 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] +#0 4.522 Get:14 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] +#0 4.553 Get:15 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] +#0 4.571 Get:16 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] +#0 4.585 Get:17 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] +#0 4.591 Get:18 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] +#0 4.627 Get:19 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] +#0 4.640 Get:20 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] +#0 4.657 Get:21 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] +#0 4.671 Get:22 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] +#0 4.709 Get:23 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] +#0 4.722 Get:24 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] +#0 4.762 Get:25 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] +#0 4.776 Get:26 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] +#0 4.790 Get:27 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] +#0 4.796 Get:28 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] +#0 4.810 Get:29 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] +#0 4.855 Get:30 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] +#0 4.875 Get:31 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] +#0 4.895 Get:32 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] +#0 4.944 Get:33 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] +#0 4.993 Get:34 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] +#0 5.006 Get:35 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] +#0 5.020 Get:36 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] +#0 5.034 Get:37 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] +#0 5.048 Get:38 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] +#0 5.098 Get:39 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] +#0 5.199 Get:40 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] +#0 5.202 Get:41 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +#0 5.235 Get:42 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +#0 5.257 Get:43 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] +#0 5.406 Get:44 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] +#0 5.419 Get:45 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] +#0 5.510 Get:46 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] +#0 5.711 Get:47 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] +#0 5.714 Get:48 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] +#0 5.719 Get:49 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] +#0 5.780 Get:50 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] +#0 5.781 Get:51 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] +#0 5.789 Get:52 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] +#0 5.807 Get:53 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-glx amd64 22.3.6-1+deb12u1 [14.5 kB] +#0 5.810 Get:54 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] +#0 5.828 Get:55 http://deb.debian.org/debian bookworm/main amd64 libgpm2 amd64 1.20.7-10+b1 [14.2 kB] +#0 5.840 Get:56 http://deb.debian.org/debian bookworm/main amd64 libjemalloc2 amd64 5.3.0-1 [275 kB] +#0 5.855 Get:57 http://deb.debian.org/debian bookworm/main amd64 libjemalloc-dev amd64 5.3.0-1 [494 kB] +#0 5.872 Get:58 http://deb.debian.org/debian bookworm/main amd64 libsodium23 amd64 1.0.18-1 [161 kB] +#0 5.887 Get:59 http://deb.debian.org/debian bookworm/main amd64 vim-runtime all 2:9.0.1378-2 [7025 kB] +#0 5.947 Get:60 http://deb.debian.org/debian bookworm/main amd64 vim amd64 2:9.0.1378-2 [1567 kB] +#0 6.101 debconf: delaying package configuration, since apt-utils is not installed +#0 6.126 Fetched 66.2 MB in 2s (34.4 MB/s) +#0 6.143 Selecting previously unselected package vim-common. +#0 6.143 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) +#0 6.148 Preparing to unpack .../00-vim-common_2%3a9.0.1378-2_all.deb ... +#0 6.149 Unpacking vim-common (2:9.0.1378-2) ... +#0 6.176 Selecting previously unselected package fonts-dejavu-core. +#0 6.177 Preparing to unpack .../01-fonts-dejavu-core_2.37-6_all.deb ... +#0 6.179 Unpacking fonts-dejavu-core (2.37-6) ... +#0 6.270 Selecting previously unselected package fontconfig-config. +#0 6.270 Preparing to unpack .../02-fontconfig-config_2.14.1-4_amd64.deb ... +#0 6.370 Unpacking fontconfig-config (2.14.1-4) ... +#0 6.469 Selecting previously unselected package libbrotli1:amd64. +#0 6.470 Preparing to unpack .../03-libbrotli1_1.0.9-2+b6_amd64.deb ... +#0 6.481 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... +#0 6.516 Selecting previously unselected package libbsd0:amd64. +#0 6.517 Preparing to unpack .../04-libbsd0_0.11.7-2_amd64.deb ... +#0 6.518 Unpacking libbsd0:amd64 (0.11.7-2) ... +#0 6.545 Selecting previously unselected package libexpat1:amd64. +#0 6.546 Preparing to unpack .../05-libexpat1_2.5.0-1+deb12u1_amd64.deb ... +#0 6.549 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... +#0 6.572 Selecting previously unselected package libpng16-16:amd64. +#0 6.572 Preparing to unpack .../06-libpng16-16_1.6.39-2_amd64.deb ... +#0 6.574 Unpacking libpng16-16:amd64 (1.6.39-2) ... +#0 6.606 Selecting previously unselected package libfreetype6:amd64. +#0 6.607 Preparing to unpack .../07-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... +#0 6.647 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#0 6.805 Selecting previously unselected package libfontconfig1:amd64. +#0 6.806 Preparing to unpack .../08-libfontconfig1_2.14.1-4_amd64.deb ... +#0 6.808 Unpacking libfontconfig1:amd64 (2.14.1-4) ... +#0 6.841 Selecting previously unselected package libpixman-1-0:amd64. +#0 6.842 Preparing to unpack .../09-libpixman-1-0_0.42.2-1_amd64.deb ... +#0 6.843 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... +#0 6.882 Selecting previously unselected package libxau6:amd64. +#0 6.883 Preparing to unpack .../10-libxau6_1%3a1.0.9-1_amd64.deb ... +#0 6.884 Unpacking libxau6:amd64 (1:1.0.9-1) ... +#0 6.901 Selecting previously unselected package libxdmcp6:amd64. +#0 6.902 Preparing to unpack .../11-libxdmcp6_1%3a1.1.2-3_amd64.deb ... +#0 6.902 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... +#0 6.922 Selecting previously unselected package libxcb1:amd64. +#0 6.922 Preparing to unpack .../12-libxcb1_1.15-1_amd64.deb ... +#0 6.922 Unpacking libxcb1:amd64 (1.15-1) ... +#0 6.947 Selecting previously unselected package libx11-data. +#0 6.948 Preparing to unpack .../13-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... +#0 6.949 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... +#0 6.994 Selecting previously unselected package libx11-6:amd64. +#0 6.995 Preparing to unpack .../14-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... +#0 6.996 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#0 7.055 Selecting previously unselected package libxcb-render0:amd64. +#0 7.056 Preparing to unpack .../15-libxcb-render0_1.15-1_amd64.deb ... +#0 7.056 Unpacking libxcb-render0:amd64 (1.15-1) ... +#0 7.077 Selecting previously unselected package libxcb-shm0:amd64. +#0 7.078 Preparing to unpack .../16-libxcb-shm0_1.15-1_amd64.deb ... +#0 7.079 Unpacking libxcb-shm0:amd64 (1.15-1) ... +#0 7.097 Selecting previously unselected package libxext6:amd64. +#0 7.098 Preparing to unpack .../17-libxext6_2%3a1.3.4-1+b1_amd64.deb ... +#0 7.099 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... +#0 7.115 Selecting previously unselected package libxrender1:amd64. +#0 7.116 Preparing to unpack .../18-libxrender1_1%3a0.9.10-1.1_amd64.deb ... +#0 7.116 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... +#0 7.131 Selecting previously unselected package libcairo2:amd64. +#0 7.132 Preparing to unpack .../19-libcairo2_1.16.0-7_amd64.deb ... +#0 7.133 Unpacking libcairo2:amd64 (1.16.0-7) ... +#0 7.179 Selecting previously unselected package libdrm-common. +#0 7.180 Preparing to unpack .../20-libdrm-common_2.4.114-1_all.deb ... +#0 7.181 Unpacking libdrm-common (2.4.114-1) ... +#0 7.194 Selecting previously unselected package libdrm2:amd64. +#0 7.195 Preparing to unpack .../21-libdrm2_2.4.114-1+b1_amd64.deb ... +#0 7.195 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... +#0 7.225 Selecting previously unselected package libdrm-amdgpu1:amd64. +#0 7.226 Preparing to unpack .../22-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... +#0 7.227 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#0 7.241 Selecting previously unselected package libpciaccess0:amd64. +#0 7.242 Preparing to unpack .../23-libpciaccess0_0.17-2_amd64.deb ... +#0 7.243 Unpacking libpciaccess0:amd64 (0.17-2) ... +#0 7.259 Selecting previously unselected package libdrm-intel1:amd64. +#0 7.260 Preparing to unpack .../24-libdrm-intel1_2.4.114-1+b1_amd64.deb ... +#0 7.265 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... +#0 7.281 Selecting previously unselected package libdrm-nouveau2:amd64. +#0 7.282 Preparing to unpack .../25-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... +#0 7.283 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#0 7.297 Selecting previously unselected package libdrm-radeon1:amd64. +#0 7.297 Preparing to unpack .../26-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... +#0 7.298 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#0 7.313 Selecting previously unselected package libedit2:amd64. +#0 7.313 Preparing to unpack .../27-libedit2_3.1-20221030-2_amd64.deb ... +#0 7.314 Unpacking libedit2:amd64 (3.1-20221030-2) ... +#0 7.334 Selecting previously unselected package libelf1:amd64. +#0 7.335 Preparing to unpack .../28-libelf1_0.188-2.1_amd64.deb ... +#0 7.336 Unpacking libelf1:amd64 (0.188-2.1) ... +#0 7.363 Selecting previously unselected package libglvnd0:amd64. +#0 7.364 Preparing to unpack .../29-libglvnd0_1.6.0-1_amd64.deb ... +#0 7.365 Unpacking libglvnd0:amd64 (1.6.0-1) ... +#0 7.388 Selecting previously unselected package libglapi-mesa:amd64. +#0 7.389 Preparing to unpack .../30-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... +#0 7.390 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#0 7.408 Selecting previously unselected package libx11-xcb1:amd64. +#0 7.409 Preparing to unpack .../31-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... +#0 7.410 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#0 7.427 Selecting previously unselected package libxcb-dri2-0:amd64. +#0 7.428 Preparing to unpack .../32-libxcb-dri2-0_1.15-1_amd64.deb ... +#0 7.429 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... +#0 7.449 Selecting previously unselected package libxcb-dri3-0:amd64. +#0 7.450 Preparing to unpack .../33-libxcb-dri3-0_1.15-1_amd64.deb ... +#0 7.451 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... +#0 7.471 Selecting previously unselected package libxcb-glx0:amd64. +#0 7.472 Preparing to unpack .../34-libxcb-glx0_1.15-1_amd64.deb ... +#0 7.473 Unpacking libxcb-glx0:amd64 (1.15-1) ... +#0 7.495 Selecting previously unselected package libxcb-present0:amd64. +#0 7.495 Preparing to unpack .../35-libxcb-present0_1.15-1_amd64.deb ... +#0 7.496 Unpacking libxcb-present0:amd64 (1.15-1) ... +#0 7.516 Selecting previously unselected package libxcb-randr0:amd64. +#0 7.516 Preparing to unpack .../36-libxcb-randr0_1.15-1_amd64.deb ... +#0 7.518 Unpacking libxcb-randr0:amd64 (1.15-1) ... +#0 7.538 Selecting previously unselected package libxcb-sync1:amd64. +#0 7.539 Preparing to unpack .../37-libxcb-sync1_1.15-1_amd64.deb ... +#0 7.540 Unpacking libxcb-sync1:amd64 (1.15-1) ... +#0 7.561 Selecting previously unselected package libxcb-xfixes0:amd64. +#0 7.561 Preparing to unpack .../38-libxcb-xfixes0_1.15-1_amd64.deb ... +#0 7.562 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... +#0 7.583 Selecting previously unselected package libxfixes3:amd64. +#0 7.583 Preparing to unpack .../39-libxfixes3_1%3a6.0.0-2_amd64.deb ... +#0 7.585 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... +#0 7.600 Selecting previously unselected package libxshmfence1:amd64. +#0 7.600 Preparing to unpack .../40-libxshmfence1_1.3-1_amd64.deb ... +#0 7.601 Unpacking libxshmfence1:amd64 (1.3-1) ... +#0 7.621 Selecting previously unselected package libxxf86vm1:amd64. +#0 7.622 Preparing to unpack .../41-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +#0 7.623 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#0 7.638 Selecting previously unselected package libicu72:amd64. +#0 7.639 Preparing to unpack .../42-libicu72_72.1-3_amd64.deb ... +#0 7.640 Unpacking libicu72:amd64 (72.1-3) ... +#0 8.150 Selecting previously unselected package libxml2:amd64. +#0 8.151 Preparing to unpack .../43-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... +#0 8.152 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#0 8.221 Selecting previously unselected package libz3-4:amd64. +#0 8.222 Preparing to unpack .../44-libz3-4_4.8.12-3.1_amd64.deb ... +#0 8.223 Unpacking libz3-4:amd64 (4.8.12-3.1) ... +#0 8.729 Selecting previously unselected package libllvm15:amd64. +#0 8.730 Preparing to unpack .../45-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... +#0 8.731 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... +#0 9.586 Selecting previously unselected package libsensors-config. +#0 9.587 Preparing to unpack .../46-libsensors-config_1%3a3.6.0-7.1_all.deb ... +#0 9.589 Unpacking libsensors-config (1:3.6.0-7.1) ... +#0 9.610 Selecting previously unselected package libsensors5:amd64. +#0 9.612 Preparing to unpack .../47-libsensors5_1%3a3.6.0-7.1_amd64.deb ... +#0 9.617 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... +#0 9.636 Selecting previously unselected package libgl1-mesa-dri:amd64. +#0 9.638 Preparing to unpack .../48-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... +#0 9.643 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#47 10.13 Selecting previously unselected package libglx-mesa0:amd64. +#47 10.13 Preparing to unpack .../49-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... +#47 10.13 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#47 10.16 Selecting previously unselected package libglx0:amd64. +#47 ... + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#0 0.801 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#0 0.828 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#0 0.855 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#0 0.893 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#0 1.024 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#0 1.035 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#0 2.069 Fetched 9303 kB in 1s (7231 kB/s) +#0 2.069 Reading package lists... +#0 2.545 Reading package lists... +#0 3.011 Building dependency tree... +#0 3.118 Reading state information... +#0 3.242 The following additional packages will be installed: +#0 3.242 adwaita-icon-theme at-spi2-common binutils binutils-common +#0 3.242 binutils-x86-64-linux-gnu bzip2 ca-certificates-java cpp cpp-12 +#0 3.242 default-jre-headless dpkg-dev fontconfig fontconfig-config fonts-dejavu-core +#0 3.242 g++ g++-12 gcc gcc-12 gtk-update-icon-cache hicolor-icon-theme java-common +#0 3.242 libasan8 libasound2 libasound2-data libatk1.0-0 libatomic1 libavahi-client3 +#0 3.242 libavahi-common-data libavahi-common3 libbinutils libbrotli1 libbsd0 +#0 3.242 libc-dev-bin libc6-dev libcairo2 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 +#0 3.242 libcups2 libdatrie1 libdbus-1-3 libdeflate0 libdpkg-perl libdrm-amdgpu1 +#0 3.242 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 +#0 3.242 libelf1 libexpat1 libfontconfig1 libfreetype6 libfribidi0 libgcc-12-dev +#0 3.243 libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgif7 libgl1 +#0 3.243 libgl1-mesa-dri libglapi-mesa libglib2.0-0 libglvnd0 libglx-mesa0 libglx0 +#0 3.243 libgomp1 libgprofng0 libgraphite2-3 libgtk2.0-0 libgtk2.0-common +#0 3.243 libharfbuzz0b libicu72 libisl23 libitm1 libjansson4 libjbig0 libjemalloc2 +#0 3.243 libjpeg62-turbo liblcms2-2 liblerc4 libllvm15 liblsan0 libmpc3 libmpfr6 +#0 3.243 libnsl-dev libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 +#0 3.243 libpangoft2-1.0-0 libpciaccess0 libpcsclite1 libperl5.36 libpixman-1-0 +#0 3.243 libpng16-16 libpsl5 libquadmath0 libsensors-config libsensors5 +#0 3.243 libstdc++-12-dev libthai-data libthai0 libtiff6 libtirpc-dev libtsan2 +#0 3.243 libubsan1 libwebp7 libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri2-0 +#0 3.243 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 +#0 3.243 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcomposite1 libxcursor1 +#0 3.243 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 libxinerama1 libxml2 +#0 3.243 libxrandr2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 libz3-4 +#0 3.243 linux-libc-dev make openjdk-17-jre openjdk-17-jre-headless patch perl +#0 3.243 perl-modules-5.36 rpcsvc-proto shared-mime-info x11-common xz-utils +#0 3.244 Suggested packages: +#0 3.244 binutils-doc bzip2-doc cpp-doc gcc-12-locales cpp-12-doc debian-keyring +#0 3.244 g++-multilib g++-12-multilib gcc-12-doc gcc-multilib manpages-dev autoconf +#0 3.244 automake libtool flex bison gdb gcc-doc gcc-12-multilib libasound2-plugins +#0 3.244 alsa-utils glibc-doc cups-common gnupg | sq | sqop | pgpainless-cli +#0 3.244 sensible-utils git bzr low-memory-monitor gvfs liblcms2-utils pciutils pcscd +#0 3.244 lm-sensors libstdc++-12-doc make-doc libnss-mdns fonts-dejavu-extra +#0 3.244 fonts-ipafont-gothic fonts-ipafont-mincho fonts-wqy-microhei +#0 3.244 | fonts-wqy-zenhei fonts-indic ed diffutils-doc perl-doc +#0 3.244 libterm-readline-gnu-perl | libterm-readline-perl-perl +#0 3.244 libtap-harness-archive-perl +#0 3.244 Recommended packages: +#0 3.244 librsvg2-common fakeroot gnupg | sq | sqop | pgpainless-cli +#0 3.244 libalgorithm-merge-perl alsa-ucm-conf alsa-topology-conf manpages +#0 3.244 manpages-dev libc-devtools dbus libfile-fcntllock-perl +#0 3.244 liblocale-gettext-perl libgdk-pixbuf2.0-bin libglib2.0-data xdg-user-dirs +#0 3.244 libgail-common libgtk2.0-bin publicsuffix libatk-wrapper-java-jni +#0 3.244 fonts-dejavu-extra +#0 3.816 The following NEW packages will be installed: +#0 3.816 adwaita-icon-theme at-spi2-common binutils binutils-common +#0 3.816 binutils-x86-64-linux-gnu build-essential bzip2 ca-certificates-java cpp +#0 3.816 cpp-12 default-jre default-jre-headless dpkg-dev fontconfig +#0 3.816 fontconfig-config fonts-dejavu-core g++ g++-12 gcc gcc-12 +#0 3.816 gtk-update-icon-cache hicolor-icon-theme java-common libasan8 libasound2 +#0 3.816 libasound2-data libatk1.0-0 libatomic1 libavahi-client3 libavahi-common-data +#0 3.816 libavahi-common3 libbinutils libbrotli1 libbsd0 libc-dev-bin libc6-dev +#0 3.816 libcairo2 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libcups2 libdatrie1 +#0 3.816 libdbus-1-3 libdeflate0 libdpkg-perl libdrm-amdgpu1 libdrm-common +#0 3.816 libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libelf1 +#0 3.816 libexpat1 libfontconfig1 libfreetype6 libfribidi0 libgcc-12-dev +#0 3.816 libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgif7 libgl1 +#0 3.816 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa libglib2.0-0 libglvnd0 +#0 3.816 libglx-mesa0 libglx0 libgomp1 libgprofng0 libgraphite2-3 libgtk2.0-0 +#0 3.816 libgtk2.0-common libharfbuzz0b libicu72 libisl23 libitm1 libjansson4 +#0 3.816 libjbig0 libjemalloc-dev libjemalloc2 libjpeg62-turbo liblcms2-2 liblerc4 +#0 3.816 libllvm15 liblsan0 libmpc3 libmpfr6 libnsl-dev libnspr4 libnss3 +#0 3.816 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +#0 3.817 libpcsclite1 libperl5.36 libpixman-1-0 libpng16-16 libpsl5 libquadmath0 +#0 3.817 libsensors-config libsensors5 libstdc++-12-dev libthai-data libthai0 +#0 3.817 libtiff6 libtirpc-dev libtsan2 libubsan1 libwebp7 libx11-6 libx11-data +#0 3.817 libx11-xcb1 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 +#0 3.817 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 +#0 3.817 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 +#0 3.817 libxinerama1 libxml2 libxrandr2 libxrender1 libxshmfence1 libxtst6 +#0 3.817 libxxf86vm1 libz3-4 linux-libc-dev make openjdk-17-jre +#0 3.817 openjdk-17-jre-headless patch perl perl-modules-5.36 rpcsvc-proto +#0 3.817 shared-mime-info wget x11-common xz-utils +#0 3.874 0 upgraded, 155 newly installed, 0 to remove and 0 not upgraded. +#0 3.874 Need to get 194 MB of archives. +#0 3.874 After this operation, 820 MB of additional disk space will be used. +#0 3.874 Get:1 http://deb.debian.org/debian bookworm/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u1 [2815 kB] +#0 3.965 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB] +#0 3.998 Get:3 http://deb.debian.org/debian bookworm/main amd64 libperl5.36 amd64 5.36.0-7+deb12u1 [4218 kB] +#0 4.112 Get:4 http://deb.debian.org/debian bookworm/main amd64 perl amd64 5.36.0-7+deb12u1 [239 kB] +#0 4.160 Get:5 http://deb.debian.org/debian bookworm/main amd64 bzip2 amd64 1.0.8-5+b1 [49.8 kB] +#0 4.198 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] +#0 4.241 Get:7 http://deb.debian.org/debian bookworm/main amd64 wget amd64 1.21.3-1+b2 [984 kB] +#0 4.271 Get:8 http://deb.debian.org/debian bookworm/main amd64 xz-utils amd64 5.4.1-0.2 [471 kB] +#0 4.287 Get:9 http://deb.debian.org/debian bookworm/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +#0 4.301 Get:10 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-common all 2.42.10+dfsg-1+deb12u1 [306 kB] +#0 4.317 Get:11 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] +#0 4.344 Get:12 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] +#0 4.429 Get:13 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] +#0 4.443 Get:14 http://deb.debian.org/debian bookworm/main amd64 shared-mime-info amd64 2.2-1 [729 kB] +#0 4.489 Get:15 http://deb.debian.org/debian bookworm/main amd64 libjpeg62-turbo amd64 1:2.1.5-2 [166 kB] +#0 4.495 Get:16 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] +#0 4.510 Get:17 http://deb.debian.org/debian bookworm/main amd64 libdeflate0 amd64 1.14-1 [61.4 kB] +#0 4.523 Get:18 http://deb.debian.org/debian bookworm/main amd64 libjbig0 amd64 2.1-6.1 [31.7 kB] +#0 4.537 Get:19 http://deb.debian.org/debian bookworm/main amd64 liblerc4 amd64 4.0.0+ds-2 [170 kB] +#0 4.551 Get:20 http://deb.debian.org/debian bookworm/main amd64 libwebp7 amd64 1.2.4-0.2+deb12u1 [286 kB] +#0 4.591 Get:21 http://deb.debian.org/debian bookworm/main amd64 libtiff6 amd64 4.5.0-6+deb12u2 [316 kB] +#0 4.606 Get:22 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.10+dfsg-1+deb12u1 [139 kB] +#0 4.624 Get:23 http://deb.debian.org/debian bookworm/main amd64 gtk-update-icon-cache amd64 3.24.38-2~deb12u3 [44.2 kB] +#0 4.661 Get:24 http://deb.debian.org/debian bookworm/main amd64 adwaita-icon-theme all 43-1 [5124 kB] +#0 4.694 Get:25 http://deb.debian.org/debian bookworm/main amd64 at-spi2-common all 2.46.0-5 [162 kB] +#0 4.709 Get:26 http://deb.debian.org/debian bookworm/main amd64 binutils-common amd64 2.40-2 [2487 kB] +#0 4.731 Get:27 http://deb.debian.org/debian bookworm/main amd64 libbinutils amd64 2.40-2 [572 kB] +#0 4.754 Get:28 http://deb.debian.org/debian bookworm/main amd64 libctf-nobfd0 amd64 2.40-2 [153 kB] +#0 4.768 Get:29 http://deb.debian.org/debian bookworm/main amd64 libctf0 amd64 2.40-2 [89.8 kB] +#0 4.810 Get:30 http://deb.debian.org/debian bookworm/main amd64 libgprofng0 amd64 2.40-2 [812 kB] +#0 4.827 Get:31 http://deb.debian.org/debian bookworm/main amd64 libjansson4 amd64 2.14-2 [40.8 kB] +#0 4.842 Get:32 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-64-linux-gnu amd64 2.40-2 [2246 kB] +#0 4.894 Get:33 http://deb.debian.org/debian bookworm/main amd64 binutils amd64 2.40-2 [65.0 kB] +#0 4.908 Get:34 http://deb.debian.org/debian bookworm/main amd64 libc-dev-bin amd64 2.36-9+deb12u9 [46.7 kB] +#0 4.929 Get:35 http://deb.debian.org/debian bookworm-updates/main amd64 linux-libc-dev amd64 6.1.124-1 [2099 kB] +#0 4.951 Get:36 http://deb.debian.org/debian bookworm/main amd64 libcrypt-dev amd64 1:4.4.33-2 [118 kB] +#0 4.968 Get:37 http://deb.debian.org/debian bookworm/main amd64 libtirpc-dev amd64 1.3.3+ds-1 [191 kB] +#0 4.982 Get:38 http://deb.debian.org/debian bookworm/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +#0 4.997 Get:39 http://deb.debian.org/debian bookworm/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB] +#0 5.047 Get:40 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd64 2.36-9+deb12u9 [1904 kB] +#0 5.068 Get:41 http://deb.debian.org/debian bookworm/main amd64 libisl23 amd64 0.25-1.1 [683 kB] +#0 5.087 Get:42 http://deb.debian.org/debian bookworm/main amd64 libmpfr6 amd64 4.2.0-1 [701 kB] +#0 5.104 Get:43 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 1.3.1-1 [51.5 kB] +#0 5.119 Get:44 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 12.2.0-14 [9764 kB] +#0 5.217 Get:45 http://deb.debian.org/debian bookworm/main amd64 cpp amd64 4:12.2.0-3 [6836 B] +#0 5.259 Get:46 http://deb.debian.org/debian bookworm/main amd64 libcc1-0 amd64 12.2.0-14 [41.7 kB] +#0 5.296 Get:47 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB] +#0 5.310 Get:48 http://deb.debian.org/debian bookworm/main amd64 libitm1 amd64 12.2.0-14 [26.1 kB] +#0 5.324 Get:49 http://deb.debian.org/debian bookworm/main amd64 libatomic1 amd64 12.2.0-14 [9328 B] +#0 5.338 Get:50 http://deb.debian.org/debian bookworm/main amd64 libasan8 amd64 12.2.0-14 [2195 kB] +#0 5.366 Get:51 http://deb.debian.org/debian bookworm/main amd64 liblsan0 amd64 12.2.0-14 [969 kB] +#0 5.402 Get:52 http://deb.debian.org/debian bookworm/main amd64 libtsan2 amd64 12.2.0-14 [2196 kB] +#0 5.468 Get:53 http://deb.debian.org/debian bookworm/main amd64 libubsan1 amd64 12.2.0-14 [883 kB] +#0 5.493 Get:54 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB] +#0 5.507 Get:55 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev amd64 12.2.0-14 [2437 kB] +#0 5.530 Get:56 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 12.2.0-14 [19.3 MB] +#0 5.701 Get:57 http://deb.debian.org/debian bookworm/main amd64 gcc amd64 4:12.2.0-3 [5216 B] +#0 5.703 Get:58 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-dev amd64 12.2.0-14 [2046 kB] +#0 5.740 Get:59 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 12.2.0-14 [10.7 MB] +#0 5.955 Get:60 http://deb.debian.org/debian bookworm/main amd64 g++ amd64 4:12.2.0-3 [1356 B] +#0 5.998 Get:61 http://deb.debian.org/debian bookworm/main amd64 make amd64 4.3-4.1 [396 kB] +#0 6.045 Get:62 http://deb.debian.org/debian bookworm/main amd64 libdpkg-perl all 1.21.22 [603 kB] +#0 6.089 Get:63 http://deb.debian.org/debian bookworm/main amd64 patch amd64 2.7.6-7 [128 kB] +#0 6.131 Get:64 http://deb.debian.org/debian bookworm/main amd64 dpkg-dev all 1.21.22 [1353 kB] +#0 6.163 Get:65 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B] +#0 6.176 Get:66 http://deb.debian.org/debian bookworm/main amd64 ca-certificates-java all 20230710~deb12u1 [11.9 kB] +#0 6.189 Get:67 http://deb.debian.org/debian bookworm/main amd64 java-common all 0.74 [6388 B] +#0 6.194 Get:68 http://deb.debian.org/debian bookworm/main amd64 libavahi-common-data amd64 0.8-10+deb12u1 [107 kB] +#0 6.201 Get:69 http://deb.debian.org/debian bookworm/main amd64 libavahi-common3 amd64 0.8-10+deb12u1 [42.1 kB] +#0 6.207 Get:70 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB] +#0 6.214 Get:71 http://deb.debian.org/debian bookworm/main amd64 libavahi-client3 amd64 0.8-10+deb12u1 [45.8 kB] +#0 6.221 Get:72 http://deb.debian.org/debian bookworm/main amd64 libcups2 amd64 2.4.2-3+deb12u8 [246 kB] +#0 6.227 Get:73 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] +#0 6.235 Get:74 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] +#0 6.262 Get:75 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] +#0 6.293 Get:76 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] +#0 6.332 Get:77 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] +#0 6.341 Get:78 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] +#0 6.356 Get:79 http://deb.debian.org/debian bookworm/main amd64 liblcms2-2 amd64 2.14-2 [154 kB] +#0 6.370 Get:80 http://deb.debian.org/debian bookworm/main amd64 libnspr4 amd64 2:4.35-1 [113 kB] +#0 6.406 Get:81 http://deb.debian.org/debian bookworm/main amd64 libnss3 amd64 2:3.87.1-1+deb12u1 [1331 kB] +#0 6.451 Get:82 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB] +#0 6.485 Get:83 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB] +#0 6.503 Get:84 http://deb.debian.org/debian bookworm/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +#0 6.516 Get:85 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz0b amd64 6.0.0+dfsg-3 [1945 kB] +#0 6.537 Get:86 http://deb.debian.org/debian bookworm/main amd64 libpcsclite1 amd64 1.9.9-2 [49.7 kB] +#0 6.551 Get:87 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre-headless amd64 17.0.14+7-1~deb12u1 [43.8 MB] +#0 6.803 Get:88 http://deb.debian.org/debian bookworm/main amd64 default-jre-headless amd64 2:1.17-74 [2936 B] +#0 6.803 Get:89 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-common all 2.24.33-2+deb12u1 [2660 kB] +#0 6.850 Get:90 http://deb.debian.org/debian bookworm/main amd64 libatk1.0-0 amd64 2.46.0-5 [49.6 kB] +#0 6.883 Get:91 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] +#0 6.925 Get:92 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] +#0 6.959 Get:93 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] +#0 6.967 Get:94 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] +#0 6.973 Get:95 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] +#0 6.979 Get:96 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] +#0 6.986 Get:97 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] +#0 6.995 Get:98 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] +#0 7.001 Get:99 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] +#0 7.007 Get:100 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] +#0 7.017 Get:101 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] +#0 7.026 Get:102 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] +#0 7.035 Get:103 http://deb.debian.org/debian bookworm/main amd64 fontconfig amd64 2.14.1-4 [449 kB] +#0 7.052 Get:104 http://deb.debian.org/debian bookworm/main amd64 libfribidi0 amd64 1.0.8-2.1 [65.0 kB] +#0 7.066 Get:105 http://deb.debian.org/debian bookworm/main amd64 libthai-data all 0.1.29-1 [176 kB] +#0 7.080 Get:106 http://deb.debian.org/debian bookworm/main amd64 libdatrie1 amd64 0.2.13-2+b1 [43.3 kB] +#0 7.093 Get:107 http://deb.debian.org/debian bookworm/main amd64 libthai0 amd64 0.1.29-1 [57.5 kB] +#0 7.106 Get:108 http://deb.debian.org/debian bookworm/main amd64 libpango-1.0-0 amd64 1.50.12+ds-1 [212 kB] +#0 7.122 Get:109 http://deb.debian.org/debian bookworm/main amd64 libpangoft2-1.0-0 amd64 1.50.12+ds-1 [47.4 kB] +#0 7.136 Get:110 http://deb.debian.org/debian bookworm/main amd64 libpangocairo-1.0-0 amd64 1.50.12+ds-1 [34.2 kB] +#0 7.150 Get:111 http://deb.debian.org/debian bookworm/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +#0 7.156 Get:112 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] +#0 7.171 Get:113 http://deb.debian.org/debian bookworm/main amd64 libxcursor1 amd64 1:1.2.1-1 [40.9 kB] +#0 7.186 Get:114 http://deb.debian.org/debian bookworm/main amd64 libxdamage1 amd64 1:1.1.6-1 [15.1 kB] +#0 7.226 Get:115 http://deb.debian.org/debian bookworm/main amd64 libxi6 amd64 2:1.8-1+b1 [84.2 kB] +#0 7.268 Get:116 http://deb.debian.org/debian bookworm/main amd64 libxinerama1 amd64 2:1.1.4-3 [17.8 kB] +#0 7.283 Get:117 http://deb.debian.org/debian bookworm/main amd64 libxrandr2 amd64 2:1.5.2-2+b1 [39.2 kB] +#0 7.297 Get:118 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-0 amd64 2.24.33-2+deb12u1 [1811 kB] +#0 7.309 Get:119 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] +#0 7.315 Get:120 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] +#0 7.321 Get:121 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] +#0 7.327 Get:122 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] +#0 7.333 Get:123 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] +#0 7.340 Get:124 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] +#0 7.348 Get:125 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] +#0 7.354 Get:126 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] +#0 7.360 Get:127 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] +#0 7.366 Get:128 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] +#0 7.372 Get:129 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] +#0 7.394 Get:130 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] +#0 7.418 Get:131 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +#0 7.441 Get:132 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +#0 7.462 Get:133 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] +#0 7.485 Get:134 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] +#0 7.508 Get:135 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] +#0 7.533 Get:136 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] +#0 7.558 Get:137 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] +#0 7.583 Get:138 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] +#0 7.613 Get:139 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] +#0 7.639 Get:140 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] +#0 7.793 Get:141 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] +#0 8.396 Get:142 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] +#0 8.408 Get:143 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] +#0 8.441 Get:144 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] +#0 8.636 Get:145 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] +#0 8.673 Get:146 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] +#0 8.710 Get:147 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] +#0 8.726 Get:148 http://deb.debian.org/debian bookworm/main amd64 libgif7 amd64 5.2.1-2.5 [46.9 kB] +#0 8.732 Get:149 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB] +#0 8.747 Get:150 http://deb.debian.org/debian bookworm/main amd64 libxtst6 amd64 2:1.2.3-1.1 [28.0 kB] +#0 8.792 Get:151 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre amd64 17.0.14+7-1~deb12u1 [210 kB] +#0 8.810 Get:152 http://deb.debian.org/debian bookworm/main amd64 default-jre amd64 2:1.17-74 [1056 B] +#0 8.817 Get:153 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-glx amd64 22.3.6-1+deb12u1 [14.5 kB] +#0 8.823 Get:154 http://deb.debian.org/debian bookworm/main amd64 libjemalloc2 amd64 5.3.0-1 [275 kB] +#0 8.832 Get:155 http://deb.debian.org/debian bookworm/main amd64 libjemalloc-dev amd64 5.3.0-1 [494 kB] +#0 9.039 debconf: delaying package configuration, since apt-utils is not installed +#0 9.127 Fetched 194 MB in 5s (38.8 MB/s) +#0 9.229 Selecting previously unselected package perl-modules-5.36. +#0 9.229 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) +#0 9.233 Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u1_all.deb ... +#0 9.270 Unpacking perl-modules-5.36 (5.36.0-7+deb12u1) ... +#0 9.600 Selecting previously unselected package libgdbm-compat4:amd64. +#0 9.601 Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... +#0 9.604 Unpacking libgdbm-compat4:amd64 (1.23-3) ... +#0 9.627 Selecting previously unselected package libperl5.36:amd64. +#0 9.629 Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u1_amd64.deb ... +#0 9.630 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u1) ... +#0 9.949 Selecting previously unselected package perl. +#0 9.951 Preparing to unpack .../003-perl_5.36.0-7+deb12u1_amd64.deb ... +#0 9.956 Unpacking perl (5.36.0-7+deb12u1) ... +#0 9.984 Selecting previously unselected package bzip2. +#0 9.985 Preparing to unpack .../004-bzip2_1.0.8-5+b1_amd64.deb ... +#0 9.986 Unpacking bzip2 (1.0.8-5+b1) ... +#0 10.00 Selecting previously unselected package libpsl5:amd64. +#0 10.00 Preparing to unpack .../005-libpsl5_0.21.2-1_amd64.deb ... +#0 10.00 Unpacking libpsl5:amd64 (0.21.2-1) ... +#0 10.02 Selecting previously unselected package wget. +#0 10.02 Preparing to unpack .../006-wget_1.21.3-1+b2_amd64.deb ... +#0 10.02 Unpacking wget (1.21.3-1+b2) ... +#0 10.09 Selecting previously unselected package xz-utils. +#0 10.09 Preparing to unpack .../007-xz-utils_5.4.1-0.2_amd64.deb ... +#0 10.09 Unpacking xz-utils (5.4.1-0.2) ... +#0 10.14 Selecting previously unselected package hicolor-icon-theme. +#0 10.14 Preparing to unpack .../008-hicolor-icon-theme_0.17-2_all.deb ... +#0 10.14 Unpacking hicolor-icon-theme (0.17-2) ... +#48 10.22 Selecting previously unselected package libgdk-pixbuf2.0-common. +#48 10.22 Preparing to unpack .../009-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u1_all.deb ... +#48 10.22 Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... +#48 ... + +#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim +#47 10.16 Preparing to unpack .../50-libglx0_1.6.0-1_amd64.deb ... +#47 10.16 Unpacking libglx0:amd64 (1.6.0-1) ... +#47 10.19 Selecting previously unselected package libgl1:amd64. +#47 10.19 Preparing to unpack .../51-libgl1_1.6.0-1_amd64.deb ... +#47 10.19 Unpacking libgl1:amd64 (1.6.0-1) ... +#47 10.21 Selecting previously unselected package libgl1-mesa-glx:amd64. +#47 10.21 Preparing to unpack .../52-libgl1-mesa-glx_22.3.6-1+deb12u1_amd64.deb ... +#47 10.21 Unpacking libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... +#47 10.23 Selecting previously unselected package libglib2.0-0:amd64. +#47 10.23 Preparing to unpack .../53-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... +#47 10.23 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#47 10.33 Selecting previously unselected package libgpm2:amd64. +#47 10.34 Preparing to unpack .../54-libgpm2_1.20.7-10+b1_amd64.deb ... +#47 10.34 Unpacking libgpm2:amd64 (1.20.7-10+b1) ... +#47 10.35 Selecting previously unselected package libjemalloc2:amd64. +#47 10.35 Preparing to unpack .../55-libjemalloc2_5.3.0-1_amd64.deb ... +#47 10.35 Unpacking libjemalloc2:amd64 (5.3.0-1) ... +#47 10.38 Selecting previously unselected package libjemalloc-dev. +#47 10.39 Preparing to unpack .../56-libjemalloc-dev_5.3.0-1_amd64.deb ... +#47 10.39 Unpacking libjemalloc-dev (5.3.0-1) ... +#47 10.44 Selecting previously unselected package libsodium23:amd64. +#47 10.44 Preparing to unpack .../57-libsodium23_1.0.18-1_amd64.deb ... +#47 10.44 Unpacking libsodium23:amd64 (1.0.18-1) ... +#47 10.47 Selecting previously unselected package vim-runtime. +#47 10.47 Preparing to unpack .../58-vim-runtime_2%3a9.0.1378-2_all.deb ... +#47 10.47 Adding 'diversion of /usr/share/vim/vim90/doc/help.txt to /usr/share/vim/vim90/doc/help.txt.vim-tiny by vim-runtime' +#47 10.48 Adding 'diversion of /usr/share/vim/vim90/doc/tags to /usr/share/vim/vim90/doc/tags.vim-tiny by vim-runtime' +#47 10.48 Unpacking vim-runtime (2:9.0.1378-2) ... +#47 10.92 Selecting previously unselected package vim. +#47 10.92 Preparing to unpack .../59-vim_2%3a9.0.1378-2_amd64.deb ... +#47 10.92 Unpacking vim (2:9.0.1378-2) ... +#47 11.05 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... +#47 11.05 Setting up libpixman-1-0:amd64 (0.42.2-1) ... +#47 11.05 Setting up libpciaccess0:amd64 (0.17-2) ... +#47 11.05 Setting up libxau6:amd64 (1:1.0.9-1) ... +#47 11.06 Setting up libsodium23:amd64 (1.0.18-1) ... +#47 11.06 Setting up libgpm2:amd64 (1.20.7-10+b1) ... +#47 11.06 Setting up libicu72:amd64 (72.1-3) ... +#47 11.06 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#47 11.07 No schema files found: doing nothing. +#47 11.07 Setting up libglvnd0:amd64 (1.6.0-1) ... +#47 11.07 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... +#47 11.08 Setting up libsensors-config (1:3.6.0-7.1) ... +#47 11.08 Setting up libjemalloc2:amd64 (5.3.0-1) ... +#47 11.08 Setting up libjemalloc-dev (5.3.0-1) ... +#47 11.08 Setting up libz3-4:amd64 (4.8.12-3.1) ... +#47 11.09 Setting up vim-common (2:9.0.1378-2) ... +#47 11.09 Setting up libx11-data (2:1.8.4-2+deb12u2) ... +#47 11.09 Setting up libpng16-16:amd64 (1.6.39-2) ... +#47 11.09 Setting up fonts-dejavu-core (2.37-6) ... +#47 11.10 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... +#47 11.11 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#47 11.11 Setting up libxshmfence1:amd64 (1.3-1) ... +#47 11.11 Setting up vim-runtime (2:9.0.1378-2) ... +#47 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#0 0.945 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] +#0 0.978 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +#0 1.011 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +#0 1.039 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] +#0 1.445 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] +#0 1.475 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] +#0 2.394 Fetched 9303 kB in 2s (5948 kB/s) +#0 2.394 Reading package lists... +#0 2.877 Reading package lists... +#0 3.365 Building dependency tree... +#0 3.459 Reading state information... +#0 3.573 The following additional packages will be installed: +#0 3.573 alsa-topology-conf alsa-ucm-conf dbus dbus-bin dbus-daemon +#0 3.573 dbus-session-bus-common dbus-system-bus-common fontconfig fontconfig-config +#0 3.573 fonts-dejavu-core i965-va-driver intel-media-va-driver libaacs0 libaom3 +#0 3.573 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 libavc1394-0 +#0 3.573 libavcodec59 libavdevice59 libavfilter8 libavformat59 libavutil57 libbdplus0 +#0 3.574 libblas3 libbluray2 libbrotli1 libbs2b0 libbsd0 libcaca0 libcairo-gobject2 +#0 3.574 libcairo2 libcdio-cdda2 libcdio-paranoia2 libcdio19 libchromaprint1 +#0 3.574 libcjson1 libcodec2-1.0 libcurl4 libdatrie1 libdav1d6 libdbus-1-3 +#0 3.574 libdc1394-25 libdecor-0-0 libdecor-0-plugin-1-cairo libdeflate0 +#0 3.574 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 +#0 3.574 libdrm2 libedit2 libelf1 libepoxy0 libexpat1 libflac12 libflite1 +#0 3.574 libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgdk-pixbuf-2.0-0 +#0 3.574 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgfortran5 libgl1 +#0 3.574 libgl1-mesa-dri libglapi-mesa libglib2.0-0 libglib2.0-data libglvnd0 +#0 3.574 libglx-mesa0 libglx0 libgme0 libgomp1 libgraphite2-3 libgsm1 libharfbuzz0b +#0 3.574 libhwy1 libicu72 libiec61883-0 libigdgmm12 libjack-jackd2-0 libjbig0 +#0 3.574 libjpeg62-turbo libjxl0.7 liblapack3 liblcms2-2 libldap-2.5-0 libldap-common +#0 3.574 liblerc4 liblilv-0-0 libllvm15 libmbedcrypto7 libmfx1 libmp3lame0 +#0 3.574 libmpg123-0 libmysofa1 libnghttp2-14 libnorm1 libnuma1 libogg0 +#0 3.574 libopenal-data libopenal1 libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0 +#0 3.574 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 libpgm-5.3-0 +#0 3.574 libpixman-1-0 libplacebo208 libpng16-16 libpocketsphinx3 libpostproc56 +#0 3.574 libpsl5 libpulse0 libpython3-stdlib libpython3.11-minimal +#0 3.574 libpython3.11-stdlib libquadmath0 librabbitmq4 librav1e0 libraw1394-11 +#0 3.574 librist4 librsvg2-2 librsvg2-common librtmp1 librubberband2 libsamplerate0 +#0 3.574 libsasl2-2 libsasl2-modules libsasl2-modules-db libsdl2-2.0-0 +#0 3.574 libsensors-config libsensors5 libserd-0-0 libshine3 libslang2 libsnappy1v5 +#0 3.574 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 libsoxr0 libspeex1 +#0 3.574 libsphinxbase3 libsratom-0-0 libsrt1.5-gnutls libssh-gcrypt-4 libssh2-1 +#0 3.574 libsvtav1enc1 libswresample4 libswscale6 libthai-data libthai0 libtheora0 +#0 3.574 libtiff6 libtwolame0 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 +#0 3.574 libvdpau-va-gl1 libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 +#0 3.574 libvorbisfile3 libvpx7 libvulkan1 libwayland-client0 libwayland-cursor0 +#0 3.574 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3 libx11-6 libx11-data +#0 3.574 libx11-xcb1 libx264-164 libx265-199 libxau6 libxcb-dri2-0 libxcb-dri3-0 +#0 3.574 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 +#0 3.574 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcursor1 libxdmcp6 +#0 3.574 libxext6 libxfixes3 libxi6 libxkbcommon0 libxml2 libxrandr2 libxrender1 +#0 3.574 libxshmfence1 libxss1 libxv1 libxvidcore4 libxxf86vm1 libz3-4 libzimg2 +#0 3.574 libzmq5 libzvbi-common libzvbi0 media-types mesa-va-drivers +#0 3.574 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 pocketsphinx-en-us +#0 3.574 publicsuffix python3 python3-minimal python3.11 python3.11-minimal +#0 3.574 shared-mime-info va-driver-all vdpau-driver-all x11-common xdg-user-dirs +#0 3.574 xkb-data +#0 3.575 Suggested packages: +#0 3.575 default-dbus-session-bus | dbus-session-bus ffmpeg-doc +#0 3.575 i965-va-driver-shaders libasound2-plugins alsa-utils libcuda1 libnvcuvid1 +#0 3.575 libnvidia-encode1 libbluray-bdj low-memory-monitor jackd2 liblcms2-utils +#0 3.575 libportaudio2 opus-tools pciutils pulseaudio libraw1394-doc librsvg2-bin +#0 3.575 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal +#0 3.575 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql xdg-utils +#0 3.575 lm-sensors serdi sndiod sordi speex opencl-icd python3-doc python3-tk +#0 3.575 python3-venv python3.11-venv python3.11-doc binutils binfmt-support +#0 3.575 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +#0 3.575 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +#0 3.575 nvidia-legacy-340xx-vdpau-driver +#0 4.579 The following NEW packages will be installed: +#0 4.579 alsa-topology-conf alsa-ucm-conf curl dbus dbus-bin dbus-daemon +#0 4.579 dbus-session-bus-common dbus-system-bus-common ffmpeg fontconfig +#0 4.579 fontconfig-config fonts-dejavu-core i965-va-driver intel-media-va-driver +#0 4.579 libaacs0 libaom3 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 +#0 4.579 libavc1394-0 libavcodec59 libavdevice59 libavfilter8 libavformat59 +#0 4.579 libavutil57 libbdplus0 libblas3 libbluray2 libbrotli1 libbs2b0 libbsd0 +#0 4.579 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2 libcdio-paranoia2 +#0 4.579 libcdio19 libchromaprint1 libcjson1 libcodec2-1.0 libcurl4 libdatrie1 +#0 4.579 libdav1d6 libdbus-1-3 libdc1394-25 libdecor-0-0 libdecor-0-plugin-1-cairo +#0 4.579 libdeflate0 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 +#0 4.579 libdrm-radeon1 libdrm2 libedit2 libelf1 libepoxy0 libexpat1 libflac12 +#0 4.579 libflite1 libfontconfig1 libfreetype6 libfribidi0 libgbm1 +#0 4.579 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common +#0 4.580 libgfortran5 libgl1 libgl1-mesa-dri libglapi-mesa libglib2.0-0 +#0 4.580 libglib2.0-data libglvnd0 libglx-mesa0 libglx0 libgme0 libgomp1 +#0 4.580 libgraphite2-3 libgsm1 libharfbuzz0b libhwy1 libicu72 libiec61883-0 +#0 4.580 libigdgmm12 libjack-jackd2-0 libjbig0 libjpeg62-turbo libjxl0.7 liblapack3 +#0 4.580 liblcms2-2 libldap-2.5-0 libldap-common liblerc4 liblilv-0-0 libllvm15 +#0 4.580 libmbedcrypto7 libmfx1 libmp3lame0 libmpg123-0 libmysofa1 libnghttp2-14 +#0 4.580 libnorm1 libnuma1 libogg0 libopenal-data libopenal1 libopenjp2-7 libopenmpt0 +#0 4.580 libopus0 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +#0 4.580 libpgm-5.3-0 libpixman-1-0 libplacebo208 libpng16-16 libpocketsphinx3 +#0 4.580 libpostproc56 libpsl5 libpulse0 libpython3-stdlib libpython3.11-minimal +#0 4.580 libpython3.11-stdlib libquadmath0 librabbitmq4 librav1e0 libraw1394-11 +#0 4.580 librist4 librsvg2-2 librsvg2-common librtmp1 librubberband2 libsamplerate0 +#0 4.580 libsasl2-2 libsasl2-modules libsasl2-modules-db libsdl2-2.0-0 +#0 4.580 libsensors-config libsensors5 libserd-0-0 libshine3 libslang2 libsnappy1v5 +#0 4.580 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 libsoxr0 libspeex1 +#0 4.580 libsphinxbase3 libsratom-0-0 libsrt1.5-gnutls libssh-gcrypt-4 libssh2-1 +#0 4.580 libsvtav1enc1 libswresample4 libswscale6 libthai-data libthai0 libtheora0 +#0 4.580 libtiff6 libtwolame0 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 +#0 4.580 libvdpau-va-gl1 libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 +#0 4.580 libvorbisfile3 libvpx7 libvulkan1 libwayland-client0 libwayland-cursor0 +#0 4.580 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3 libx11-6 libx11-data +#0 4.580 libx11-xcb1 libx264-164 libx265-199 libxau6 libxcb-dri2-0 libxcb-dri3-0 +#0 4.580 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 +#0 4.580 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcursor1 libxdmcp6 +#0 4.580 libxext6 libxfixes3 libxi6 libxkbcommon0 libxml2 libxrandr2 libxrender1 +#0 4.580 libxshmfence1 libxss1 libxv1 libxvidcore4 libxxf86vm1 libz3-4 libzimg2 +#0 4.580 libzmq5 libzvbi-common libzvbi0 media-types mesa-va-drivers +#0 4.580 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 pocketsphinx-en-us +#0 4.580 publicsuffix python3 python3-minimal python3.11 python3.11-minimal +#0 4.580 shared-mime-info va-driver-all vdpau-driver-all x11-common xdg-user-dirs +#0 4.580 xkb-data +#0 4.622 0 upgraded, 238 newly installed, 0 to remove and 0 not upgraded. +#0 4.622 Need to get 182 MB of archives. +#0 4.622 After this operation, 628 MB of additional disk space will be used. +#0 4.622 Get:1 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB] +#0 4.670 Get:2 http://deb.debian.org/debian bookworm/main amd64 dbus-bin amd64 1.14.10-1~deb12u1 [105 kB] +#0 4.690 Get:3 http://deb.debian.org/debian bookworm/main amd64 dbus-session-bus-common all 1.14.10-1~deb12u1 [78.2 kB] +#0 4.709 Get:4 http://deb.debian.org/debian bookworm/main amd64 libapparmor1 amd64 3.0.8-3 [41.2 kB] +#0 4.714 Get:5 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] +#0 4.729 Get:6 http://deb.debian.org/debian bookworm/main amd64 dbus-daemon amd64 1.14.10-1~deb12u1 [184 kB] +#0 4.744 Get:7 http://deb.debian.org/debian bookworm/main amd64 dbus-system-bus-common all 1.14.10-1~deb12u1 [79.3 kB] +#0 4.787 Get:8 http://deb.debian.org/debian bookworm/main amd64 dbus amd64 1.14.10-1~deb12u1 [97.4 kB] +#0 4.835 Get:9 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-minimal amd64 3.11.2-6+deb12u5 [816 kB] +#0 4.897 Get:10 http://deb.debian.org/debian bookworm/main amd64 python3.11-minimal amd64 3.11.2-6+deb12u5 [2067 kB] +#0 4.937 Get:11 http://deb.debian.org/debian bookworm/main amd64 python3-minimal amd64 3.11.2-1+b1 [26.3 kB] +#0 4.950 Get:12 http://deb.debian.org/debian bookworm/main amd64 media-types all 10.0.0 [26.1 kB] +#0 4.964 Get:13 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-stdlib amd64 3.11.2-6+deb12u5 [1797 kB] +#0 5.027 Get:14 http://deb.debian.org/debian bookworm/main amd64 python3.11 amd64 3.11.2-6+deb12u5 [573 kB] +#0 5.082 Get:15 http://deb.debian.org/debian bookworm/main amd64 libpython3-stdlib amd64 3.11.2-1+b1 [9312 B] +#0 5.128 Get:16 http://deb.debian.org/debian bookworm/main amd64 python3 amd64 3.11.2-1+b1 [26.3 kB] +#0 5.214 Get:17 http://deb.debian.org/debian bookworm/main amd64 alsa-topology-conf all 1.2.5.1-2 [15.2 kB] +#0 5.227 Get:18 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB] +#0 5.240 Get:19 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB] +#0 5.283 Get:20 http://deb.debian.org/debian bookworm/main amd64 alsa-ucm-conf all 1.2.8-1 [51.7 kB] +#0 5.314 Get:21 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] +#0 5.347 Get:22 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] +#0 5.377 Get:23 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] +#0 5.411 Get:24 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] +#0 5.444 Get:25 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] +#0 5.481 Get:26 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] +#0 5.523 Get:27 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] +#0 5.564 Get:28 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] +#0 5.608 Get:29 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] +#0 5.654 Get:30 http://deb.debian.org/debian bookworm/main amd64 curl amd64 7.88.1-10+deb12u8 [315 kB] +#0 5.709 Get:31 http://deb.debian.org/debian bookworm/main amd64 libaom3 amd64 3.6.0-1+deb12u1 [1851 kB] +#0 5.767 Get:32 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] +#0 5.803 Get:33 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] +#0 5.817 Get:34 http://deb.debian.org/debian bookworm/main amd64 libva2 amd64 2.17.0-1 [69.2 kB] +#0 5.860 Get:35 http://deb.debian.org/debian bookworm/main amd64 libmfx1 amd64 22.5.4-1 [3219 kB] +#0 5.898 Get:36 http://deb.debian.org/debian bookworm/main amd64 libva-drm2 amd64 2.17.0-1 [16.4 kB] +#0 5.904 Get:37 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] +#0 5.910 Get:38 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] +#0 5.917 Get:39 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] +#0 5.924 Get:40 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] +#0 5.963 Get:41 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] +#0 6.008 Get:42 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] +#0 6.064 Get:43 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] +#0 6.150 Get:44 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] +#0 6.276 Get:45 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] +#0 6.298 Get:46 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] +#0 6.328 Get:47 http://deb.debian.org/debian bookworm/main amd64 libva-x11-2 amd64 2.17.0-1 [21.0 kB] +#0 6.342 Get:48 http://deb.debian.org/debian bookworm/main amd64 libvdpau1 amd64 1.5-2 [26.1 kB] +#0 6.357 Get:49 http://deb.debian.org/debian bookworm/main amd64 ocl-icd-libopencl1 amd64 2.3.1-1 [43.0 kB] +#0 6.371 Get:50 http://deb.debian.org/debian bookworm/main amd64 libavutil57 amd64 7:5.1.6-0+deb12u1 [365 kB] +#0 6.414 Get:51 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] +#0 6.458 Get:52 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] +#0 6.502 Get:53 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] +#0 6.620 Get:54 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] +#0 6.658 Get:55 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] +#0 6.694 Get:56 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] +#0 6.727 Get:57 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] +#0 6.734 Get:58 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] +#0 6.740 Get:59 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] +#0 6.746 Get:60 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] +#0 6.762 Get:61 http://deb.debian.org/debian bookworm/main amd64 libcodec2-1.0 amd64 1.0.5-1 [8171 kB] +#0 6.841 Get:62 http://deb.debian.org/debian bookworm/main amd64 libdav1d6 amd64 1.0.0-2+deb12u1 [513 kB] +#0 6.873 Get:63 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] +#0 6.921 Get:64 http://deb.debian.org/debian bookworm/main amd64 libgsm1 amd64 1.0.22-1 [30.9 kB] +#0 6.962 Get:65 http://deb.debian.org/debian bookworm/main amd64 libhwy1 amd64 1.0.3-3+deb12u1 [348 kB] +#0 6.998 Get:66 http://deb.debian.org/debian bookworm/main amd64 liblcms2-2 amd64 2.14-2 [154 kB] +#0 7.012 Get:67 http://deb.debian.org/debian bookworm/main amd64 libjxl0.7 amd64 0.7.0-10 [1046 kB] +#0 7.028 Get:68 http://deb.debian.org/debian bookworm/main amd64 libmp3lame0 amd64 3.100-6 [365 kB] +#0 7.037 Get:69 http://deb.debian.org/debian-security bookworm-security/main amd64 libopenjp2-7 amd64 2.5.0-2+deb12u1 [189 kB] +#0 7.056 Get:70 http://deb.debian.org/debian bookworm/main amd64 libopus0 amd64 1.3.1-3 [195 kB] +#0 7.071 Get:71 http://deb.debian.org/debian bookworm/main amd64 librav1e0 amd64 0.5.1-6 [763 kB] +#0 7.090 Get:72 http://deb.debian.org/debian bookworm/main amd64 libcairo-gobject2 amd64 1.16.0-7 [112 kB] +#0 7.096 Get:73 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-common all 2.42.10+dfsg-1+deb12u1 [306 kB] +#0 7.103 Get:74 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] +#0 7.170 Get:75 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] +#0 7.174 Get:76 http://deb.debian.org/debian bookworm/main amd64 shared-mime-info amd64 2.2-1 [729 kB] +#0 7.178 Get:77 http://deb.debian.org/debian bookworm/main amd64 libjpeg62-turbo amd64 1:2.1.5-2 [166 kB] +#0 7.180 Get:78 http://deb.debian.org/debian bookworm/main amd64 libdeflate0 amd64 1.14-1 [61.4 kB] +#0 7.189 Get:79 http://deb.debian.org/debian bookworm/main amd64 libjbig0 amd64 2.1-6.1 [31.7 kB] +#0 7.195 Get:80 http://deb.debian.org/debian bookworm/main amd64 liblerc4 amd64 4.0.0+ds-2 [170 kB] +#0 7.201 Get:81 http://deb.debian.org/debian bookworm/main amd64 libwebp7 amd64 1.2.4-0.2+deb12u1 [286 kB] +#0 7.210 Get:82 http://deb.debian.org/debian bookworm/main amd64 libtiff6 amd64 4.5.0-6+deb12u2 [316 kB] +#0 7.217 Get:83 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.10+dfsg-1+deb12u1 [139 kB] +#0 7.223 Get:84 http://deb.debian.org/debian bookworm/main amd64 fontconfig amd64 2.14.1-4 [449 kB] +#0 7.230 Get:85 http://deb.debian.org/debian bookworm/main amd64 libfribidi0 amd64 1.0.8-2.1 [65.0 kB] +#0 7.236 Get:86 http://deb.debian.org/debian bookworm/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +#0 7.242 Get:87 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz0b amd64 6.0.0+dfsg-3 [1945 kB] +#0 7.254 Get:88 http://deb.debian.org/debian bookworm/main amd64 libthai-data all 0.1.29-1 [176 kB] +#0 7.263 Get:89 http://deb.debian.org/debian bookworm/main amd64 libdatrie1 amd64 0.2.13-2+b1 [43.3 kB] +#0 7.269 Get:90 http://deb.debian.org/debian bookworm/main amd64 libthai0 amd64 0.1.29-1 [57.5 kB] +#0 7.275 Get:91 http://deb.debian.org/debian bookworm/main amd64 libpango-1.0-0 amd64 1.50.12+ds-1 [212 kB] +#0 7.282 Get:92 http://deb.debian.org/debian bookworm/main amd64 libpangoft2-1.0-0 amd64 1.50.12+ds-1 [47.4 kB] +#0 7.288 Get:93 http://deb.debian.org/debian bookworm/main amd64 libpangocairo-1.0-0 amd64 1.50.12+ds-1 [34.2 kB] +#0 7.301 Get:94 http://deb.debian.org/debian bookworm/main amd64 librsvg2-2 amd64 2.54.7+dfsg-1~deb12u1 [2620 kB] +#0 7.325 Get:95 http://deb.debian.org/debian bookworm/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +#0 7.346 Get:96 http://deb.debian.org/debian bookworm/main amd64 libsnappy1v5 amd64 1.1.9-3 [26.0 kB] +#0 7.359 Get:97 http://deb.debian.org/debian bookworm/main amd64 libspeex1 amd64 1.2.1-2 [54.6 kB] +#0 7.366 Get:98 http://deb.debian.org/debian bookworm/main amd64 libsvtav1enc1 amd64 1.4.1+dfsg-1 [2121 kB] +#0 7.380 Get:99 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB] +#0 7.393 Get:100 http://deb.debian.org/debian bookworm/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +#0 7.407 Get:101 http://deb.debian.org/debian bookworm/main amd64 libswresample4 amd64 7:5.1.6-0+deb12u1 [99.3 kB] +#0 7.425 Get:102 http://deb.debian.org/debian bookworm/main amd64 libogg0 amd64 1.3.5-3 [23.4 kB] +#0 7.440 Get:103 http://deb.debian.org/debian bookworm/main amd64 libtheora0 amd64 1.1.1+dfsg.1-16.1+b1 [154 kB] +#0 7.455 Get:104 http://deb.debian.org/debian bookworm/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +#0 7.470 Get:105 http://deb.debian.org/debian bookworm/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +#0 7.483 Get:106 http://deb.debian.org/debian bookworm/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +#0 7.498 Get:107 http://deb.debian.org/debian bookworm/main amd64 libvpx7 amd64 1.12.0-1+deb12u3 [1003 kB] +#0 7.514 Get:108 http://deb.debian.org/debian bookworm/main amd64 libwebpmux3 amd64 1.2.4-0.2+deb12u1 [109 kB] +#0 7.528 Get:109 http://deb.debian.org/debian bookworm/main amd64 libx264-164 amd64 2:0.164.3095+gitbaee400-3 [547 kB] +#0 7.544 Get:110 http://deb.debian.org/debian bookworm/main amd64 libnuma1 amd64 2.0.16-1 [21.0 kB] +#0 7.558 Get:111 http://deb.debian.org/debian bookworm/main amd64 libx265-199 amd64 3.5-2+b1 [1150 kB] +#0 7.576 Get:112 http://deb.debian.org/debian bookworm/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +#0 7.599 Get:113 http://deb.debian.org/debian bookworm/main amd64 libzvbi-common all 0.2.41-1 [69.7 kB] +#0 7.613 Get:114 http://deb.debian.org/debian bookworm/main amd64 libzvbi0 amd64 0.2.41-1 [274 kB] +#0 7.629 Get:115 http://deb.debian.org/debian bookworm/main amd64 libavcodec59 amd64 7:5.1.6-0+deb12u1 [5222 kB] +#0 7.658 Get:116 http://deb.debian.org/debian bookworm/main amd64 libraw1394-11 amd64 2.1.2-2 [41.1 kB] +#0 7.671 Get:117 http://deb.debian.org/debian bookworm/main amd64 libavc1394-0 amd64 0.5.4-5 [19.9 kB] +#0 7.714 Get:118 http://deb.debian.org/debian bookworm/main amd64 libass9 amd64 1:0.17.1-1 [107 kB] +#0 7.729 Get:119 http://deb.debian.org/debian bookworm/main amd64 libudfread0 amd64 1.1.2-1 [16.5 kB] +#0 7.743 Get:120 http://deb.debian.org/debian bookworm/main amd64 libbluray2 amd64 1:1.3.4-1 [138 kB] +#0 7.758 Get:121 http://deb.debian.org/debian bookworm/main amd64 libchromaprint1 amd64 1.5.1-2+b1 [41.0 kB] +#0 7.802 Get:122 http://deb.debian.org/debian bookworm/main amd64 libgme0 amd64 0.6.3-6 [130 kB] +#0 7.851 Get:123 http://deb.debian.org/debian bookworm/main amd64 libmpg123-0 amd64 1.31.2-1+deb12u1 [147 kB] +#0 7.898 Get:124 http://deb.debian.org/debian bookworm/main amd64 libvorbisfile3 amd64 1.3.7-1 [26.1 kB] +#0 7.945 Get:125 http://deb.debian.org/debian bookworm/main amd64 libopenmpt0 amd64 0.6.9-1 [693 kB] +#0 8.004 Get:126 http://deb.debian.org/debian bookworm/main amd64 librabbitmq4 amd64 0.11.0-1+b1 [43.5 kB] +#0 8.051 Get:127 http://deb.debian.org/debian bookworm/main amd64 libcjson1 amd64 1.7.15-1+deb12u2 [22.9 kB] +#0 8.099 Get:128 http://deb.debian.org/debian bookworm/main amd64 libmbedcrypto7 amd64 2.28.3-1 [277 kB] +#0 8.149 Get:129 http://deb.debian.org/debian bookworm/main amd64 librist4 amd64 0.2.7+dfsg-1 [73.9 kB] +#0 8.196 Get:130 http://deb.debian.org/debian bookworm/main amd64 libsrt1.5-gnutls amd64 1.5.1-1+deb12u1 [313 kB] +#0 8.248 Get:131 http://deb.debian.org/debian bookworm/main amd64 libssh-gcrypt-4 amd64 0.10.6-0+deb12u1 [219 kB] +#0 8.294 Get:132 http://deb.debian.org/debian bookworm/main amd64 libnorm1 amd64 1.5.9+dfsg-2 [221 kB] +#0 8.340 Get:133 http://deb.debian.org/debian bookworm/main amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB] +#0 8.387 Get:134 http://deb.debian.org/debian bookworm/main amd64 libsodium23 amd64 1.0.18-1 [161 kB] +#0 8.478 Get:135 http://deb.debian.org/debian bookworm/main amd64 libzmq5 amd64 4.3.4-6 [273 kB] +#0 8.512 Get:136 http://deb.debian.org/debian bookworm/main amd64 libavformat59 amd64 7:5.1.6-0+deb12u1 [1104 kB] +#0 8.558 Get:137 http://deb.debian.org/debian bookworm/main amd64 libbs2b0 amd64 3.1.0+dfsg-7 [11.5 kB] +#0 8.591 Get:138 http://deb.debian.org/debian bookworm/main amd64 libflite1 amd64 2.2-5 [12.8 MB] +#0 8.740 Get:139 http://deb.debian.org/debian bookworm/main amd64 libserd-0-0 amd64 0.30.16-1 [47.5 kB] +#0 8.777 Get:140 http://deb.debian.org/debian bookworm/main amd64 libsord-0-0 amd64 0.16.14+git221008-1 [20.8 kB] +#0 8.814 Get:141 http://deb.debian.org/debian bookworm/main amd64 libsratom-0-0 amd64 0.6.14-1 [17.7 kB] +#0 8.853 Get:142 http://deb.debian.org/debian bookworm/main amd64 liblilv-0-0 amd64 0.24.14-1 [49.4 kB] +#0 8.895 Get:143 http://deb.debian.org/debian bookworm/main amd64 libmysofa1 amd64 1.3.1~dfsg0-1 [1158 kB] +#0 8.943 Get:144 http://deb.debian.org/debian bookworm/main amd64 libepoxy0 amd64 1.5.10-1 [189 kB] +#0 8.988 Get:145 http://deb.debian.org/debian bookworm/main amd64 libvulkan1 amd64 1.3.239.0-1 [116 kB] +#0 9.032 Get:146 http://deb.debian.org/debian bookworm/main amd64 libplacebo208 amd64 4.208.0-3 [2239 kB] +#0 9.091 Get:147 http://deb.debian.org/debian bookworm/main amd64 libblas3 amd64 3.11.0-2 [149 kB] +#0 9.129 Get:148 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB] +#0 9.165 Get:149 http://deb.debian.org/debian bookworm/main amd64 libgfortran5 amd64 12.2.0-14 [793 kB] +#0 9.211 Get:150 http://deb.debian.org/debian bookworm/main amd64 liblapack3 amd64 3.11.0-2 [2323 kB] +#0 9.269 Get:151 http://deb.debian.org/debian bookworm/main amd64 libasyncns0 amd64 0.8-6+b3 [12.9 kB] +#0 9.304 Get:152 http://deb.debian.org/debian bookworm/main amd64 libflac12 amd64 1.4.2+ds-2 [198 kB] +#0 9.345 Get:153 http://deb.debian.org/debian bookworm/main amd64 libsndfile1 amd64 1.2.0-1 [196 kB] +#0 9.387 Get:154 http://deb.debian.org/debian bookworm/main amd64 libpulse0 amd64 16.1+dfsg1-2+b1 [274 kB] +#0 9.436 Get:155 http://deb.debian.org/debian bookworm/main amd64 libsphinxbase3 amd64 0.8+5prealpha+1-16 [118 kB] +#0 9.482 Get:156 http://deb.debian.org/debian bookworm/main amd64 libpocketsphinx3 amd64 0.8+5prealpha+1-15 [125 kB] +#0 9.528 Get:157 http://deb.debian.org/debian bookworm/main amd64 libpostproc56 amd64 7:5.1.6-0+deb12u1 [95.9 kB] +#0 9.575 Get:158 http://deb.debian.org/debian bookworm/main amd64 librubberband2 amd64 3.1.2+dfsg0-1 [137 kB] +#0 9.625 Get:159 http://deb.debian.org/debian bookworm/main amd64 libswscale6 amd64 7:5.1.6-0+deb12u1 [217 kB] +#0 9.676 Get:160 http://deb.debian.org/debian bookworm/main amd64 libvidstab1.1 amd64 1.1.0-2+b1 [37.8 kB] +#0 9.728 Get:161 http://deb.debian.org/debian bookworm/main amd64 libzimg2 amd64 3.0.4+ds1-1 [227 kB] +#0 9.773 Get:162 http://deb.debian.org/debian bookworm/main amd64 libavfilter8 amd64 7:5.1.6-0+deb12u1 [3706 kB] +#0 9.863 Get:163 http://deb.debian.org/debian bookworm/main amd64 libslang2 amd64 2.3.3-3 [554 kB] +#0 9.908 Get:164 http://deb.debian.org/debian bookworm/main amd64 libcaca0 amd64 0.99.beta20-3 [205 kB] +#0 9.951 Get:165 http://deb.debian.org/debian bookworm/main amd64 libcdio19 amd64 2.1.0-4 [203 kB] +#0 9.987 Get:166 http://deb.debian.org/debian bookworm/main amd64 libcdio-cdda2 amd64 10.2+2.0.1-1 [20.9 kB] +#0 10.02 Get:167 http://deb.debian.org/debian bookworm/main amd64 libcdio-paranoia2 amd64 10.2+2.0.1-1 [20.4 kB] +#0 10.06 Get:168 http://deb.debian.org/debian bookworm/main amd64 libusb-1.0-0 amd64 2:1.0.26-1 [62.6 kB] +#0 10.09 Get:169 http://deb.debian.org/debian bookworm/main amd64 libdc1394-25 amd64 2.2.6-4 [109 kB] +#49 10.14 Get:170 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] +#49 10.16 Get:171 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] +#49 10.19 Get:172 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] +#49 ... + +#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt +#0 2.003 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#0 2.142 Collecting pip +#0 2.274 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#0 2.277 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#0 2.553 Collecting setuptools +#0 2.592 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#0 2.705 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#0 2.968 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 7.2 MB/s eta 0:00:00 +#0 3.010 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#0 3.117 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 11.7 MB/s eta 0:00:00 +#0 3.252 Installing collected packages: setuptools, pip +#0 3.252 Attempting uninstall: setuptools +#0 3.255 Found existing installation: setuptools 65.5.1 +#0 3.274 Uninstalling setuptools-65.5.1: +#0 3.329 Successfully uninstalled setuptools-65.5.1 +#0 3.996 Attempting uninstall: pip +#0 3.999 Found existing installation: pip 24.0 +#0 4.051 Uninstalling pip-24.0: +#0 4.262 Successfully uninstalled pip-24.0 +#0 5.150 Successfully installed pip-25.0 setuptools-75.8.0 +#0 5.150 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#0 6.485 Collecting aiohttp (from -r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 6.642 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#0 6.739 Collecting docarray (from -r /home/comps/embeddings/src/requirements.txt (line 2)) +#0 6.772 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#0 6.821 Collecting einops (from -r /home/comps/embeddings/src/requirements.txt (line 3)) +#0 6.851 Downloading einops-0.8.0-py3-none-any.whl.metadata (12 kB) +#0 6.917 Collecting fastapi (from -r /home/comps/embeddings/src/requirements.txt (line 4)) +#0 6.952 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#0 7.002 Collecting huggingface_hub (from -r /home/comps/embeddings/src/requirements.txt (line 5)) +#0 7.038 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#0 7.080 Collecting open-clip-torch (from -r /home/comps/embeddings/src/requirements.txt (line 6)) +#0 7.119 Downloading open_clip_torch-2.30.0-py3-none-any.whl.metadata (31 kB) +#0 7.206 Collecting openai (from -r /home/comps/embeddings/src/requirements.txt (line 7)) +#0 7.248 Downloading openai-1.61.0-py3-none-any.whl.metadata (27 kB) +#0 7.285 Collecting opentelemetry-api (from -r /home/comps/embeddings/src/requirements.txt (line 8)) +#0 7.331 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) +#0 7.384 Collecting opentelemetry-exporter-otlp (from -r /home/comps/embeddings/src/requirements.txt (line 9)) +#0 7.431 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#0 7.456 Collecting opentelemetry-sdk (from -r /home/comps/embeddings/src/requirements.txt (line 10)) +#0 7.619 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) +#0 7.839 Collecting Pillow (from -r /home/comps/embeddings/src/requirements.txt (line 11)) +#0 7.873 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#0 7.963 Collecting predictionguard==2.2.1 (from -r /home/comps/embeddings/src/requirements.txt (line 12)) +#0 8.003 Downloading predictionguard-2.2.1-py2.py3-none-any.whl.metadata (766 bytes) +#0 8.025 Collecting prometheus-fastapi-instrumentator (from -r /home/comps/embeddings/src/requirements.txt (line 13)) +#0 8.085 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#0 8.134 Collecting PyYAML (from -r /home/comps/embeddings/src/requirements.txt (line 14)) +#0 8.176 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#0 8.192 Collecting shortuuid (from -r /home/comps/embeddings/src/requirements.txt (line 15)) +#0 8.234 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#0 8.288 Collecting transformers (from -r /home/comps/embeddings/src/requirements.txt (line 16)) +#0 8.330 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) +#0 8.507 Collecting uvicorn (from -r /home/comps/embeddings/src/requirements.txt (line 17)) +#0 8.561 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#0 8.583 Collecting tabulate>=0.8.10 (from predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) +#0 8.629 Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) +#0 8.688 Collecting requests>=2.27.1 (from predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) +#0 8.735 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#0 8.805 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 8.844 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#0 8.863 Collecting aiosignal>=1.1.2 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 8.897 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#0 8.924 Collecting attrs>=17.3.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 8.957 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#0 9.045 Collecting frozenlist>=1.1.1 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 9.078 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#0 9.324 Collecting multidict<7.0,>=4.5 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 9.367 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#0 9.404 Collecting propcache>=0.2.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 9.446 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#0 9.733 Collecting yarl<2.0,>=1.17.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) +#0 9.776 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#0 10.04 Collecting numpy>=1.17.3 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#0 10.08 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#50 ... + +#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim +#47 11.19 Setting up libbsd0:amd64 (0.11.7-2) ... +#47 11.19 Setting up libdrm-common (2.4.114-1) ... +#47 11.19 Setting up libelf1:amd64 (0.188-2.1) ... +#47 11.19 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#47 11.19 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... +#47 11.20 Setting up libxcb1:amd64 (1.15-1) ... +#47 11.20 Setting up vim (2:9.0.1378-2) ... +#47 11.20 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in auto mode +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/man1/editor.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/da/man1/editor.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/de/man1/editor.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/editor.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/it/man1/editor.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/editor.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/editor.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/editor.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/editor.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group editor) doesn't exist +#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/ex (ex) in auto mode +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/man1/ex.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/da/man1/ex.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/de/man1/ex.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/ex.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/it/man1/ex.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/ex.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/ex.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/ex.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/ex.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group ex) doesn't exist +#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rview (rview) in auto mode +#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rvim (rvim) in auto mode +#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vi (vi) in auto mode +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/man1/vi.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/da/man1/vi.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/de/man1/vi.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/vi.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/it/man1/vi.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/vi.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/vi.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/vi.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/vi.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group vi) doesn't exist +#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/view (view) in auto mode +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/man1/view.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/da/man1/view.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/de/man1/view.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/view.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/it/man1/view.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/view.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/view.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/view.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group view) doesn't exist +#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/view.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group view) doesn't exist +#47 11.22 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vim (vim) in auto mode +#47 11.22 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vimdiff (vimdiff) in auto mode +#47 11.22 Setting up libxcb-xfixes0:amd64 (1.15-1) ... +#47 11.22 Setting up libxcb-render0:amd64 (1.15-1) ... +#47 11.22 Setting up fontconfig-config (2.14.1-4) ... +#47 11.30 debconf: unable to initialize frontend: Dialog +#47 11.30 debconf: (TERM is not set, so the dialog frontend is not usable.) +#47 11.30 debconf: falling back to frontend: Readline +#47 11.30 debconf: unable to initialize frontend: Readline +#47 11.30 debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.36.0 /usr/local/share/perl/5.36.0 /usr/lib/x86_64-linux-gnu/perl5/5.36 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.36 /usr/share/perl/5.36 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) +#47 11.30 debconf: falling back to frontend: Teletype +#47 11.62 Setting up libxcb-glx0:amd64 (1.15-1) ... +#47 11.76 Setting up libedit2:amd64 (3.1-20221030-2) ... +#47 11.83 Setting up libxcb-shm0:amd64 (1.15-1) ... +#47 11.93 Setting up libxcb-present0:amd64 (1.15-1) ... +#47 11.99 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#47 12.02 Setting up libxcb-sync1:amd64 (1.15-1) ... +#47 12.04 Setting up libxcb-dri2-0:amd64 (1.15-1) ... +#47 ... + +#51 [opea/multimodalqna:latest git 2/2] RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git +#0 0.222 Cloning into 'GenAIComps'... +#51 DONE 2.5s + +#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim +#47 12.08 Setting up libdrm2:amd64 (2.4.114-1+b1) ... +#47 12.13 Setting up libxcb-randr0:amd64 (1.15-1) ... +#47 12.13 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... +#47 12.13 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#47 12.13 Setting up libfontconfig1:amd64 (2.14.1-4) ... +#47 12.14 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#47 12.14 Setting up libxcb-dri3-0:amd64 (1.15-1) ... +#47 12.14 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#47 12.14 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#47 12.14 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... +#47 12.15 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#47 12.16 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... +#47 12.19 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#47 12.20 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... +#47 12.20 Setting up libcairo2:amd64 (1.16.0-7) ... +#47 12.21 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#47 12.21 Setting up libxfixes3:amd64 (1:6.0.0-2) ... +#47 12.21 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#47 12.21 Setting up libglx0:amd64 (1.6.0-1) ... +#47 12.22 Setting up libgl1:amd64 (1.6.0-1) ... +#47 12.22 Setting up libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... +#47 12.22 Processing triggers for libc-bin (2.36-9+deb12u9) ... +#47 DONE 12.3s + +#52 [opea/retriever:latest 3/6] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ +#52 DONE 0.3s + +#53 [opea/retriever:latest 4/6] COPY comps /home/user/comps +#53 DONE 0.2s + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 ... + +#55 [opea/multimodalqna:latest comps-base 1/5] COPY --from=git /home/user/GenAIComps/comps /home/user/GenAIComps/comps +#55 DONE 0.2s + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 10.26 Selecting previously unselected package libglib2.0-0:amd64. +#48 10.26 Preparing to unpack .../010-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... +#48 10.26 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#48 10.37 Selecting previously unselected package libicu72:amd64. +#48 10.37 Preparing to unpack .../011-libicu72_72.1-3_amd64.deb ... +#48 10.37 Unpacking libicu72:amd64 (72.1-3) ... +#48 10.89 Selecting previously unselected package libxml2:amd64. +#48 10.89 Preparing to unpack .../012-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... +#48 10.89 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#48 10.95 Selecting previously unselected package shared-mime-info. +#48 10.95 Preparing to unpack .../013-shared-mime-info_2.2-1_amd64.deb ... +#48 10.95 Unpacking shared-mime-info (2.2-1) ... +#48 11.01 Selecting previously unselected package libjpeg62-turbo:amd64. +#48 11.01 Preparing to unpack .../014-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... +#48 11.02 Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... +#48 11.04 Selecting previously unselected package libpng16-16:amd64. +#48 11.04 Preparing to unpack .../015-libpng16-16_1.6.39-2_amd64.deb ... +#48 11.04 Unpacking libpng16-16:amd64 (1.6.39-2) ... +#48 11.07 Selecting previously unselected package libdeflate0:amd64. +#48 11.07 Preparing to unpack .../016-libdeflate0_1.14-1_amd64.deb ... +#48 11.07 Unpacking libdeflate0:amd64 (1.14-1) ... +#48 11.09 Selecting previously unselected package libjbig0:amd64. +#48 11.09 Preparing to unpack .../017-libjbig0_2.1-6.1_amd64.deb ... +#48 11.10 Unpacking libjbig0:amd64 (2.1-6.1) ... +#48 11.11 Selecting previously unselected package liblerc4:amd64. +#48 11.11 Preparing to unpack .../018-liblerc4_4.0.0+ds-2_amd64.deb ... +#48 11.11 Unpacking liblerc4:amd64 (4.0.0+ds-2) ... +#48 11.14 Selecting previously unselected package libwebp7:amd64. +#48 11.14 Preparing to unpack .../019-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... +#48 11.19 Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... +#48 11.22 Selecting previously unselected package libtiff6:amd64. +#48 11.22 Preparing to unpack .../020-libtiff6_4.5.0-6+deb12u2_amd64.deb ... +#48 11.22 Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... +#48 11.25 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +#48 11.25 Preparing to unpack .../021-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u1_amd64.deb ... +#48 11.25 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... +#48 11.28 Selecting previously unselected package gtk-update-icon-cache. +#48 11.28 Preparing to unpack .../022-gtk-update-icon-cache_3.24.38-2~deb12u3_amd64.deb ... +#48 11.28 Unpacking gtk-update-icon-cache (3.24.38-2~deb12u3) ... +#48 11.31 Selecting previously unselected package adwaita-icon-theme. +#48 11.31 Preparing to unpack .../023-adwaita-icon-theme_43-1_all.deb ... +#48 11.31 Unpacking adwaita-icon-theme (43-1) ... +#48 12.32 Selecting previously unselected package at-spi2-common. +#48 12.32 Preparing to unpack .../024-at-spi2-common_2.46.0-5_all.deb ... +#48 12.32 Unpacking at-spi2-common (2.46.0-5) ... +#48 12.35 Selecting previously unselected package binutils-common:amd64. +#48 12.35 Preparing to unpack .../025-binutils-common_2.40-2_amd64.deb ... +#48 12.35 Unpacking binutils-common:amd64 (2.40-2) ... +#48 12.55 Selecting previously unselected package libbinutils:amd64. +#48 12.55 Preparing to unpack .../026-libbinutils_2.40-2_amd64.deb ... +#48 12.55 Unpacking libbinutils:amd64 (2.40-2) ... +#48 12.63 Selecting previously unselected package libctf-nobfd0:amd64. +#48 12.63 Preparing to unpack .../027-libctf-nobfd0_2.40-2_amd64.deb ... +#48 12.63 Unpacking libctf-nobfd0:amd64 (2.40-2) ... +#48 12.66 Selecting previously unselected package libctf0:amd64. +#48 12.66 Preparing to unpack .../028-libctf0_2.40-2_amd64.deb ... +#48 12.66 Unpacking libctf0:amd64 (2.40-2) ... +#48 12.68 Selecting previously unselected package libgprofng0:amd64. +#48 12.68 Preparing to unpack .../029-libgprofng0_2.40-2_amd64.deb ... +#48 12.68 Unpacking libgprofng0:amd64 (2.40-2) ... +#48 12.83 Selecting previously unselected package libjansson4:amd64. +#48 12.83 Preparing to unpack .../030-libjansson4_2.14-2_amd64.deb ... +#48 12.84 Unpacking libjansson4:amd64 (2.14-2) ... +#48 12.85 Selecting previously unselected package binutils-x86-64-linux-gnu. +#48 12.85 Preparing to unpack .../031-binutils-x86-64-linux-gnu_2.40-2_amd64.deb ... +#48 12.85 Unpacking binutils-x86-64-linux-gnu (2.40-2) ... +#48 13.06 Selecting previously unselected package binutils. +#48 13.07 Preparing to unpack .../032-binutils_2.40-2_amd64.deb ... +#48 13.07 Unpacking binutils (2.40-2) ... +#48 13.09 Selecting previously unselected package libc-dev-bin. +#48 13.09 Preparing to unpack .../033-libc-dev-bin_2.36-9+deb12u9_amd64.deb ... +#48 13.09 Unpacking libc-dev-bin (2.36-9+deb12u9) ... +#48 13.10 Selecting previously unselected package linux-libc-dev:amd64. +#48 13.11 Preparing to unpack .../034-linux-libc-dev_6.1.124-1_amd64.deb ... +#48 13.15 Unpacking linux-libc-dev:amd64 (6.1.124-1) ... +#48 ... + +#56 [opea/multimodalqna:latest comps-base 2/5] COPY --from=git /home/user/GenAIComps/*.* /home/user/GenAIComps/LICENSE /home/user/GenAIComps/ +#56 DONE 0.1s + +#57 [opea/multimodalqna:latest comps-base 3/5] WORKDIR /home/user/GenAIComps +#57 DONE 0.0s + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 13.29 Selecting previously unselected package libcrypt-dev:amd64. +#48 13.29 Preparing to unpack .../035-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... +#48 13.30 Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... +#48 13.32 Selecting previously unselected package libtirpc-dev:amd64. +#48 13.32 Preparing to unpack .../036-libtirpc-dev_1.3.3+ds-1_amd64.deb ... +#48 13.32 Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... +#48 13.35 Selecting previously unselected package libnsl-dev:amd64. +#48 13.35 Preparing to unpack .../037-libnsl-dev_1.3.0-2_amd64.deb ... +#48 13.35 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +#48 13.36 Selecting previously unselected package rpcsvc-proto. +#48 13.37 Preparing to unpack .../038-rpcsvc-proto_1.4.3-1_amd64.deb ... +#48 13.37 Unpacking rpcsvc-proto (1.4.3-1) ... +#48 13.39 Selecting previously unselected package libc6-dev:amd64. +#48 13.39 Preparing to unpack .../039-libc6-dev_2.36-9+deb12u9_amd64.deb ... +#48 13.39 Unpacking libc6-dev:amd64 (2.36-9+deb12u9) ... +#48 13.55 Selecting previously unselected package libisl23:amd64. +#48 13.55 Preparing to unpack .../040-libisl23_0.25-1.1_amd64.deb ... +#48 13.55 Unpacking libisl23:amd64 (0.25-1.1) ... +#48 13.61 Selecting previously unselected package libmpfr6:amd64. +#48 13.61 Preparing to unpack .../041-libmpfr6_4.2.0-1_amd64.deb ... +#48 13.62 Unpacking libmpfr6:amd64 (4.2.0-1) ... +#48 13.66 Selecting previously unselected package libmpc3:amd64. +#48 13.66 Preparing to unpack .../042-libmpc3_1.3.1-1_amd64.deb ... +#48 13.66 Unpacking libmpc3:amd64 (1.3.1-1) ... +#48 13.67 Selecting previously unselected package cpp-12. +#48 13.68 Preparing to unpack .../043-cpp-12_12.2.0-14_amd64.deb ... +#48 13.68 Unpacking cpp-12 (12.2.0-14) ... +#48 14.26 Selecting previously unselected package cpp. +#48 14.26 Preparing to unpack .../044-cpp_4%3a12.2.0-3_amd64.deb ... +#48 14.26 Unpacking cpp (4:12.2.0-3) ... +#48 14.27 Selecting previously unselected package libcc1-0:amd64. +#48 14.27 Preparing to unpack .../045-libcc1-0_12.2.0-14_amd64.deb ... +#48 14.27 Unpacking libcc1-0:amd64 (12.2.0-14) ... +#48 14.29 Selecting previously unselected package libgomp1:amd64. +#48 14.29 Preparing to unpack .../046-libgomp1_12.2.0-14_amd64.deb ... +#48 14.29 Unpacking libgomp1:amd64 (12.2.0-14) ... +#48 14.31 Selecting previously unselected package libitm1:amd64. +#48 14.31 Preparing to unpack .../047-libitm1_12.2.0-14_amd64.deb ... +#48 14.32 Unpacking libitm1:amd64 (12.2.0-14) ... +#48 14.33 Selecting previously unselected package libatomic1:amd64. +#48 14.33 Preparing to unpack .../048-libatomic1_12.2.0-14_amd64.deb ... +#48 14.33 Unpacking libatomic1:amd64 (12.2.0-14) ... +#48 14.35 Selecting previously unselected package libasan8:amd64. +#48 14.35 Preparing to unpack .../049-libasan8_12.2.0-14_amd64.deb ... +#48 14.35 Unpacking libasan8:amd64 (12.2.0-14) ... +#48 14.53 Selecting previously unselected package liblsan0:amd64. +#48 14.53 Preparing to unpack .../050-liblsan0_12.2.0-14_amd64.deb ... +#48 14.53 Unpacking liblsan0:amd64 (12.2.0-14) ... +#48 14.62 Selecting previously unselected package libtsan2:amd64. +#48 14.62 Preparing to unpack .../051-libtsan2_12.2.0-14_amd64.deb ... +#48 14.62 Unpacking libtsan2:amd64 (12.2.0-14) ... +#48 14.80 Selecting previously unselected package libubsan1:amd64. +#48 14.80 Preparing to unpack .../052-libubsan1_12.2.0-14_amd64.deb ... +#48 14.80 Unpacking libubsan1:amd64 (12.2.0-14) ... +#48 14.88 Selecting previously unselected package libquadmath0:amd64. +#48 14.88 Preparing to unpack .../053-libquadmath0_12.2.0-14_amd64.deb ... +#48 14.88 Unpacking libquadmath0:amd64 (12.2.0-14) ... +#48 14.91 Selecting previously unselected package libgcc-12-dev:amd64. +#48 14.91 Preparing to unpack .../054-libgcc-12-dev_12.2.0-14_amd64.deb ... +#48 14.91 Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... +#48 15.08 Selecting previously unselected package gcc-12. +#48 15.08 Preparing to unpack .../055-gcc-12_12.2.0-14_amd64.deb ... +#48 15.08 Unpacking gcc-12 (12.2.0-14) ... +#48 15.72 Selecting previously unselected package gcc. +#48 15.73 Preparing to unpack .../056-gcc_4%3a12.2.0-3_amd64.deb ... +#48 15.73 Unpacking gcc (4:12.2.0-3) ... +#48 15.74 Selecting previously unselected package libstdc++-12-dev:amd64. +#48 15.74 Preparing to unpack .../057-libstdc++-12-dev_12.2.0-14_amd64.deb ... +#48 15.74 Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... +#48 15.91 Selecting previously unselected package g++-12. +#48 15.92 Preparing to unpack .../058-g++-12_12.2.0-14_amd64.deb ... +#48 15.92 Unpacking g++-12 (12.2.0-14) ... +#48 ... + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 4.910 Attempting uninstall: pip +#37 4.913 Found existing installation: pip 24.0 +#37 4.964 Uninstalling pip-24.0: +#37 5.143 Successfully uninstalled pip-24.0 +#37 6.093 Successfully installed pip-25.0 setuptools-75.8.0 +#37 6.094 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#37 6.976 Collecting datasets (from -r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 7.029 Downloading datasets-3.2.0-py3-none-any.whl.metadata (20 kB) +#37 7.193 Collecting fastapi (from -r /home/user/comps/lvms/src/requirements.txt (line 3)) +#37 7.201 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#37 7.292 Collecting huggingface_hub (from -r /home/user/comps/lvms/src/requirements.txt (line 4)) +#37 7.300 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#37 7.452 Collecting langchain-core (from -r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 7.460 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) +#37 7.502 Collecting opentelemetry-api (from -r /home/user/comps/lvms/src/requirements.txt (line 6)) +#37 7.510 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) +#37 7.552 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/lvms/src/requirements.txt (line 7)) +#37 7.560 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#37 7.602 Collecting opentelemetry-sdk (from -r /home/user/comps/lvms/src/requirements.txt (line 8)) +#37 7.611 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) +#37 7.651 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/lvms/src/requirements.txt (line 10)) +#37 7.670 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#37 7.849 Collecting pydantic==2.7.2 (from -r /home/user/comps/lvms/src/requirements.txt (line 11)) +#37 7.859 Downloading pydantic-2.7.2-py3-none-any.whl.metadata (108 kB) +#37 7.971 Collecting pydub (from -r /home/user/comps/lvms/src/requirements.txt (line 12)) +#37 7.979 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) +#37 8.009 Collecting shortuuid (from -r /home/user/comps/lvms/src/requirements.txt (line 13)) +#37 8.017 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#37 8.069 Collecting uvicorn (from -r /home/user/comps/lvms/src/requirements.txt (line 14)) +#37 8.076 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#37 8.263 Collecting docarray[full] (from -r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 8.275 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#37 8.404 Collecting optimum[habana] (from -r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 8.414 Downloading optimum-1.24.0-py3-none-any.whl.metadata (21 kB) +#37 8.485 Collecting annotated-types>=0.4.0 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/requirements.txt (line 11)) +#37 8.493 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#37 9.377 Collecting pydantic-core==2.18.3 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/requirements.txt (line 11)) +#37 9.388 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) +#37 9.438 Collecting typing-extensions>=4.6.1 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/requirements.txt (line 11)) +#37 9.446 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#37 9.580 Collecting filelock (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 9.588 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#37 9.892 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 9.901 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#37 10.12 Collecting pyarrow>=15.0.0 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.14 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) +#37 10.19 Collecting dill<0.3.9,>=0.3.0 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.21 Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB) +#37 10.39 Collecting pandas (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.40 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) +#37 10.52 Collecting requests>=2.32.2 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.53 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#37 10.61 Collecting tqdm>=4.66.3 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.63 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#37 10.79 Collecting xxhash (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.80 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) +#37 10.85 Collecting multiprocess<0.70.17 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.86 Downloading multiprocess-0.70.16-py311-none-any.whl.metadata (7.2 kB) +#37 10.93 Collecting fsspec<=2024.9.0,>=2023.1.0 (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 10.94 Downloading fsspec-2024.9.0-py3-none-any.whl.metadata (11 kB) +#37 11.57 Collecting aiohttp (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 11.58 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#37 11.66 Collecting packaging (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 11.67 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#37 11.75 Collecting pyyaml>=5.1 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 11.75 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#37 11.85 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 11.86 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) +#37 11.93 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 11.94 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) +#37 12.07 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 12.08 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#37 12.51 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 12.51 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#37 12.77 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 12.78 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#37 13.02 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 13.03 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#37 13.15 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 13.16 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#37 13.37 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 13.38 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) +#37 13.45 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 13.46 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) +#37 13.59 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 13.60 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#37 13.64 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 13.65 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) +#37 13.72 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/lvms/src/requirements.txt (line 3)) +#37 13.72 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#37 13.85 Collecting jsonpatch<2.0,>=1.33 (from langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 13.86 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) +#37 14.05 Collecting langsmith<0.4,>=0.1.125 (from langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 14.05 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) +#37 14.15 Collecting tenacity!=8.4.0,<10.0.0,>=8.1.0 (from langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 14.16 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) +#37 14.21 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) +#37 14.22 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#37 14.30 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) +#37 14.31 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) +#37 14.37 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) +#37 14.38 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#37 14.43 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) +#37 14.44 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#37 14.50 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) +#37 14.51 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#37 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 10.12 Get:194 http://deb.debian.org/debian bookworm/main amd64 liblapack3 amd64 3.11.0-2 [2323 kB] +#42 10.22 Get:195 http://deb.debian.org/debian bookworm/main amd64 coinor-libcoinutils3v5 amd64 2.11.4+repack1-2 [440 kB] +#42 10.26 Get:196 http://deb.debian.org/debian bookworm/main amd64 coinor-libosi1v5 amd64 0.108.6+repack1-2 [276 kB] +#42 10.31 Get:197 http://deb.debian.org/debian bookworm/main amd64 coinor-libclp1 amd64 1.17.6-3 [843 kB] +#42 10.37 Get:198 http://deb.debian.org/debian bookworm/main amd64 coinor-libcgl1 amd64 0.60.3+repack1-4 [409 kB] +#42 10.42 Get:199 http://deb.debian.org/debian bookworm/main amd64 coinor-libcbc3 amd64 2.10.8+ds1-1 [715 kB] +#42 10.47 Get:200 http://deb.debian.org/debian bookworm/main amd64 coinor-libcoinmp1v5 amd64 1.8.3-3 [31.6 kB] +#42 10.50 Get:201 http://deb.debian.org/debian bookworm/main amd64 java-common all 0.74 [6388 B] +#42 10.53 Get:202 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB] +#42 10.56 Get:203 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB] +#42 10.60 Get:204 http://deb.debian.org/debian bookworm/main amd64 libpcsclite1 amd64 1.9.9-2 [49.7 kB] +#42 10.64 Get:205 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre-headless amd64 17.0.14+7-1~deb12u1 [43.8 MB] +#42 11.62 Get:206 http://deb.debian.org/debian bookworm/main amd64 default-jre-headless amd64 2:1.17-74 [2936 B] +#42 11.62 Get:207 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-common all 2.24.33-2+deb12u1 [2660 kB] +#42 11.67 Get:208 http://deb.debian.org/debian bookworm/main amd64 libatk1.0-0 amd64 2.46.0-5 [49.6 kB] +#42 11.68 Get:209 http://deb.debian.org/debian bookworm/main amd64 libfribidi0 amd64 1.0.8-2.1 [65.0 kB] +#42 11.69 Get:210 http://deb.debian.org/debian bookworm/main amd64 libthai-data all 0.1.29-1 [176 kB] +#42 11.72 Get:211 http://deb.debian.org/debian bookworm/main amd64 libdatrie1 amd64 0.2.13-2+b1 [43.3 kB] +#42 11.75 Get:212 http://deb.debian.org/debian bookworm/main amd64 libthai0 amd64 0.1.29-1 [57.5 kB] +#42 11.79 Get:213 http://deb.debian.org/debian bookworm/main amd64 libpango-1.0-0 amd64 1.50.12+ds-1 [212 kB] +#42 11.82 Get:214 http://deb.debian.org/debian bookworm/main amd64 libpangoft2-1.0-0 amd64 1.50.12+ds-1 [47.4 kB] +#42 11.85 Get:215 http://deb.debian.org/debian bookworm/main amd64 libpangocairo-1.0-0 amd64 1.50.12+ds-1 [34.2 kB] +#42 11.89 Get:216 http://deb.debian.org/debian bookworm/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +#42 11.92 Get:217 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] +#42 11.96 Get:218 http://deb.debian.org/debian bookworm/main amd64 libxcursor1 amd64 1:1.2.1-1 [40.9 kB] +#42 11.99 Get:219 http://deb.debian.org/debian bookworm/main amd64 libxdamage1 amd64 1:1.1.6-1 [15.1 kB] +#42 12.02 Get:220 http://deb.debian.org/debian bookworm/main amd64 libxi6 amd64 2:1.8-1+b1 [84.2 kB] +#42 12.06 Get:221 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-0 amd64 2.24.33-2+deb12u1 [1811 kB] +#42 12.14 Get:222 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] +#42 12.17 Get:223 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] +#42 12.21 Get:224 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] +#42 12.25 Get:225 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] +#42 12.28 Get:226 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] +#42 12.32 Get:227 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] +#42 12.36 Get:228 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] +#42 12.40 Get:229 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] +#42 12.44 Get:230 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] +#42 12.48 Get:231 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] +#42 12.52 Get:232 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] +#42 12.57 Get:233 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +#42 12.60 Get:234 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +#42 12.70 Get:235 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] +#42 12.72 Get:236 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] +#42 12.74 Get:237 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] +#42 12.76 Get:238 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] +#42 12.79 Get:239 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] +#42 12.81 Get:240 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] +#42 12.83 Get:241 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] +#42 13.00 Get:242 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] +#42 13.49 Get:243 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] +#42 13.52 Get:244 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] +#42 13.54 Get:245 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] +#42 13.74 Get:246 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] +#42 13.77 Get:247 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] +#42 13.79 Get:248 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] +#42 13.82 Get:249 http://deb.debian.org/debian bookworm/main amd64 libgif7 amd64 5.2.1-2.5 [46.9 kB] +#42 13.85 Get:250 http://deb.debian.org/debian bookworm/main amd64 libxtst6 amd64 2:1.2.3-1.1 [28.0 kB] +#42 13.88 Get:251 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre amd64 17.0.14+7-1~deb12u1 [210 kB] +#42 13.90 Get:252 http://deb.debian.org/debian bookworm/main amd64 default-jre amd64 2:1.17-74 [1056 B] +#42 13.94 Get:253 http://deb.debian.org/debian bookworm/main amd64 libabw-0.1-1 amd64 0.1.3-1 [128 kB] +#42 13.97 Get:254 http://deb.debian.org/debian bookworm/main amd64 libarchive13 amd64 3.6.2-1+deb12u2 [343 kB] +#42 14.02 Get:255 http://deb.debian.org/debian bookworm/main amd64 libbox2d2 amd64 2.4.1-3 [97.1 kB] +#42 14.06 Get:256 http://deb.debian.org/debian bookworm/main amd64 libcdr-0.1-1 amd64 0.1.6-2+b2 [392 kB] +#42 14.13 Get:257 http://deb.debian.org/debian bookworm/main amd64 libsuitesparseconfig5 amd64 1:5.12.0+dfsg-2 [23.9 kB] +#42 14.16 Get:258 http://deb.debian.org/debian bookworm/main amd64 libcolamd2 amd64 1:5.12.0+dfsg-2 [32.9 kB] +#42 14.19 Get:259 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] +#42 14.24 Get:260 http://deb.debian.org/debian bookworm/main amd64 libe-book-0.1-1 amd64 0.1.3-2+b2 [198 kB] +#42 14.29 Get:261 http://deb.debian.org/debian bookworm/main amd64 libepubgen-0.1-1 amd64 0.1.1-1 [153 kB] +#42 14.32 Get:262 http://deb.debian.org/debian bookworm/main amd64 libetonyek-0.1-1 amd64 0.1.10-3+b1 [803 kB] +#42 14.38 Get:263 http://deb.debian.org/debian bookworm/main amd64 libfreehand-0.1-1 amd64 0.1.2-3 [267 kB] +#42 14.41 Get:264 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-glx amd64 22.3.6-1+deb12u1 [14.5 kB] +#42 14.45 Get:265 http://deb.debian.org/debian bookworm/main amd64 libjemalloc2 amd64 5.3.0-1 [275 kB] +#42 14.49 Get:266 http://deb.debian.org/debian bookworm/main amd64 libjemalloc-dev amd64 5.3.0-1 [494 kB] +#42 14.54 Get:267 http://deb.debian.org/debian bookworm/main amd64 libwebpmux3 amd64 1.2.4-0.2+deb12u1 [109 kB] +#42 14.59 Get:268 http://deb.debian.org/debian bookworm/main amd64 liblept5 amd64 1.82.0-3+b3 [1050 kB] +#42 14.66 Get:269 http://deb.debian.org/debian bookworm/main amd64 libmspub-0.1-1 amd64 0.1.4-3+b3 [174 kB] +#42 14.70 Get:270 http://deb.debian.org/debian bookworm/main amd64 libmwaw-0.3-3 amd64 0.3.21-1 [2606 kB] +#42 14.82 Get:271 http://deb.debian.org/debian bookworm/main amd64 libodfgen-0.1-1 amd64 0.1.8-2 [293 kB] +#42 14.87 Get:272 http://deb.debian.org/debian bookworm/main amd64 libpagemaker-0.0-0 amd64 0.0.4-1 [79.6 kB] +#42 14.91 Get:273 http://deb.debian.org/debian bookworm/main amd64 libpq5 amd64 15.10-0+deb12u1 [191 kB] +#42 14.96 Get:274 http://deb.debian.org/debian bookworm/main amd64 libssl-dev amd64 3.0.15-1~deb12u1 [2439 kB] +#42 15.08 Get:275 http://deb.debian.org/debian bookworm/main amd64 libpq-dev amd64 15.10-0+deb12u1 [145 kB] +#42 15.13 Get:276 http://deb.debian.org/debian bookworm/main amd64 libpython3.11 amd64 3.11.2-6+deb12u5 [1988 kB] +#42 15.23 Get:277 http://deb.debian.org/debian bookworm/main amd64 libqxp-0.0-0 amd64 0.0.2-1+b3 [125 kB] +#42 15.28 Get:278 http://deb.debian.org/debian bookworm/main amd64 lp-solve amd64 5.5.2.5-2 [293 kB] +#42 15.34 Get:279 http://deb.debian.org/debian bookworm/main amd64 libstaroffice-0.0-0 amd64 0.0.7-1 [728 kB] +#42 15.43 Get:280 http://deb.debian.org/debian bookworm/main amd64 libwps-0.4-4 amd64 0.4.13-1 [886 kB] +#42 15.48 Get:281 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-calc amd64 4:7.4.7-1+deb12u6 [7406 kB] +#42 15.73 Get:282 http://deb.debian.org/debian bookworm/main amd64 libvisio-0.1-1 amd64 0.1.7-1+b3 [304 kB] +#42 15.78 Get:283 http://deb.debian.org/debian bookworm/main amd64 libwpd-0.10-10 amd64 0.10.3-2+b1 [261 kB] +#42 15.83 Get:284 http://deb.debian.org/debian bookworm/main amd64 libwpg-0.3-3 amd64 0.3.3-1 [76.3 kB] +#42 15.87 Get:285 http://deb.debian.org/debian bookworm/main amd64 libzmf-0.0-0 amd64 0.0.2-1+b5 [84.2 kB] +#42 15.90 Get:286 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-draw amd64 4:7.4.7-1+deb12u6 [2701 kB] +#42 16.03 Get:287 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-impress amd64 4:7.4.7-1+deb12u6 [1117 kB] +#42 16.10 Get:288 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-math amd64 4:7.4.7-1+deb12u6 [539 kB] +#42 16.16 Get:289 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-report-builder-bin amd64 4:7.4.7-1+deb12u6 [826 kB] +#42 16.23 Get:290 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-writer amd64 4:7.4.7-1+deb12u6 [9261 kB] +#42 ... + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 16.50 Selecting previously unselected package g++. +#48 16.51 Preparing to unpack .../059-g++_4%3a12.2.0-3_amd64.deb ... +#48 16.51 Unpacking g++ (4:12.2.0-3) ... +#48 16.52 Selecting previously unselected package make. +#48 16.52 Preparing to unpack .../060-make_4.3-4.1_amd64.deb ... +#48 16.52 Unpacking make (4.3-4.1) ... +#48 16.56 Selecting previously unselected package libdpkg-perl. +#48 16.56 Preparing to unpack .../061-libdpkg-perl_1.21.22_all.deb ... +#48 16.57 Unpacking libdpkg-perl (1.21.22) ... +#48 16.62 Selecting previously unselected package patch. +#48 16.62 Preparing to unpack .../062-patch_2.7.6-7_amd64.deb ... +#48 16.62 Unpacking patch (2.7.6-7) ... +#48 16.64 Selecting previously unselected package dpkg-dev. +#48 16.64 Preparing to unpack .../063-dpkg-dev_1.21.22_all.deb ... +#48 16.64 Unpacking dpkg-dev (1.21.22) ... +#48 16.74 Selecting previously unselected package build-essential. +#48 16.74 Preparing to unpack .../064-build-essential_12.9_amd64.deb ... +#48 16.74 Unpacking build-essential (12.9) ... +#48 16.75 Selecting previously unselected package ca-certificates-java. +#48 16.76 Preparing to unpack .../065-ca-certificates-java_20230710~deb12u1_all.deb ... +#48 16.76 Unpacking ca-certificates-java (20230710~deb12u1) ... +#48 16.77 Selecting previously unselected package java-common. +#48 16.78 Preparing to unpack .../066-java-common_0.74_all.deb ... +#48 16.78 Unpacking java-common (0.74) ... +#48 16.79 Selecting previously unselected package libavahi-common-data:amd64. +#48 16.79 Preparing to unpack .../067-libavahi-common-data_0.8-10+deb12u1_amd64.deb ... +#48 16.79 Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ... +#48 16.86 Selecting previously unselected package libavahi-common3:amd64. +#48 16.86 Preparing to unpack .../068-libavahi-common3_0.8-10+deb12u1_amd64.deb ... +#48 16.86 Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ... +#48 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#0 1.693 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#0 1.832 Collecting pip +#0 1.891 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#0 1.894 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#0 2.168 Collecting setuptools +#0 2.183 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#0 2.242 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#0 2.343 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 18.7 MB/s eta 0:00:00 +#0 2.352 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#0 2.386 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 38.6 MB/s eta 0:00:00 +#0 2.514 Installing collected packages: setuptools, pip +#0 2.514 Attempting uninstall: setuptools +#0 2.517 Found existing installation: setuptools 65.5.1 +#0 2.536 Uninstalling setuptools-65.5.1: +#0 2.610 Successfully uninstalled setuptools-65.5.1 +#0 3.393 Attempting uninstall: pip +#0 3.396 Found existing installation: pip 24.0 +#0 3.448 Uninstalling pip-24.0: +#0 3.606 Successfully uninstalled pip-24.0 +#0 4.456 Successfully installed pip-25.0 setuptools-75.8.0 +#0 4.456 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#0 5.457 Collecting datasets (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 5.518 Downloading datasets-3.2.0-py3-none-any.whl.metadata (20 kB) +#0 5.697 Collecting fastapi (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) +#0 5.706 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#0 5.856 Collecting huggingface_hub (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 4)) +#0 5.867 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#0 6.024 Collecting langchain-core (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#0 6.037 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) +#0 6.091 Collecting opentelemetry-api (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) +#0 6.100 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) +#0 6.145 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) +#0 6.155 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#0 6.201 Collecting opentelemetry-sdk (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 8)) +#0 6.212 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) +#0 6.253 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 10)) +#0 6.262 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#0 6.458 Collecting pydantic==2.7.2 (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) +#0 6.470 Downloading pydantic-2.7.2-py3-none-any.whl.metadata (108 kB) +#0 6.599 Collecting pydub (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 12)) +#0 6.608 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) +#0 6.658 Collecting shortuuid (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 13)) +#0 6.670 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#0 6.742 Collecting uvicorn (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 14)) +#0 6.751 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#0 6.940 Collecting docarray[full] (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#0 6.953 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#0 7.021 Collecting optimum[habana] (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#0 7.033 Downloading optimum-1.24.0-py3-none-any.whl.metadata (21 kB) +#0 7.101 Collecting annotated-types>=0.4.0 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) +#0 7.110 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#0 8.156 Collecting pydantic-core==2.18.3 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) +#0 8.171 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) +#0 8.225 Collecting typing-extensions>=4.6.1 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) +#0 8.235 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#0 8.306 Collecting filelock (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 8.315 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#0 8.657 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 8.667 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#0 8.847 Collecting pyarrow>=15.0.0 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 8.859 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) +#0 8.906 Collecting dill<0.3.9,>=0.3.0 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 8.916 Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB) +#0 9.125 Collecting pandas (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 9.138 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) +#0 9.266 Collecting requests>=2.32.2 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 9.275 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#0 9.366 Collecting tqdm>=4.66.3 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 9.376 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#0 9.617 Collecting xxhash (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 9.729 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) +#0 9.792 Collecting multiprocess<0.70.17 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 9.802 Downloading multiprocess-0.70.16-py311-none-any.whl.metadata (7.2 kB) +#0 9.866 Collecting fsspec<=2024.9.0,>=2023.1.0 (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#0 9.880 Downloading fsspec-2024.9.0-py3-none-any.whl.metadata (11 kB) +#58 ... + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 16.88 Selecting previously unselected package libdbus-1-3:amd64. +#48 16.88 Preparing to unpack .../069-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ... +#48 16.88 Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... +#48 16.91 Selecting previously unselected package libavahi-client3:amd64. +#48 16.91 Preparing to unpack .../070-libavahi-client3_0.8-10+deb12u1_amd64.deb ... +#48 16.91 Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ... +#48 16.92 Selecting previously unselected package libcups2:amd64. +#48 16.93 Preparing to unpack .../071-libcups2_2.4.2-3+deb12u8_amd64.deb ... +#48 16.93 Unpacking libcups2:amd64 (2.4.2-3+deb12u8) ... +#48 16.96 Selecting previously unselected package libexpat1:amd64. +#48 16.96 Preparing to unpack .../072-libexpat1_2.5.0-1+deb12u1_amd64.deb ... +#48 16.96 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... +#48 16.98 Selecting previously unselected package libbrotli1:amd64. +#48 16.98 Preparing to unpack .../073-libbrotli1_1.0.9-2+b6_amd64.deb ... +#48 16.98 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... +#48 17.02 Selecting previously unselected package libfreetype6:amd64. +#48 17.02 Preparing to unpack .../074-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... +#48 17.02 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#48 17.06 Selecting previously unselected package fonts-dejavu-core. +#48 17.06 Preparing to unpack .../075-fonts-dejavu-core_2.37-6_all.deb ... +#48 17.06 Unpacking fonts-dejavu-core (2.37-6) ... +#48 17.15 Selecting previously unselected package fontconfig-config. +#48 17.15 Preparing to unpack .../076-fontconfig-config_2.14.1-4_amd64.deb ... +#48 17.26 Unpacking fontconfig-config (2.14.1-4) ... +#48 17.28 Selecting previously unselected package libfontconfig1:amd64. +#48 17.29 Preparing to unpack .../077-libfontconfig1_2.14.1-4_amd64.deb ... +#48 17.29 Unpacking libfontconfig1:amd64 (2.14.1-4) ... +#48 17.31 Selecting previously unselected package liblcms2-2:amd64. +#48 17.32 Preparing to unpack .../078-liblcms2-2_2.14-2_amd64.deb ... +#48 17.32 Unpacking liblcms2-2:amd64 (2.14-2) ... +#48 17.34 Selecting previously unselected package libnspr4:amd64. +#48 17.34 Preparing to unpack .../079-libnspr4_2%3a4.35-1_amd64.deb ... +#48 17.34 Unpacking libnspr4:amd64 (2:4.35-1) ... +#48 17.37 Selecting previously unselected package libnss3:amd64. +#48 17.37 Preparing to unpack .../080-libnss3_2%3a3.87.1-1+deb12u1_amd64.deb ... +#48 17.37 Unpacking libnss3:amd64 (2:3.87.1-1+deb12u1) ... +#48 17.47 Selecting previously unselected package libasound2-data. +#48 17.47 Preparing to unpack .../081-libasound2-data_1.2.8-1_all.deb ... +#48 17.47 Unpacking libasound2-data (1.2.8-1) ... +#48 17.50 Selecting previously unselected package libasound2:amd64. +#48 17.50 Preparing to unpack .../082-libasound2_1.2.8-1+b1_amd64.deb ... +#48 17.50 Unpacking libasound2:amd64 (1.2.8-1+b1) ... +#48 17.54 Selecting previously unselected package libgraphite2-3:amd64. +#48 17.54 Preparing to unpack .../083-libgraphite2-3_1.3.14-1_amd64.deb ... +#48 17.55 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +#48 17.57 Selecting previously unselected package libharfbuzz0b:amd64. +#48 17.57 Preparing to unpack .../084-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ... +#48 17.57 Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... +#48 17.63 Selecting previously unselected package libpcsclite1:amd64. +#48 17.63 Preparing to unpack .../085-libpcsclite1_1.9.9-2_amd64.deb ... +#48 17.63 Unpacking libpcsclite1:amd64 (1.9.9-2) ... +#48 17.65 Selecting previously unselected package openjdk-17-jre-headless:amd64. +#48 17.65 Preparing to unpack .../086-openjdk-17-jre-headless_17.0.14+7-1~deb12u1_amd64.deb ... +#48 17.65 Unpacking openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... +#48 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 1.764 Requirement already satisfied: pip in /usr/local/lib/python3.10/site-packages (23.0.1) +#44 2.021 Collecting pip +#44 2.087 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#44 2.213 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 15.3 MB/s eta 0:00:00 +#44 2.284 Installing collected packages: pip +#44 2.284 Attempting uninstall: pip +#44 2.285 Found existing installation: pip 23.0.1 +#44 2.482 Uninstalling pip-23.0.1: +#44 2.691 Successfully uninstalled pip-23.0.1 +#44 3.742 Successfully installed pip-25.0 +#44 3.742 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#44 4.686 Collecting fastapi (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) +#44 4.747 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#44 4.847 Collecting huggingface_hub (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 4.857 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#44 5.150 Collecting langchain (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 5.162 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) +#44 5.283 Collecting opentelemetry-api (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) +#44 5.297 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) +#44 5.349 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) +#44 5.360 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#44 5.473 Collecting opentelemetry-sdk (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 7)) +#44 5.483 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) +#44 5.529 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 8)) +#44 5.539 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#44 5.766 Collecting pydantic==2.8.2 (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) +#44 5.776 Downloading pydantic-2.8.2-py3-none-any.whl.metadata (125 kB) +#44 5.907 Collecting shortuuid (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 10)) +#44 5.928 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#44 6.044 Collecting torch (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 6.057 Downloading torch-2.6.0-cp310-cp310-manylinux1_x86_64.whl.metadata (28 kB) +#44 6.175 Collecting torchvision (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 12)) +#44 6.185 Downloading torchvision-0.21.0-cp310-cp310-manylinux1_x86_64.whl.metadata (6.1 kB) +#44 6.275 Collecting transformers (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) +#44 6.286 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) +#44 6.694 Collecting uvicorn (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 14)) +#44 6.703 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#44 6.892 Collecting docarray[full] (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 6.920 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#44 6.975 Collecting annotated-types>=0.4.0 (from pydantic==2.8.2->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) +#44 6.986 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#44 7.963 Collecting pydantic-core==2.20.1 (from pydantic==2.8.2->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) +#44 7.974 Downloading pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#44 8.025 Collecting typing-extensions>=4.6.1 (from pydantic==2.8.2->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) +#44 8.034 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#44 8.348 Collecting numpy>=1.17.3 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 8.359 Downloading numpy-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#44 8.819 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 8.829 Downloading orjson-3.10.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#44 8.935 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 8.946 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#44 9.021 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 9.031 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#44 9.080 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 9.089 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) +#44 9.199 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 9.211 Downloading av-14.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) +#44 9.282 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 9.292 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) +#44 9.437 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 9.449 Downloading lz4-4.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#44 9.715 Collecting pandas>=1.1.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 9.725 Downloading pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) +#44 10.14 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 10.15 Downloading pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#44 10.49 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 10.50 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#44 10.56 Collecting pydub<0.26.0,>=0.25.1 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 10.57 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) +#44 10.77 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 10.78 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) +#44 10.87 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 10.88 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) +#44 11.03 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) +#44 11.04 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#44 11.16 Collecting filelock (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 11.17 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#44 11.23 Collecting fsspec>=2023.5.0 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 11.24 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) +#44 11.35 Collecting packaging>=20.9 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 11.36 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#44 11.48 Collecting pyyaml>=5.1 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 11.49 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#44 11.57 Collecting requests (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 11.58 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#44 11.67 Collecting tqdm>=4.42.1 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 11.68 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#44 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 10.82 Collecting aiohttp (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 10.83 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#58 10.91 Collecting packaging (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 10.92 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#58 11.04 Collecting pyyaml>=5.1 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 11.05 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#58 11.20 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 11.22 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) +#58 11.29 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 11.30 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) +#58 11.46 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 11.47 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#58 12.13 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 12.14 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#58 12.55 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 12.56 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#58 12.98 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 12.99 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#58 13.12 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 13.13 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#58 13.39 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 13.40 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) +#58 13.48 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 13.49 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) +#58 13.57 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 13.58 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#58 13.63 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 13.64 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) +#58 13.73 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) +#58 13.74 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#58 13.88 Collecting jsonpatch<2.0,>=1.33 (from langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 13.89 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) +#58 14.03 Collecting langsmith<0.4,>=0.1.125 (from langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 14.04 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) +#58 14.14 Collecting tenacity!=8.4.0,<10.0.0,>=8.1.0 (from langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 14.15 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) +#58 14.21 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) +#58 14.22 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#58 14.31 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) +#58 14.32 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) +#58 14.39 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) +#58 14.40 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#58 14.45 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) +#58 14.46 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#58 14.53 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) +#58 14.54 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#58 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 10.23 Get:173 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] +#49 10.26 Get:174 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] +#49 10.30 Get:175 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] +#49 10.33 Get:176 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] +#49 10.37 Get:177 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] +#49 10.42 Get:178 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +#49 10.47 Get:179 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +#49 10.54 Get:180 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] +#49 10.55 Get:181 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] +#49 10.58 Get:182 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] +#49 10.63 Get:183 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] +#49 10.67 Get:184 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] +#49 10.75 Get:185 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] +#49 10.79 Get:186 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] +#49 10.84 Get:187 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] +#49 11.03 Get:188 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] +#49 11.41 Get:189 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] +#49 11.44 Get:190 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] +#49 11.48 Get:191 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] +#49 11.64 Get:192 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] +#49 11.67 Get:193 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] +#49 11.71 Get:194 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] +#49 11.75 Get:195 http://deb.debian.org/debian bookworm/main amd64 libiec61883-0 amd64 1.2.0-6+b1 [30.5 kB] +#49 11.80 Get:196 http://deb.debian.org/debian bookworm/main amd64 libsamplerate0 amd64 0.2.2-3 [952 kB] +#49 11.86 Get:197 http://deb.debian.org/debian bookworm/main amd64 libjack-jackd2-0 amd64 1.9.21~dfsg-3 [281 kB] +#49 11.91 Get:198 http://deb.debian.org/debian bookworm/main amd64 libopenal-data all 1:1.19.1-2 [170 kB] +#49 11.96 Get:199 http://deb.debian.org/debian bookworm/main amd64 libsndio7.0 amd64 1.9.0-0.3+b2 [27.3 kB] +#49 12.01 Get:200 http://deb.debian.org/debian bookworm/main amd64 libopenal1 amd64 1:1.19.1-2 [501 kB] +#49 12.07 Get:201 http://deb.debian.org/debian bookworm/main amd64 libwayland-client0 amd64 1.21.0-1 [28.3 kB] +#49 12.12 Get:202 http://deb.debian.org/debian bookworm/main amd64 libdecor-0-0 amd64 0.1.1-2 [14.6 kB] +#49 12.17 Get:203 http://deb.debian.org/debian bookworm/main amd64 libwayland-server0 amd64 1.21.0-1 [35.9 kB] +#49 12.22 Get:204 http://deb.debian.org/debian bookworm/main amd64 libgbm1 amd64 22.3.6-1+deb12u1 [38.0 kB] +#49 12.30 Get:205 http://deb.debian.org/debian bookworm/main amd64 libwayland-cursor0 amd64 1.21.0-1 [14.4 kB] +#49 12.35 Get:206 http://deb.debian.org/debian bookworm/main amd64 libwayland-egl1 amd64 1.21.0-1 [8640 B] +#49 12.38 Get:207 http://deb.debian.org/debian bookworm/main amd64 libxcursor1 amd64 1:1.2.1-1 [40.9 kB] +#49 12.41 Get:208 http://deb.debian.org/debian bookworm/main amd64 libxi6 amd64 2:1.8-1+b1 [84.2 kB] +#49 12.44 Get:209 http://deb.debian.org/debian bookworm/main amd64 xkb-data all 2.35.1-1 [764 kB] +#49 12.49 Get:210 http://deb.debian.org/debian bookworm/main amd64 libxkbcommon0 amd64 1.5.0-1 [106 kB] +#49 12.52 Get:211 http://deb.debian.org/debian bookworm/main amd64 libxrandr2 amd64 2:1.5.2-2+b1 [39.2 kB] +#49 12.55 Get:212 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB] +#49 12.60 Get:213 http://deb.debian.org/debian bookworm/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB] +#49 12.64 Get:214 http://deb.debian.org/debian bookworm/main amd64 libsdl2-2.0-0 amd64 2.26.5+dfsg-1 [629 kB] +#49 12.69 Get:215 http://deb.debian.org/debian bookworm/main amd64 libxcb-shape0 amd64 1.15-1 [106 kB] +#49 12.74 Get:216 http://deb.debian.org/debian bookworm/main amd64 libxv1 amd64 2:1.0.11-1.1 [24.8 kB] +#49 12.79 Get:217 http://deb.debian.org/debian bookworm/main amd64 libavdevice59 amd64 7:5.1.6-0+deb12u1 [116 kB] +#49 12.84 Get:218 http://deb.debian.org/debian bookworm/main amd64 ffmpeg amd64 7:5.1.6-0+deb12u1 [1816 kB] +#49 12.94 Get:219 http://deb.debian.org/debian bookworm/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +#49 13.04 Get:220 http://deb.debian.org/debian bookworm/main amd64 libigdgmm12 amd64 22.3.3+ds1-1 [139 kB] +#49 13.08 Get:221 http://deb.debian.org/debian bookworm/main amd64 intel-media-va-driver amd64 23.1.1+dfsg1-1 [2882 kB] +#49 13.19 Get:222 http://deb.debian.org/debian bookworm/main amd64 libaacs0 amd64 0.11.1-2 [57.1 kB] +#49 13.23 Get:223 http://deb.debian.org/debian bookworm/main amd64 libbdplus0 amd64 0.2.0-3 [52.6 kB] +#49 13.27 Get:224 http://deb.debian.org/debian bookworm/main amd64 libdecor-0-plugin-1-cairo amd64 0.1.1-2 [20.1 kB] +#49 13.30 Get:225 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.10+dfsg-1+deb12u1 [17.7 kB] +#49 13.34 Get:226 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-data all 2.74.6-2+deb12u5 [1209 kB] +#49 13.40 Get:227 http://deb.debian.org/debian bookworm/main amd64 libldap-common all 2.5.13+dfsg-5 [29.3 kB] +#49 13.43 Get:228 http://deb.debian.org/debian bookworm/main amd64 librsvg2-common amd64 2.54.7+dfsg-1~deb12u1 [21.4 kB] +#49 13.46 Get:229 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules amd64 2.1.28+dfsg-10 [66.6 kB] +#49 13.51 Get:230 http://deb.debian.org/debian bookworm/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +#49 13.55 Get:231 http://deb.debian.org/debian bookworm/main amd64 mesa-va-drivers amd64 22.3.6-1+deb12u1 [3299 kB] +#49 13.72 Get:232 http://deb.debian.org/debian bookworm/main amd64 mesa-vdpau-drivers amd64 22.3.6-1+deb12u1 [3181 kB] +#49 13.91 Get:233 http://deb.debian.org/debian bookworm/main amd64 mesa-vulkan-drivers amd64 22.3.6-1+deb12u1 [8000 kB] +#49 14.26 Get:234 http://deb.debian.org/debian bookworm/main amd64 pocketsphinx-en-us all 0.8+5prealpha+1-15 [24.3 MB] +#49 15.81 Get:235 http://deb.debian.org/debian bookworm/main amd64 publicsuffix all 20230209.2326-1 [126 kB] +#49 15.84 Get:236 http://deb.debian.org/debian bookworm/main amd64 va-driver-all amd64 2.17.0-1 [12.8 kB] +#49 15.88 Get:237 http://deb.debian.org/debian bookworm/main amd64 vdpau-driver-all amd64 1.5-2 [4348 B] +#49 15.93 Get:238 http://deb.debian.org/debian bookworm/main amd64 xdg-user-dirs amd64 0.18-1 [54.4 kB] +#49 16.00 perl: warning: Setting locale failed. +#49 16.00 perl: warning: Please check that your locale settings: +#49 16.00 LANGUAGE = (unset), +#49 16.00 LC_ALL = (unset), +#49 16.00 LANG = "en_US.UTF-8" +#49 16.00 are supported and installed on your system. +#49 16.00 perl: warning: Falling back to the standard locale ("C"). +#49 16.06 debconf: delaying package configuration, since apt-utils is not installed +#49 16.09 Fetched 182 MB in 11s (16.1 MB/s) +#49 16.10 Selecting previously unselected package libdbus-1-3:amd64. +#49 16.10 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) +#49 16.11 Preparing to unpack .../0-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ... +#49 16.11 Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... +#49 16.13 Selecting previously unselected package dbus-bin. +#49 16.13 Preparing to unpack .../1-dbus-bin_1.14.10-1~deb12u1_amd64.deb ... +#49 16.13 Unpacking dbus-bin (1.14.10-1~deb12u1) ... +#49 16.15 Selecting previously unselected package dbus-session-bus-common. +#49 16.15 Preparing to unpack .../2-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ... +#49 16.15 Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) ... +#49 16.17 Selecting previously unselected package libapparmor1:amd64. +#49 16.17 Preparing to unpack .../3-libapparmor1_3.0.8-3_amd64.deb ... +#49 16.17 Unpacking libapparmor1:amd64 (3.0.8-3) ... +#49 16.18 Selecting previously unselected package libexpat1:amd64. +#49 16.18 Preparing to unpack .../4-libexpat1_2.5.0-1+deb12u1_amd64.deb ... +#49 16.18 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... +#49 16.20 Selecting previously unselected package dbus-daemon. +#49 16.20 Preparing to unpack .../5-dbus-daemon_1.14.10-1~deb12u1_amd64.deb ... +#49 16.21 Unpacking dbus-daemon (1.14.10-1~deb12u1) ... +#49 16.23 Selecting previously unselected package dbus-system-bus-common. +#49 16.23 Preparing to unpack .../6-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ... +#49 16.23 Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) ... +#49 16.25 Selecting previously unselected package dbus. +#49 16.25 Preparing to unpack .../7-dbus_1.14.10-1~deb12u1_amd64.deb ... +#49 16.25 Unpacking dbus (1.14.10-1~deb12u1) ... +#49 16.28 Selecting previously unselected package libpython3.11-minimal:amd64. +#49 16.28 Preparing to unpack .../8-libpython3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... +#49 16.28 Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... +#49 16.35 Selecting previously unselected package python3.11-minimal. +#49 16.35 Preparing to unpack .../9-python3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... +#49 16.35 Unpacking python3.11-minimal (3.11.2-6+deb12u5) ... +#49 16.52 Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... +#49 16.53 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... +#49 16.53 Setting up python3.11-minimal (3.11.2-6+deb12u5) ... +#49 17.16 Selecting previously unselected package python3-minimal. +#49 17.16 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 7088 files and directories currently installed.) +#49 17.16 Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ... +#49 17.16 Unpacking python3-minimal (3.11.2-1+b1) ... +#49 17.18 Selecting previously unselected package media-types. +#49 17.18 Preparing to unpack .../media-types_10.0.0_all.deb ... +#49 17.18 Unpacking media-types (10.0.0) ... +#49 17.19 Selecting previously unselected package libpython3.11-stdlib:amd64. +#49 17.19 Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u5_amd64.deb ... +#49 17.19 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... +#49 17.33 Selecting previously unselected package python3.11. +#49 17.33 Preparing to unpack .../python3.11_3.11.2-6+deb12u5_amd64.deb ... +#49 17.33 Unpacking python3.11 (3.11.2-6+deb12u5) ... +#49 17.36 Selecting previously unselected package libpython3-stdlib:amd64. +#49 17.36 Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ... +#49 17.36 Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ... +#49 17.37 Setting up python3-minimal (3.11.2-1+b1) ... +#49 17.52 Selecting previously unselected package python3. +#49 17.52 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 7498 files and directories currently installed.) +#49 17.53 Preparing to unpack .../000-python3_3.11.2-1+b1_amd64.deb ... +#49 17.53 Unpacking python3 (3.11.2-1+b1) ... +#49 17.55 Selecting previously unselected package alsa-topology-conf. +#49 17.55 Preparing to unpack .../001-alsa-topology-conf_1.2.5.1-2_all.deb ... +#49 17.55 Unpacking alsa-topology-conf (1.2.5.1-2) ... +#49 17.57 Selecting previously unselected package libasound2-data. +#49 17.57 Preparing to unpack .../002-libasound2-data_1.2.8-1_all.deb ... +#49 17.57 Unpacking libasound2-data (1.2.8-1) ... +#49 17.59 Selecting previously unselected package libasound2:amd64. +#49 17.59 Preparing to unpack .../003-libasound2_1.2.8-1+b1_amd64.deb ... +#49 17.59 Unpacking libasound2:amd64 (1.2.8-1+b1) ... +#49 17.63 Selecting previously unselected package alsa-ucm-conf. +#49 17.63 Preparing to unpack .../004-alsa-ucm-conf_1.2.8-1_all.deb ... +#49 17.63 Unpacking alsa-ucm-conf (1.2.8-1) ... +#49 17.71 Selecting previously unselected package libbrotli1:amd64. +#49 17.71 Preparing to unpack .../005-libbrotli1_1.0.9-2+b6_amd64.deb ... +#49 17.71 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... +#49 17.74 Selecting previously unselected package libsasl2-modules-db:amd64. +#49 17.74 Preparing to unpack .../006-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... +#49 17.75 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#49 17.76 Selecting previously unselected package libsasl2-2:amd64. +#49 17.76 Preparing to unpack .../007-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... +#49 17.76 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#49 17.78 Selecting previously unselected package libldap-2.5-0:amd64. +#49 17.78 Preparing to unpack .../008-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... +#49 17.78 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#49 17.81 Selecting previously unselected package libnghttp2-14:amd64. +#49 17.81 Preparing to unpack .../009-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... +#49 17.81 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#49 17.82 Selecting previously unselected package libpsl5:amd64. +#49 17.83 Preparing to unpack .../010-libpsl5_0.21.2-1_amd64.deb ... +#49 17.83 Unpacking libpsl5:amd64 (0.21.2-1) ... +#49 17.84 Selecting previously unselected package librtmp1:amd64. +#49 17.84 Preparing to unpack .../011-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... +#49 17.84 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#49 17.86 Selecting previously unselected package libssh2-1:amd64. +#49 17.86 Preparing to unpack .../012-libssh2-1_1.10.0-3+b1_amd64.deb ... +#49 17.86 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... +#49 17.89 Selecting previously unselected package libcurl4:amd64. +#49 17.89 Preparing to unpack .../013-libcurl4_7.88.1-10+deb12u8_amd64.deb ... +#49 17.89 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... +#49 17.92 Selecting previously unselected package curl. +#49 17.92 Preparing to unpack .../014-curl_7.88.1-10+deb12u8_amd64.deb ... +#49 17.92 Unpacking curl (7.88.1-10+deb12u8) ... +#49 17.95 Selecting previously unselected package libaom3:amd64. +#49 17.95 Preparing to unpack .../015-libaom3_3.6.0-1+deb12u1_amd64.deb ... +#49 17.96 Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... +#49 18.10 Selecting previously unselected package libdrm-common. +#49 18.10 Preparing to unpack .../016-libdrm-common_2.4.114-1_all.deb ... +#49 18.10 Unpacking libdrm-common (2.4.114-1) ... +#49 18.11 Selecting previously unselected package libdrm2:amd64. +#49 18.11 Preparing to unpack .../017-libdrm2_2.4.114-1+b1_amd64.deb ... +#49 18.11 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... +#49 18.13 Selecting previously unselected package libva2:amd64. +#49 18.13 Preparing to unpack .../018-libva2_2.17.0-1_amd64.deb ... +#49 18.13 Unpacking libva2:amd64 (2.17.0-1) ... +#49 18.15 Selecting previously unselected package libmfx1:amd64. +#49 18.15 Preparing to unpack .../019-libmfx1_22.5.4-1_amd64.deb ... +#49 18.15 Unpacking libmfx1:amd64 (22.5.4-1) ... +#49 18.41 Selecting previously unselected package libva-drm2:amd64. +#49 18.41 Preparing to unpack .../020-libva-drm2_2.17.0-1_amd64.deb ... +#49 18.41 Unpacking libva-drm2:amd64 (2.17.0-1) ... +#49 18.42 Selecting previously unselected package libxau6:amd64. +#49 18.42 Preparing to unpack .../021-libxau6_1%3a1.0.9-1_amd64.deb ... +#49 18.42 Unpacking libxau6:amd64 (1:1.0.9-1) ... +#49 18.44 Selecting previously unselected package libbsd0:amd64. +#49 18.44 Preparing to unpack .../022-libbsd0_0.11.7-2_amd64.deb ... +#49 18.44 Unpacking libbsd0:amd64 (0.11.7-2) ... +#49 18.46 Selecting previously unselected package libxdmcp6:amd64. +#49 18.46 Preparing to unpack .../023-libxdmcp6_1%3a1.1.2-3_amd64.deb ... +#49 18.46 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... +#49 18.47 Selecting previously unselected package libxcb1:amd64. +#49 18.47 Preparing to unpack .../024-libxcb1_1.15-1_amd64.deb ... +#49 18.47 Unpacking libxcb1:amd64 (1.15-1) ... +#49 18.49 Selecting previously unselected package libx11-data. +#49 18.49 Preparing to unpack .../025-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... +#49 18.49 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... +#49 18.54 Selecting previously unselected package libx11-6:amd64. +#49 18.54 Preparing to unpack .../026-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... +#49 18.54 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#49 18.60 Selecting previously unselected package libx11-xcb1:amd64. +#49 18.60 Preparing to unpack .../027-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... +#49 18.60 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#49 18.62 Selecting previously unselected package libxcb-dri3-0:amd64. +#49 18.62 Preparing to unpack .../028-libxcb-dri3-0_1.15-1_amd64.deb ... +#49 18.62 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... +#49 18.64 Selecting previously unselected package libxext6:amd64. +#49 18.64 Preparing to unpack .../029-libxext6_2%3a1.3.4-1+b1_amd64.deb ... +#49 18.64 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... +#49 18.65 Selecting previously unselected package libxfixes3:amd64. +#49 18.65 Preparing to unpack .../030-libxfixes3_1%3a6.0.0-2_amd64.deb ... +#49 18.66 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... +#49 18.67 Selecting previously unselected package libva-x11-2:amd64. +#49 18.67 Preparing to unpack .../031-libva-x11-2_2.17.0-1_amd64.deb ... +#49 18.67 Unpacking libva-x11-2:amd64 (2.17.0-1) ... +#49 18.68 Selecting previously unselected package libvdpau1:amd64. +#49 18.69 Preparing to unpack .../032-libvdpau1_1.5-2_amd64.deb ... +#49 18.69 Unpacking libvdpau1:amd64 (1.5-2) ... +#49 18.70 Selecting previously unselected package ocl-icd-libopencl1:amd64. +#49 18.70 Preparing to unpack .../033-ocl-icd-libopencl1_2.3.1-1_amd64.deb ... +#49 18.70 Unpacking ocl-icd-libopencl1:amd64 (2.3.1-1) ... +#49 18.72 Selecting previously unselected package libavutil57:amd64. +#49 18.72 Preparing to unpack .../034-libavutil57_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 18.72 Unpacking libavutil57:amd64 (7:5.1.6-0+deb12u1) ... +#49 18.76 Selecting previously unselected package libpng16-16:amd64. +#49 18.76 Preparing to unpack .../035-libpng16-16_1.6.39-2_amd64.deb ... +#49 18.76 Unpacking libpng16-16:amd64 (1.6.39-2) ... +#49 18.79 Selecting previously unselected package libfreetype6:amd64. +#49 18.79 Preparing to unpack .../036-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... +#49 18.79 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#49 18.83 Selecting previously unselected package fonts-dejavu-core. +#49 18.83 Preparing to unpack .../037-fonts-dejavu-core_2.37-6_all.deb ... +#49 18.83 Unpacking fonts-dejavu-core (2.37-6) ... +#49 18.92 Selecting previously unselected package fontconfig-config. +#49 18.92 Preparing to unpack .../038-fontconfig-config_2.14.1-4_amd64.deb ... +#49 19.01 Unpacking fontconfig-config (2.14.1-4) ... +#49 19.04 Selecting previously unselected package libfontconfig1:amd64. +#49 19.04 Preparing to unpack .../039-libfontconfig1_2.14.1-4_amd64.deb ... +#49 19.04 Unpacking libfontconfig1:amd64 (2.14.1-4) ... +#49 19.06 Selecting previously unselected package libpixman-1-0:amd64. +#49 19.07 Preparing to unpack .../040-libpixman-1-0_0.42.2-1_amd64.deb ... +#49 19.07 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... +#49 19.10 Selecting previously unselected package libxcb-render0:amd64. +#49 19.10 Preparing to unpack .../041-libxcb-render0_1.15-1_amd64.deb ... +#49 19.10 Unpacking libxcb-render0:amd64 (1.15-1) ... +#49 19.12 Selecting previously unselected package libxcb-shm0:amd64. +#49 19.12 Preparing to unpack .../042-libxcb-shm0_1.15-1_amd64.deb ... +#49 19.12 Unpacking libxcb-shm0:amd64 (1.15-1) ... +#49 19.14 Selecting previously unselected package libxrender1:amd64. +#49 19.15 Preparing to unpack .../043-libxrender1_1%3a0.9.10-1.1_amd64.deb ... +#49 19.15 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... +#49 19.16 Selecting previously unselected package libcairo2:amd64. +#49 19.16 Preparing to unpack .../044-libcairo2_1.16.0-7_amd64.deb ... +#49 19.16 Unpacking libcairo2:amd64 (1.16.0-7) ... +#49 19.21 Selecting previously unselected package libcodec2-1.0:amd64. +#49 19.21 Preparing to unpack .../045-libcodec2-1.0_1.0.5-1_amd64.deb ... +#49 19.21 Unpacking libcodec2-1.0:amd64 (1.0.5-1) ... +#49 19.77 Selecting previously unselected package libdav1d6:amd64. +#49 19.77 Preparing to unpack .../046-libdav1d6_1.0.0-2+deb12u1_amd64.deb ... +#49 19.77 Unpacking libdav1d6:amd64 (1.0.0-2+deb12u1) ... +#49 19.83 Selecting previously unselected package libglib2.0-0:amd64. +#49 19.83 Preparing to unpack .../047-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... +#49 19.83 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#49 19.93 Selecting previously unselected package libgsm1:amd64. +#49 19.93 Preparing to unpack .../048-libgsm1_1.0.22-1_amd64.deb ... +#49 19.93 Unpacking libgsm1:amd64 (1.0.22-1) ... +#49 19.95 Selecting previously unselected package libhwy1:amd64. +#49 19.95 Preparing to unpack .../049-libhwy1_1.0.3-3+deb12u1_amd64.deb ... +#49 19.95 Unpacking libhwy1:amd64 (1.0.3-3+deb12u1) ... +#49 19.99 Selecting previously unselected package liblcms2-2:amd64. +#49 19.99 Preparing to unpack .../050-liblcms2-2_2.14-2_amd64.deb ... +#49 19.99 Unpacking liblcms2-2:amd64 (2.14-2) ... +#49 20.01 Selecting previously unselected package libjxl0.7:amd64. +#49 20.01 Preparing to unpack .../051-libjxl0.7_0.7.0-10_amd64.deb ... +#49 20.01 Unpacking libjxl0.7:amd64 (0.7.0-10) ... +#49 20.10 Selecting previously unselected package libmp3lame0:amd64. +#49 20.10 Preparing to unpack .../052-libmp3lame0_3.100-6_amd64.deb ... +#49 20.11 Unpacking libmp3lame0:amd64 (3.100-6) ... +#49 20.13 Selecting previously unselected package libopenjp2-7:amd64. +#49 20.14 Preparing to unpack .../053-libopenjp2-7_2.5.0-2+deb12u1_amd64.deb ... +#49 20.14 Unpacking libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... +#49 20.16 Selecting previously unselected package libopus0:amd64. +#49 20.16 Preparing to unpack .../054-libopus0_1.3.1-3_amd64.deb ... +#49 20.16 Unpacking libopus0:amd64 (1.3.1-3) ... +#49 20.19 Selecting previously unselected package librav1e0:amd64. +#49 20.19 Preparing to unpack .../055-librav1e0_0.5.1-6_amd64.deb ... +#49 20.19 Unpacking librav1e0:amd64 (0.5.1-6) ... +#49 20.26 Selecting previously unselected package libcairo-gobject2:amd64. +#49 20.26 Preparing to unpack .../056-libcairo-gobject2_1.16.0-7_amd64.deb ... +#49 20.26 Unpacking libcairo-gobject2:amd64 (1.16.0-7) ... +#49 20.28 Selecting previously unselected package libgdk-pixbuf2.0-common. +#49 20.28 Preparing to unpack .../057-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u1_all.deb ... +#49 20.28 Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... +#49 20.32 Selecting previously unselected package libicu72:amd64. +#49 20.32 Preparing to unpack .../058-libicu72_72.1-3_amd64.deb ... +#49 20.32 Unpacking libicu72:amd64 (72.1-3) ... +#49 ... + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 18.73 Selecting previously unselected package default-jre-headless. +#48 18.74 Preparing to unpack .../087-default-jre-headless_2%3a1.17-74_amd64.deb ... +#48 18.74 Unpacking default-jre-headless (2:1.17-74) ... +#48 18.76 Selecting previously unselected package libgtk2.0-common. +#48 18.76 Preparing to unpack .../088-libgtk2.0-common_2.24.33-2+deb12u1_all.deb ... +#48 18.76 Unpacking libgtk2.0-common (2.24.33-2+deb12u1) ... +#48 18.97 Selecting previously unselected package libatk1.0-0:amd64. +#48 18.97 Preparing to unpack .../089-libatk1.0-0_2.46.0-5_amd64.deb ... +#48 18.98 Unpacking libatk1.0-0:amd64 (2.46.0-5) ... +#48 18.99 Selecting previously unselected package libpixman-1-0:amd64. +#48 18.99 Preparing to unpack .../090-libpixman-1-0_0.42.2-1_amd64.deb ... +#48 19.00 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... +#48 19.03 Selecting previously unselected package libxau6:amd64. +#48 19.03 Preparing to unpack .../091-libxau6_1%3a1.0.9-1_amd64.deb ... +#48 19.03 Unpacking libxau6:amd64 (1:1.0.9-1) ... +#48 19.05 Selecting previously unselected package libbsd0:amd64. +#48 19.05 Preparing to unpack .../092-libbsd0_0.11.7-2_amd64.deb ... +#48 19.05 Unpacking libbsd0:amd64 (0.11.7-2) ... +#48 19.07 Selecting previously unselected package libxdmcp6:amd64. +#48 19.07 Preparing to unpack .../093-libxdmcp6_1%3a1.1.2-3_amd64.deb ... +#48 19.07 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... +#48 19.09 Selecting previously unselected package libxcb1:amd64. +#48 19.09 Preparing to unpack .../094-libxcb1_1.15-1_amd64.deb ... +#48 19.09 Unpacking libxcb1:amd64 (1.15-1) ... +#48 19.10 Selecting previously unselected package libx11-data. +#48 19.11 Preparing to unpack .../095-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... +#48 19.11 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... +#48 19.15 Selecting previously unselected package libx11-6:amd64. +#48 19.15 Preparing to unpack .../096-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... +#48 19.15 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#48 19.21 Selecting previously unselected package libxcb-render0:amd64. +#48 19.21 Preparing to unpack .../097-libxcb-render0_1.15-1_amd64.deb ... +#48 19.21 Unpacking libxcb-render0:amd64 (1.15-1) ... +#48 19.23 Selecting previously unselected package libxcb-shm0:amd64. +#48 19.24 Preparing to unpack .../098-libxcb-shm0_1.15-1_amd64.deb ... +#48 19.24 Unpacking libxcb-shm0:amd64 (1.15-1) ... +#48 19.26 Selecting previously unselected package libxext6:amd64. +#48 19.26 Preparing to unpack .../099-libxext6_2%3a1.3.4-1+b1_amd64.deb ... +#48 19.26 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... +#48 19.28 Selecting previously unselected package libxrender1:amd64. +#48 19.28 Preparing to unpack .../100-libxrender1_1%3a0.9.10-1.1_amd64.deb ... +#48 19.28 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... +#48 19.29 Selecting previously unselected package libcairo2:amd64. +#48 19.29 Preparing to unpack .../101-libcairo2_1.16.0-7_amd64.deb ... +#48 19.30 Unpacking libcairo2:amd64 (1.16.0-7) ... +#48 19.34 Selecting previously unselected package fontconfig. +#48 19.35 Preparing to unpack .../102-fontconfig_2.14.1-4_amd64.deb ... +#48 19.35 Unpacking fontconfig (2.14.1-4) ... +#48 19.37 Selecting previously unselected package libfribidi0:amd64. +#48 19.37 Preparing to unpack .../103-libfribidi0_1.0.8-2.1_amd64.deb ... +#48 19.37 Unpacking libfribidi0:amd64 (1.0.8-2.1) ... +#48 19.39 Selecting previously unselected package libthai-data. +#48 19.39 Preparing to unpack .../104-libthai-data_0.1.29-1_all.deb ... +#48 19.39 Unpacking libthai-data (0.1.29-1) ... +#48 19.42 Selecting previously unselected package libdatrie1:amd64. +#48 19.42 Preparing to unpack .../105-libdatrie1_0.2.13-2+b1_amd64.deb ... +#48 19.42 Unpacking libdatrie1:amd64 (0.2.13-2+b1) ... +#48 19.44 Selecting previously unselected package libthai0:amd64. +#48 19.44 Preparing to unpack .../106-libthai0_0.1.29-1_amd64.deb ... +#48 19.44 Unpacking libthai0:amd64 (0.1.29-1) ... +#48 19.46 Selecting previously unselected package libpango-1.0-0:amd64. +#48 19.46 Preparing to unpack .../107-libpango-1.0-0_1.50.12+ds-1_amd64.deb ... +#48 19.46 Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ... +#48 19.49 Selecting previously unselected package libpangoft2-1.0-0:amd64. +#48 19.49 Preparing to unpack .../108-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ... +#48 19.49 Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... +#48 19.51 Selecting previously unselected package libpangocairo-1.0-0:amd64. +#48 19.51 Preparing to unpack .../109-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ... +#48 19.51 Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... +#48 19.53 Selecting previously unselected package libxcomposite1:amd64. +#48 19.53 Preparing to unpack .../110-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +#48 19.53 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +#48 19.55 Selecting previously unselected package libxfixes3:amd64. +#48 19.55 Preparing to unpack .../111-libxfixes3_1%3a6.0.0-2_amd64.deb ... +#48 19.55 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... +#48 19.56 Selecting previously unselected package libxcursor1:amd64. +#48 19.57 Preparing to unpack .../112-libxcursor1_1%3a1.2.1-1_amd64.deb ... +#48 19.57 Unpacking libxcursor1:amd64 (1:1.2.1-1) ... +#48 19.58 Selecting previously unselected package libxdamage1:amd64. +#48 19.58 Preparing to unpack .../113-libxdamage1_1%3a1.1.6-1_amd64.deb ... +#48 19.59 Unpacking libxdamage1:amd64 (1:1.1.6-1) ... +#48 19.60 Selecting previously unselected package libxi6:amd64. +#48 19.60 Preparing to unpack .../114-libxi6_2%3a1.8-1+b1_amd64.deb ... +#48 19.60 Unpacking libxi6:amd64 (2:1.8-1+b1) ... +#48 19.62 Selecting previously unselected package libxinerama1:amd64. +#48 19.62 Preparing to unpack .../115-libxinerama1_2%3a1.1.4-3_amd64.deb ... +#48 19.62 Unpacking libxinerama1:amd64 (2:1.1.4-3) ... +#48 19.64 Selecting previously unselected package libxrandr2:amd64. +#48 19.64 Preparing to unpack .../116-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ... +#48 19.64 Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ... +#48 19.66 Selecting previously unselected package libgtk2.0-0:amd64. +#48 19.66 Preparing to unpack .../117-libgtk2.0-0_2.24.33-2+deb12u1_amd64.deb ... +#48 19.66 Unpacking libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... +#48 19.80 Selecting previously unselected package libglvnd0:amd64. +#48 19.80 Preparing to unpack .../118-libglvnd0_1.6.0-1_amd64.deb ... +#48 19.80 Unpacking libglvnd0:amd64 (1.6.0-1) ... +#48 19.82 Selecting previously unselected package libdrm-common. +#48 19.82 Preparing to unpack .../119-libdrm-common_2.4.114-1_all.deb ... +#48 19.82 Unpacking libdrm-common (2.4.114-1) ... +#48 19.84 Selecting previously unselected package libdrm2:amd64. +#48 19.84 Preparing to unpack .../120-libdrm2_2.4.114-1+b1_amd64.deb ... +#48 19.84 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... +#48 19.85 Selecting previously unselected package libglapi-mesa:amd64. +#48 19.86 Preparing to unpack .../121-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... +#48 19.86 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#48 19.87 Selecting previously unselected package libx11-xcb1:amd64. +#48 19.88 Preparing to unpack .../122-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... +#48 19.88 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#48 19.90 Selecting previously unselected package libxcb-dri2-0:amd64. +#48 19.90 Preparing to unpack .../123-libxcb-dri2-0_1.15-1_amd64.deb ... +#48 19.90 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... +#48 19.92 Selecting previously unselected package libxcb-dri3-0:amd64. +#48 19.92 Preparing to unpack .../124-libxcb-dri3-0_1.15-1_amd64.deb ... +#48 19.92 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... +#48 19.94 Selecting previously unselected package libxcb-glx0:amd64. +#48 19.94 Preparing to unpack .../125-libxcb-glx0_1.15-1_amd64.deb ... +#48 19.94 Unpacking libxcb-glx0:amd64 (1.15-1) ... +#48 19.97 Selecting previously unselected package libxcb-present0:amd64. +#48 19.97 Preparing to unpack .../126-libxcb-present0_1.15-1_amd64.deb ... +#48 19.97 Unpacking libxcb-present0:amd64 (1.15-1) ... +#48 19.99 Selecting previously unselected package libxcb-randr0:amd64. +#48 19.99 Preparing to unpack .../127-libxcb-randr0_1.15-1_amd64.deb ... +#48 19.99 Unpacking libxcb-randr0:amd64 (1.15-1) ... +#48 20.01 Selecting previously unselected package libxcb-sync1:amd64. +#48 20.02 Preparing to unpack .../128-libxcb-sync1_1.15-1_amd64.deb ... +#48 20.02 Unpacking libxcb-sync1:amd64 (1.15-1) ... +#48 20.04 Selecting previously unselected package libxcb-xfixes0:amd64. +#48 20.04 Preparing to unpack .../129-libxcb-xfixes0_1.15-1_amd64.deb ... +#48 20.04 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... +#48 20.06 Selecting previously unselected package libxshmfence1:amd64. +#48 20.06 Preparing to unpack .../130-libxshmfence1_1.3-1_amd64.deb ... +#48 20.06 Unpacking libxshmfence1:amd64 (1.3-1) ... +#48 20.08 Selecting previously unselected package libxxf86vm1:amd64. +#48 20.08 Preparing to unpack .../131-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +#48 20.08 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#48 20.09 Selecting previously unselected package libdrm-amdgpu1:amd64. +#48 20.10 Preparing to unpack .../132-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... +#48 20.10 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#48 20.11 Selecting previously unselected package libpciaccess0:amd64. +#48 20.11 Preparing to unpack .../133-libpciaccess0_0.17-2_amd64.deb ... +#48 20.11 Unpacking libpciaccess0:amd64 (0.17-2) ... +#48 20.13 Selecting previously unselected package libdrm-intel1:amd64. +#48 20.13 Preparing to unpack .../134-libdrm-intel1_2.4.114-1+b1_amd64.deb ... +#48 20.13 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... +#48 20.15 Selecting previously unselected package libdrm-nouveau2:amd64. +#48 20.15 Preparing to unpack .../135-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... +#48 20.15 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#48 20.17 Selecting previously unselected package libdrm-radeon1:amd64. +#48 20.17 Preparing to unpack .../136-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... +#48 20.17 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#48 20.19 Selecting previously unselected package libelf1:amd64. +#48 20.19 Preparing to unpack .../137-libelf1_0.188-2.1_amd64.deb ... +#48 20.19 Unpacking libelf1:amd64 (0.188-2.1) ... +#48 20.22 Selecting previously unselected package libedit2:amd64. +#48 20.22 Preparing to unpack .../138-libedit2_3.1-20221030-2_amd64.deb ... +#48 20.22 Unpacking libedit2:amd64 (3.1-20221030-2) ... +#48 20.24 Selecting previously unselected package libz3-4:amd64. +#48 20.24 Preparing to unpack .../139-libz3-4_4.8.12-3.1_amd64.deb ... +#48 20.24 Unpacking libz3-4:amd64 (4.8.12-3.1) ... +#48 20.75 Selecting previously unselected package libllvm15:amd64. +#48 20.75 Preparing to unpack .../140-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... +#48 20.75 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... +#48 21.46 Selecting previously unselected package libsensors-config. +#48 21.46 Preparing to unpack .../141-libsensors-config_1%3a3.6.0-7.1_all.deb ... +#48 21.46 Unpacking libsensors-config (1:3.6.0-7.1) ... +#48 21.47 Selecting previously unselected package libsensors5:amd64. +#48 21.48 Preparing to unpack .../142-libsensors5_1%3a3.6.0-7.1_amd64.deb ... +#48 21.48 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... +#48 21.50 Selecting previously unselected package libgl1-mesa-dri:amd64. +#48 21.50 Preparing to unpack .../143-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... +#48 21.50 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#48 ... + +#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt +#50 10.45 Collecting orjson>=3.8.2 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 10.51 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#50 10.68 Collecting pydantic>=1.10.8 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 10.72 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) +#50 10.80 Collecting rich>=13.1.0 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 10.88 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#50 10.91 Collecting types-requests>=2.28.11.6 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 10.96 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#50 10.97 Collecting typing-inspect>=0.8.0 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 11.01 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) +#50 11.06 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/comps/embeddings/src/requirements.txt (line 4)) +#50 11.09 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#50 11.18 Collecting typing-extensions>=4.8.0 (from fastapi->-r /home/comps/embeddings/src/requirements.txt (line 4)) +#50 11.21 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#50 11.24 Collecting filelock (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) +#50 11.28 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#50 11.31 Collecting fsspec>=2023.5.0 (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) +#50 11.34 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) +#50 11.43 Collecting packaging>=20.9 (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) +#50 11.47 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#50 11.52 Collecting tqdm>=4.42.1 (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) +#50 11.56 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#50 11.69 Collecting torch>=1.9.0 (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 11.73 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl.metadata (28 kB) +#50 11.88 Collecting torchvision (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 11.92 Downloading torchvision-0.21.0-cp311-cp311-manylinux1_x86_64.whl.metadata (6.1 kB) +#50 12.30 Collecting regex (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 12.33 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#50 12.40 Collecting ftfy (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 12.44 Downloading ftfy-6.3.1-py3-none-any.whl.metadata (7.3 kB) +#50 12.57 Collecting safetensors (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 12.61 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#50 12.65 Collecting timm (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 12.69 Downloading timm-1.0.14-py3-none-any.whl.metadata (50 kB) +#50 12.78 Collecting anyio<5,>=3.5.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 12.83 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#50 13.03 Collecting distro<2,>=1.7.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 13.05 Downloading distro-1.9.0-py3-none-any.whl.metadata (6.8 kB) +#50 13.09 Collecting httpx<1,>=0.23.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 13.11 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#50 13.22 Collecting jiter<1,>=0.4.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 13.24 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) +#50 13.32 Collecting sniffio (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 13.35 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#50 13.39 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) +#50 13.43 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#50 13.47 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) +#50 13.51 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) +#50 13.55 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) +#50 13.58 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#50 13.61 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) +#50 13.64 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#50 13.67 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) +#50 13.71 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#50 14.27 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) +#50 14.32 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#50 14.35 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) +#50 14.39 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) +#50 14.44 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) +#50 14.48 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#50 14.67 Collecting protobuf<6.0,>=5.0 (from opentelemetry-proto==1.29.0->opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) +#50 14.71 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#50 14.73 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/comps/embeddings/src/requirements.txt (line 10)) +#50 14.77 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) +#50 14.81 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/comps/embeddings/src/requirements.txt (line 13)) +#50 14.85 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#50 15.10 Collecting tokenizers<0.22,>=0.21 (from transformers->-r /home/comps/embeddings/src/requirements.txt (line 16)) +#50 15.14 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) +#50 15.20 Collecting click>=7.0 (from uvicorn->-r /home/comps/embeddings/src/requirements.txt (line 17)) +#50 15.25 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#50 15.27 Collecting h11>=0.8 (from uvicorn->-r /home/comps/embeddings/src/requirements.txt (line 17)) +#50 15.31 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#50 15.43 Collecting idna>=2.8 (from anyio<5,>=3.5.0->openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 15.47 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#50 15.61 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) +#50 15.64 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#50 15.70 Collecting certifi (from httpx<1,>=0.23.0->openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 15.74 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#50 15.77 Collecting httpcore==1.* (from httpx<1,>=0.23.0->openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) +#50 15.82 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#50 15.90 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) +#50 15.95 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#50 16.00 Collecting annotated-types>=0.6.0 (from pydantic>=1.10.8->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 16.04 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#50 16.80 Collecting pydantic-core==2.27.2 (from pydantic>=1.10.8->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 16.84 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#50 16.96 Collecting charset-normalizer<4,>=2 (from requests>=2.27.1->predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) +#50 17.01 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#50 17.15 Collecting urllib3<3,>=1.21.1 (from requests>=2.27.1->predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) +#50 17.19 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#50 17.23 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 17.27 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#50 17.37 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 17.41 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#50 17.49 Collecting networkx (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.53 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#50 17.57 Collecting jinja2 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.61 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) +#50 17.63 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.67 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#50 17.68 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.72 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#50 17.74 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.78 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#50 17.80 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.84 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#50 17.86 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.90 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#50 17.91 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 17.95 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#50 17.97 Collecting nvidia-curand-cu12==10.3.5.147 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.01 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#50 18.03 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.08 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#50 18.09 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.14 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#50 18.15 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.20 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) +#50 18.23 Collecting nvidia-nccl-cu12==2.21.5 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.27 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) +#50 18.29 Collecting nvidia-nvtx-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.33 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) +#50 18.35 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.39 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#50 18.41 Collecting triton==3.2.0 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.44 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) +#50 18.47 Collecting sympy==1.13.1 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.50 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) +#50 18.58 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.62 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) +#50 18.67 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 18.71 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) +#50 18.75 Collecting wcwidth (from ftfy->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 18.78 Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB) +#50 18.93 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) +#50 18.97 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#50 19.06 Collecting MarkupSafe>=2.0 (from jinja2->torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) +#50 19.10 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#50 19.17 Downloading predictionguard-2.2.1-py2.py3-none-any.whl (7.9 kB) +#50 19.22 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) +#50 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 16.64 Get:291 http://deb.debian.org/debian-security bookworm-security/main amd64 python3-uno amd64 4:7.4.7-1+deb12u6 [158 kB] +#42 16.69 Get:292 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice amd64 4:7.4.7-1+deb12u6 [35.1 kB] +#42 16.74 Get:293 http://deb.debian.org/debian bookworm/main amd64 libtesseract5 amd64 5.3.0-2 [1279 kB] +#42 16.85 Get:294 http://deb.debian.org/debian bookworm/main amd64 poppler-utils amd64 22.12.0-2+b1 [192 kB] +#42 16.88 Get:295 http://deb.debian.org/debian bookworm/main amd64 tesseract-ocr-eng all 1:4.1.0-2 [1594 kB] +#42 17.05 Get:296 http://deb.debian.org/debian bookworm/main amd64 tesseract-ocr-osd all 1:4.1.0-2 [2992 kB] +#42 17.36 Get:297 http://deb.debian.org/debian bookworm/main amd64 tesseract-ocr amd64 5.3.0-2 [402 kB] +#42 17.57 debconf: delaying package configuration, since apt-utils is not installed +#42 17.60 Fetched 343 MB in 13s (26.6 MB/s) +#42 17.61 Selecting previously unselected package perl-modules-5.36. +#42 17.61 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) +#42 17.62 Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u1_all.deb ... +#42 17.62 Unpacking perl-modules-5.36 (5.36.0-7+deb12u1) ... +#42 17.89 Selecting previously unselected package libgdbm-compat4:amd64. +#42 17.89 Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... +#42 17.89 Unpacking libgdbm-compat4:amd64 (1.23-3) ... +#42 17.91 Selecting previously unselected package libperl5.36:amd64. +#42 17.91 Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u1_amd64.deb ... +#42 17.91 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u1) ... +#42 18.23 Selecting previously unselected package perl. +#42 18.23 Preparing to unpack .../003-perl_5.36.0-7+deb12u1_amd64.deb ... +#42 18.23 Unpacking perl (5.36.0-7+deb12u1) ... +#42 18.26 Selecting previously unselected package libexpat1:amd64. +#42 18.26 Preparing to unpack .../004-libexpat1_2.5.0-1+deb12u1_amd64.deb ... +#42 18.26 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... +#42 18.28 Selecting previously unselected package libbrotli1:amd64. +#42 18.29 Preparing to unpack .../005-libbrotli1_1.0.9-2+b6_amd64.deb ... +#42 18.29 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... +#42 18.32 Selecting previously unselected package libpng16-16:amd64. +#42 18.32 Preparing to unpack .../006-libpng16-16_1.6.39-2_amd64.deb ... +#42 18.32 Unpacking libpng16-16:amd64 (1.6.39-2) ... +#42 18.35 Selecting previously unselected package libfreetype6:amd64. +#42 18.35 Preparing to unpack .../007-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... +#42 18.35 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#42 18.39 Selecting previously unselected package fonts-dejavu-core. +#42 18.39 Preparing to unpack .../008-fonts-dejavu-core_2.37-6_all.deb ... +#42 18.39 Unpacking fonts-dejavu-core (2.37-6) ... +#42 18.55 Selecting previously unselected package fontconfig-config. +#42 18.55 Preparing to unpack .../009-fontconfig-config_2.14.1-4_amd64.deb ... +#42 18.65 Unpacking fontconfig-config (2.14.1-4) ... +#42 18.68 Selecting previously unselected package libfontconfig1:amd64. +#42 18.68 Preparing to unpack .../010-libfontconfig1_2.14.1-4_amd64.deb ... +#42 18.68 Unpacking libfontconfig1:amd64 (2.14.1-4) ... +#42 18.70 Selecting previously unselected package fontconfig. +#42 18.70 Preparing to unpack .../011-fontconfig_2.14.1-4_amd64.deb ... +#42 18.71 Unpacking fontconfig (2.14.1-4) ... +#42 18.73 Selecting previously unselected package fonts-opensymbol. +#42 18.74 Preparing to unpack .../012-fonts-opensymbol_4%3a102.12+LibO7.4.7-1+deb12u6_all.deb ... +#42 18.74 Unpacking fonts-opensymbol (4:102.12+LibO7.4.7-1+deb12u6) ... +#42 18.76 Selecting previously unselected package libreoffice-style-colibre. +#42 18.76 Preparing to unpack .../013-libreoffice-style-colibre_4%3a7.4.7-1+deb12u6_all.deb ... +#42 18.77 Unpacking libreoffice-style-colibre (4:7.4.7-1+deb12u6) ... +#42 19.25 Selecting previously unselected package libuno-sal3. +#42 19.25 Preparing to unpack .../014-libuno-sal3_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 19.25 Unpacking libuno-sal3 (4:7.4.7-1+deb12u6) ... +#42 19.28 Selecting previously unselected package libuno-salhelpergcc3-3. +#42 19.28 Preparing to unpack .../015-libuno-salhelpergcc3-3_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 19.28 Unpacking libuno-salhelpergcc3-3 (4:7.4.7-1+deb12u6) ... +#42 19.30 Selecting previously unselected package libuno-cppu3. +#42 19.30 Preparing to unpack .../016-libuno-cppu3_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 19.30 Unpacking libuno-cppu3 (4:7.4.7-1+deb12u6) ... +#42 19.32 Selecting previously unselected package uno-libs-private. +#42 19.32 Preparing to unpack .../017-uno-libs-private_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 19.32 Unpacking uno-libs-private (4:7.4.7-1+deb12u6) ... +#42 19.35 Selecting previously unselected package libicu72:amd64. +#42 19.35 Preparing to unpack .../018-libicu72_72.1-3_amd64.deb ... +#42 19.35 Unpacking libicu72:amd64 (72.1-3) ... +#42 19.87 Selecting previously unselected package libxml2:amd64. +#42 19.87 Preparing to unpack .../019-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... +#42 19.87 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#42 19.93 Selecting previously unselected package liblangtag-common. +#42 19.93 Preparing to unpack .../020-liblangtag-common_0.6.4-2_all.deb ... +#42 19.93 Unpacking liblangtag-common (0.6.4-2) ... +#42 19.96 Selecting previously unselected package liblangtag1:amd64. +#42 19.96 Preparing to unpack .../021-liblangtag1_0.6.4-2_amd64.deb ... +#42 19.97 Unpacking liblangtag1:amd64 (0.6.4-2) ... +#42 19.98 Selecting previously unselected package libuno-cppuhelpergcc3-3. +#42 19.98 Preparing to unpack .../022-libuno-cppuhelpergcc3-3_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 19.98 Unpacking libuno-cppuhelpergcc3-3 (4:7.4.7-1+deb12u6) ... +#42 20.02 Selecting previously unselected package libuno-purpenvhelpergcc3-3. +#42 20.02 Preparing to unpack .../023-libuno-purpenvhelpergcc3-3_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 20.02 Unpacking libuno-purpenvhelpergcc3-3 (4:7.4.7-1+deb12u6) ... +#42 20.04 Selecting previously unselected package ure. +#42 20.04 Preparing to unpack .../024-ure_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 20.04 Unpacking ure (4:7.4.7-1+deb12u6) ... +#42 20.14 Selecting previously unselected package sensible-utils. +#42 20.14 Preparing to unpack .../025-sensible-utils_0.0.17+nmu1_all.deb ... +#42 20.15 Unpacking sensible-utils (0.0.17+nmu1) ... +#42 20.16 Selecting previously unselected package ucf. +#42 20.16 Preparing to unpack .../026-ucf_3.0043+nmu1+deb12u1_all.deb ... +#42 20.16 Moving old data out of the way +#42 20.17 Unpacking ucf (3.0043+nmu1+deb12u1) ... +#42 20.18 Selecting previously unselected package libnumbertext-data. +#42 20.18 Preparing to unpack .../027-libnumbertext-data_1.0.11-1_all.deb ... +#42 20.18 Unpacking libnumbertext-data (1.0.11-1) ... +#42 20.21 Selecting previously unselected package libreoffice-common. +#42 20.21 Preparing to unpack .../028-libreoffice-common_4%3a7.4.7-1+deb12u6_all.deb ... +#42 20.23 Unpacking libreoffice-common (4:7.4.7-1+deb12u6) ... +#42 20.87 Selecting previously unselected package libabsl20220623:amd64. +#42 20.87 Preparing to unpack .../029-libabsl20220623_20220623.1-1_amd64.deb ... +#42 20.87 Unpacking libabsl20220623:amd64 (20220623.1-1) ... +#42 20.92 Selecting previously unselected package libboost-thread1.74.0:amd64. +#42 20.92 Preparing to unpack .../030-libboost-thread1.74.0_1.74.0+ds1-21_amd64.deb ... +#42 20.92 Unpacking libboost-thread1.74.0:amd64 (1.74.0+ds1-21) ... +#42 20.96 Selecting previously unselected package libboost-locale1.74.0:amd64. +#42 20.96 Preparing to unpack .../031-libboost-locale1.74.0_1.74.0+ds1-21_amd64.deb ... +#42 20.96 Unpacking libboost-locale1.74.0:amd64 (1.74.0+ds1-21) ... +#42 21.00 Selecting previously unselected package libpixman-1-0:amd64. +#42 21.01 Preparing to unpack .../032-libpixman-1-0_0.42.2-1_amd64.deb ... +#42 21.01 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... +#42 21.04 Selecting previously unselected package libxau6:amd64. +#42 21.04 Preparing to unpack .../033-libxau6_1%3a1.0.9-1_amd64.deb ... +#42 21.04 Unpacking libxau6:amd64 (1:1.0.9-1) ... +#42 21.06 Selecting previously unselected package libbsd0:amd64. +#42 21.06 Preparing to unpack .../034-libbsd0_0.11.7-2_amd64.deb ... +#42 21.06 Unpacking libbsd0:amd64 (0.11.7-2) ... +#42 21.08 Selecting previously unselected package libxdmcp6:amd64. +#42 21.08 Preparing to unpack .../035-libxdmcp6_1%3a1.1.2-3_amd64.deb ... +#42 21.08 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... +#42 21.09 Selecting previously unselected package libxcb1:amd64. +#42 21.09 Preparing to unpack .../036-libxcb1_1.15-1_amd64.deb ... +#42 21.10 Unpacking libxcb1:amd64 (1.15-1) ... +#42 21.11 Selecting previously unselected package libx11-data. +#42 21.11 Preparing to unpack .../037-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... +#42 21.11 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... +#42 21.16 Selecting previously unselected package libx11-6:amd64. +#42 21.16 Preparing to unpack .../038-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... +#42 21.16 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#42 21.22 Selecting previously unselected package libxcb-render0:amd64. +#42 21.22 Preparing to unpack .../039-libxcb-render0_1.15-1_amd64.deb ... +#42 21.22 Unpacking libxcb-render0:amd64 (1.15-1) ... +#42 21.24 Selecting previously unselected package libxcb-shm0:amd64. +#42 21.24 Preparing to unpack .../040-libxcb-shm0_1.15-1_amd64.deb ... +#42 21.24 Unpacking libxcb-shm0:amd64 (1.15-1) ... +#42 21.26 Selecting previously unselected package libxext6:amd64. +#42 21.27 Preparing to unpack .../041-libxext6_2%3a1.3.4-1+b1_amd64.deb ... +#42 21.27 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... +#42 21.28 Selecting previously unselected package libxrender1:amd64. +#42 21.28 Preparing to unpack .../042-libxrender1_1%3a0.9.10-1.1_amd64.deb ... +#42 21.28 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... +#42 21.30 Selecting previously unselected package libcairo2:amd64. +#42 21.30 Preparing to unpack .../043-libcairo2_1.16.0-7_amd64.deb ... +#42 21.30 Unpacking libcairo2:amd64 (1.16.0-7) ... +#42 21.35 Selecting previously unselected package libclucene-core1v5:amd64. +#42 21.35 Preparing to unpack .../044-libclucene-core1v5_2.3.3.4+dfsg-1.1_amd64.deb ... +#42 21.35 Unpacking libclucene-core1v5:amd64 (2.3.3.4+dfsg-1.1) ... +#42 21.40 Selecting previously unselected package libclucene-contribs1v5:amd64. +#42 21.40 Preparing to unpack .../045-libclucene-contribs1v5_2.3.3.4+dfsg-1.1_amd64.deb ... +#42 21.40 Unpacking libclucene-contribs1v5:amd64 (2.3.3.4+dfsg-1.1) ... +#42 21.42 Selecting previously unselected package libavahi-common-data:amd64. +#42 21.42 Preparing to unpack .../046-libavahi-common-data_0.8-10+deb12u1_amd64.deb ... +#42 21.42 Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ... +#42 21.44 Selecting previously unselected package libavahi-common3:amd64. +#42 21.44 Preparing to unpack .../047-libavahi-common3_0.8-10+deb12u1_amd64.deb ... +#42 21.44 Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ... +#42 21.46 Selecting previously unselected package libdbus-1-3:amd64. +#42 21.46 Preparing to unpack .../048-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ... +#42 21.46 Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... +#42 21.49 Selecting previously unselected package libavahi-client3:amd64. +#42 21.49 Preparing to unpack .../049-libavahi-client3_0.8-10+deb12u1_amd64.deb ... +#42 21.49 Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ... +#42 21.51 Selecting previously unselected package libcups2:amd64. +#42 21.51 Preparing to unpack .../050-libcups2_2.4.2-3+deb12u8_amd64.deb ... +#42 21.51 Unpacking libcups2:amd64 (2.4.2-3+deb12u8) ... +#42 21.54 Selecting previously unselected package libsasl2-modules-db:amd64. +#42 21.54 Preparing to unpack .../051-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... +#42 21.54 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#42 21.55 Selecting previously unselected package libsasl2-2:amd64. +#42 21.56 Preparing to unpack .../052-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... +#42 21.56 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#42 21.57 Selecting previously unselected package libldap-2.5-0:amd64. +#42 21.57 Preparing to unpack .../053-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... +#42 21.57 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#42 21.60 Selecting previously unselected package libnghttp2-14:amd64. +#42 21.60 Preparing to unpack .../054-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... +#42 21.60 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#42 21.62 Selecting previously unselected package libpsl5:amd64. +#42 21.62 Preparing to unpack .../055-libpsl5_0.21.2-1_amd64.deb ... +#42 21.62 Unpacking libpsl5:amd64 (0.21.2-1) ... +#42 21.64 Selecting previously unselected package librtmp1:amd64. +#42 21.64 Preparing to unpack .../056-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... +#42 21.64 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#42 21.66 Selecting previously unselected package libssh2-1:amd64. +#42 21.66 Preparing to unpack .../057-libssh2-1_1.10.0-3+b1_amd64.deb ... +#42 21.66 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... +#42 21.68 Selecting previously unselected package libcurl3-gnutls:amd64. +#42 21.69 Preparing to unpack .../058-libcurl3-gnutls_7.88.1-10+deb12u8_amd64.deb ... +#42 21.69 Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... +#42 21.72 Selecting previously unselected package libglib2.0-0:amd64. +#42 21.72 Preparing to unpack .../059-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... +#42 21.72 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#42 21.83 Selecting previously unselected package libdconf1:amd64. +#42 21.83 Preparing to unpack .../060-libdconf1_0.40.0-4_amd64.deb ... +#42 21.83 Unpacking libdconf1:amd64 (0.40.0-4) ... +#42 21.84 Selecting previously unselected package libeot0:amd64. +#42 21.85 Preparing to unpack .../061-libeot0_0.01-5+b1_amd64.deb ... +#42 21.85 Unpacking libeot0:amd64 (0.01-5+b1) ... +#42 21.86 Selecting previously unselected package libepoxy0:amd64. +#42 21.87 Preparing to unpack .../062-libepoxy0_1.5.10-1_amd64.deb ... +#42 21.87 Unpacking libepoxy0:amd64 (1.5.10-1) ... +#42 21.89 Selecting previously unselected package libexttextcat-data. +#42 21.89 Preparing to unpack .../063-libexttextcat-data_3.4.5-1_all.deb ... +#42 21.90 Unpacking libexttextcat-data (3.4.5-1) ... +#42 21.93 Selecting previously unselected package libexttextcat-2.0-0:amd64. +#42 21.93 Preparing to unpack .../064-libexttextcat-2.0-0_3.4.5-1_amd64.deb ... +#42 21.93 Unpacking libexttextcat-2.0-0:amd64 (3.4.5-1) ... +#42 21.94 Selecting previously unselected package libassuan0:amd64. +#42 21.95 Preparing to unpack .../065-libassuan0_2.5.5-5_amd64.deb ... +#42 21.95 Unpacking libassuan0:amd64 (2.5.5-5) ... +#42 21.96 Selecting previously unselected package gpgconf. +#42 21.96 Preparing to unpack .../066-gpgconf_2.2.40-1.1_amd64.deb ... +#42 21.96 Unpacking gpgconf (2.2.40-1.1) ... +#42 21.99 Selecting previously unselected package libksba8:amd64. +#42 21.99 Preparing to unpack .../067-libksba8_1.6.3-2_amd64.deb ... +#42 21.99 Unpacking libksba8:amd64 (1.6.3-2) ... +#42 22.02 Selecting previously unselected package libnpth0:amd64. +#42 22.02 Preparing to unpack .../068-libnpth0_1.6-3_amd64.deb ... +#42 22.02 Unpacking libnpth0:amd64 (1.6-3) ... +#42 22.03 Selecting previously unselected package dirmngr. +#42 22.04 Preparing to unpack .../069-dirmngr_2.2.40-1.1_amd64.deb ... +#42 22.05 Unpacking dirmngr (2.2.40-1.1) ... +#42 22.09 Selecting previously unselected package gnupg-l10n. +#42 22.09 Preparing to unpack .../070-gnupg-l10n_2.2.40-1.1_all.deb ... +#42 22.10 Unpacking gnupg-l10n (2.2.40-1.1) ... +#42 22.16 Selecting previously unselected package gnupg-utils. +#42 22.17 Preparing to unpack .../071-gnupg-utils_2.2.40-1.1_amd64.deb ... +#42 22.17 Unpacking gnupg-utils (2.2.40-1.1) ... +#42 22.22 Selecting previously unselected package gpg. +#42 22.22 Preparing to unpack .../072-gpg_2.2.40-1.1_amd64.deb ... +#42 22.22 Unpacking gpg (2.2.40-1.1) ... +#42 22.28 Selecting previously unselected package pinentry-curses. +#42 22.28 Preparing to unpack .../073-pinentry-curses_1.2.1-1_amd64.deb ... +#42 22.28 Unpacking pinentry-curses (1.2.1-1) ... +#42 22.30 Selecting previously unselected package gpg-agent. +#42 22.30 Preparing to unpack .../074-gpg-agent_2.2.40-1.1_amd64.deb ... +#42 22.30 Unpacking gpg-agent (2.2.40-1.1) ... +#42 22.34 Selecting previously unselected package gpg-wks-client. +#42 22.34 Preparing to unpack .../075-gpg-wks-client_2.2.40-1.1_amd64.deb ... +#42 22.34 Unpacking gpg-wks-client (2.2.40-1.1) ... +#42 22.36 Selecting previously unselected package gpg-wks-server. +#42 22.37 Preparing to unpack .../076-gpg-wks-server_2.2.40-1.1_amd64.deb ... +#42 22.37 Unpacking gpg-wks-server (2.2.40-1.1) ... +#42 22.39 Selecting previously unselected package gpgsm. +#42 22.39 Preparing to unpack .../077-gpgsm_2.2.40-1.1_amd64.deb ... +#42 22.39 Unpacking gpgsm (2.2.40-1.1) ... +#42 22.43 Selecting previously unselected package gnupg. +#42 22.43 Preparing to unpack .../078-gnupg_2.2.40-1.1_all.deb ... +#42 22.43 Unpacking gnupg (2.2.40-1.1) ... +#42 22.47 Selecting previously unselected package libgpgme11:amd64. +#42 22.47 Preparing to unpack .../079-libgpgme11_1.18.0-3+b1_amd64.deb ... +#42 22.47 Unpacking libgpgme11:amd64 (1.18.0-3+b1) ... +#42 22.50 Selecting previously unselected package libgpgmepp6:amd64. +#42 22.50 Preparing to unpack .../080-libgpgmepp6_1.18.0-3+b1_amd64.deb ... +#42 22.50 Unpacking libgpgmepp6:amd64 (1.18.0-3+b1) ... +#42 22.52 Selecting previously unselected package libgraphite2-3:amd64. +#42 22.53 Preparing to unpack .../081-libgraphite2-3_1.3.14-1_amd64.deb ... +#42 22.53 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +#42 ... + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 21.99 Selecting previously unselected package libglx-mesa0:amd64. +#48 21.99 Preparing to unpack .../144-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... +#48 21.99 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#48 22.02 Selecting previously unselected package libglx0:amd64. +#48 22.02 Preparing to unpack .../145-libglx0_1.6.0-1_amd64.deb ... +#48 22.02 Unpacking libglx0:amd64 (1.6.0-1) ... +#48 22.04 Selecting previously unselected package libgl1:amd64. +#48 22.04 Preparing to unpack .../146-libgl1_1.6.0-1_amd64.deb ... +#48 22.04 Unpacking libgl1:amd64 (1.6.0-1) ... +#48 22.06 Selecting previously unselected package libgif7:amd64. +#48 22.06 Preparing to unpack .../147-libgif7_5.2.1-2.5_amd64.deb ... +#48 22.06 Unpacking libgif7:amd64 (5.2.1-2.5) ... +#48 22.08 Selecting previously unselected package x11-common. +#48 22.08 Preparing to unpack .../148-x11-common_1%3a7.7+23_all.deb ... +#48 22.08 Unpacking x11-common (1:7.7+23) ... +#48 22.11 Selecting previously unselected package libxtst6:amd64. +#48 22.11 Preparing to unpack .../149-libxtst6_2%3a1.2.3-1.1_amd64.deb ... +#48 22.11 Unpacking libxtst6:amd64 (2:1.2.3-1.1) ... +#48 22.12 Selecting previously unselected package openjdk-17-jre:amd64. +#48 22.12 Preparing to unpack .../150-openjdk-17-jre_17.0.14+7-1~deb12u1_amd64.deb ... +#48 22.13 Unpacking openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... +#48 22.16 Selecting previously unselected package default-jre. +#48 22.16 Preparing to unpack .../151-default-jre_2%3a1.17-74_amd64.deb ... +#48 22.16 Unpacking default-jre (2:1.17-74) ... +#48 22.17 Selecting previously unselected package libgl1-mesa-glx:amd64. +#48 22.17 Preparing to unpack .../152-libgl1-mesa-glx_22.3.6-1+deb12u1_amd64.deb ... +#48 22.17 Unpacking libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... +#48 22.19 Selecting previously unselected package libjemalloc2:amd64. +#48 22.19 Preparing to unpack .../153-libjemalloc2_5.3.0-1_amd64.deb ... +#48 22.19 Unpacking libjemalloc2:amd64 (5.3.0-1) ... +#48 22.22 Selecting previously unselected package libjemalloc-dev. +#48 22.22 Preparing to unpack .../154-libjemalloc-dev_5.3.0-1_amd64.deb ... +#48 22.22 Unpacking libjemalloc-dev (5.3.0-1) ... +#48 22.29 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... +#48 22.29 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +#48 22.29 Setting up liblcms2-2:amd64 (2.14-2) ... +#48 22.30 Setting up libpixman-1-0:amd64 (0.42.2-1) ... +#48 22.30 Setting up libpciaccess0:amd64 (0.17-2) ... +#48 22.30 Setting up libxau6:amd64 (1:1.0.9-1) ... +#48 22.30 Setting up libpsl5:amd64 (0.21.2-1) ... +#48 22.30 Setting up libicu72:amd64 (72.1-3) ... +#48 22.31 Setting up liblerc4:amd64 (4.0.0+ds-2) ... +#48 22.31 Setting up wget (1.21.3-1+b2) ... +#48 22.31 Setting up hicolor-icon-theme (0.17-2) ... +#48 22.32 Setting up java-common (0.74) ... +#48 22.33 Setting up libdatrie1:amd64 (0.2.13-2+b1) ... +#48 22.33 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#48 22.34 No schema files found: doing nothing. +#48 22.34 Setting up libglvnd0:amd64 (1.6.0-1) ... +#48 22.34 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... +#48 22.35 Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... +#48 22.35 Setting up binutils-common:amd64 (2.40-2) ... +#48 22.35 Setting up x11-common (1:7.7+23) ... +#48 22.43 debconf: unable to initialize frontend: Dialog +#48 22.43 debconf: (TERM is not set, so the dialog frontend is not usable.) +#48 22.43 debconf: falling back to frontend: Readline +#48 22.44 debconf: unable to initialize frontend: Readline +#48 22.44 debconf: (This frontend requires a controlling tty.) +#48 22.44 debconf: falling back to frontend: Teletype +#48 22.46 invoke-rc.d: could not determine current runlevel +#48 22.46 invoke-rc.d: policy-rc.d denied execution of restart. +#48 22.46 Setting up libsensors-config (1:3.6.0-7.1) ... +#48 22.47 Setting up libdeflate0:amd64 (1.14-1) ... +#48 22.47 Setting up linux-libc-dev:amd64 (6.1.124-1) ... +#48 22.47 Setting up libctf-nobfd0:amd64 (2.40-2) ... +#48 22.47 Setting up libjemalloc2:amd64 (5.3.0-1) ... +#48 22.47 Setting up libgomp1:amd64 (12.2.0-14) ... +#48 22.48 Setting up bzip2 (1.0.8-5+b1) ... +#48 22.48 Setting up libjbig0:amd64 (2.1-6.1) ... +#48 22.48 Setting up libjansson4:amd64 (2.14-2) ... +#48 22.48 Setting up libasound2-data (1.2.8-1) ... +#48 22.48 Setting up libjemalloc-dev (5.3.0-1) ... +#48 22.49 Setting up perl-modules-5.36 (5.36.0-7+deb12u1) ... +#48 22.49 Setting up libz3-4:amd64 (4.8.12-3.1) ... +#48 22.49 Setting up libtirpc-dev:amd64 (1.3.3+ds-1) ... +#48 22.49 Setting up rpcsvc-proto (1.4.3-1) ... +#48 22.49 Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ... +#48 22.50 Setting up libx11-data (2:1.8.4-2+deb12u2) ... +#48 22.50 Setting up make (4.3-4.1) ... +#48 22.50 Setting up libmpfr6:amd64 (4.2.0-1) ... +#48 22.50 Setting up libnspr4:amd64 (2:4.35-1) ... +#48 22.50 Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ... +#48 22.50 Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... +#48 22.51 Setting up xz-utils (5.4.1-0.2) ... +#48 22.51 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist +#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist +#48 22.51 Setting up libfribidi0:amd64 (1.0.8-2.1) ... +#48 22.52 Setting up libquadmath0:amd64 (12.2.0-14) ... +#48 22.52 Setting up libpng16-16:amd64 (1.6.39-2) ... +#48 22.52 Setting up libmpc3:amd64 (1.3.1-1) ... +#48 22.52 Setting up libatomic1:amd64 (12.2.0-14) ... +#48 22.52 Setting up patch (2.7.6-7) ... +#48 22.53 Setting up fonts-dejavu-core (2.37-6) ... +#48 22.54 Setting up libgdbm-compat4:amd64 (1.23-3) ... +#48 22.54 Setting up libpcsclite1:amd64 (1.9.9-2) ... +#48 22.54 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... +#48 22.54 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#48 22.54 Setting up libwebp7:amd64 (1.2.4-0.2+deb12u1) ... +#48 22.55 Setting up libubsan1:amd64 (12.2.0-14) ... +#48 22.55 Setting up libgif7:amd64 (5.2.1-2.5) ... +#48 22.55 Setting up libnsl-dev:amd64 (1.3.0-2) ... +#48 22.55 Setting up libxshmfence1:amd64 (1.3-1) ... +#48 22.55 Setting up at-spi2-common (2.46.0-5) ... +#48 22.55 Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... +#48 22.56 Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... +#48 22.56 Setting up libasan8:amd64 (12.2.0-14) ... +#48 22.57 Setting up libasound2:amd64 (1.2.8-1+b1) ... +#48 22.57 Setting up libthai-data (0.1.29-1) ... +#48 22.57 Setting up libgtk2.0-common (2.24.33-2+deb12u1) ... +#48 22.57 Setting up libatk1.0-0:amd64 (2.46.0-5) ... +#48 22.57 Setting up libtsan2:amd64 (12.2.0-14) ... +#48 22.58 Setting up ca-certificates-java (20230710~deb12u1) ... +#48 22.59 No JRE found. Skipping Java certificates setup. +#48 22.59 Setting up libbinutils:amd64 (2.40-2) ... +#48 22.59 Setting up libisl23:amd64 (0.25-1.1) ... +#48 22.59 Setting up libc-dev-bin (2.36-9+deb12u9) ... +#48 22.59 Setting up libbsd0:amd64 (0.11.7-2) ... +#48 22.60 Setting up libdrm-common (2.4.114-1) ... +#48 22.61 Setting up libelf1:amd64 (0.188-2.1) ... +#48 22.61 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#48 22.61 Setting up libcc1-0:amd64 (12.2.0-14) ... +#48 22.61 Setting up libperl5.36:amd64 (5.36.0-7+deb12u1) ... +#48 22.62 Setting up liblsan0:amd64 (12.2.0-14) ... +#48 22.62 Setting up libitm1:amd64 (12.2.0-14) ... +#48 22.62 Setting up libctf0:amd64 (2.40-2) ... +#48 22.62 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... +#48 22.62 Setting up cpp-12 (12.2.0-14) ... +#48 22.63 Setting up libxcb1:amd64 (1.15-1) ... +#48 22.63 Setting up libxcb-xfixes0:amd64 (1.15-1) ... +#48 22.63 Setting up libxcb-render0:amd64 (1.15-1) ... +#48 22.63 Setting up fontconfig-config (2.14.1-4) ... +#48 22.71 debconf: unable to initialize frontend: Dialog +#48 22.71 debconf: (TERM is not set, so the dialog frontend is not usable.) +#48 22.71 debconf: falling back to frontend: Readline +#48 22.71 debconf: unable to initialize frontend: Readline +#48 22.71 debconf: (This frontend requires a controlling tty.) +#48 22.71 debconf: falling back to frontend: Teletype +#48 22.84 Setting up libxcb-glx0:amd64 (1.15-1) ... +#48 22.85 Setting up libedit2:amd64 (3.1-20221030-2) ... +#48 22.85 Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ... +#48 22.85 Setting up libnss3:amd64 (2:3.87.1-1+deb12u1) ... +#48 22.85 Setting up libxcb-shm0:amd64 (1.15-1) ... +#48 22.85 Setting up libxcb-present0:amd64 (1.15-1) ... +#48 22.85 Setting up libthai0:amd64 (0.1.29-1) ... +#48 22.86 Setting up perl (5.36.0-7+deb12u1) ... +#48 22.87 Setting up libgprofng0:amd64 (2.40-2) ... +#48 22.87 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#48 22.87 Setting up libxcb-sync1:amd64 (1.15-1) ... +#48 22.87 Setting up libgcc-12-dev:amd64 (12.2.0-14) ... +#48 22.87 Setting up shared-mime-info (2.2-1) ... +#48 ... + +#59 [opea/multimodalqna:latest comps-base 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/GenAIComps/requirements.txt +#0 1.593 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#0 1.800 Collecting pip +#0 1.957 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#0 1.961 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#0 2.303 Collecting setuptools +#0 2.342 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#0 2.425 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#0 2.595 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 11.6 MB/s eta 0:00:00 +#0 2.635 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#0 2.653 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 78.7 MB/s eta 0:00:00 +#0 2.789 Installing collected packages: setuptools, pip +#0 2.789 Attempting uninstall: setuptools +#0 2.792 Found existing installation: setuptools 65.5.1 +#0 2.811 Uninstalling setuptools-65.5.1: +#0 2.858 Successfully uninstalled setuptools-65.5.1 +#0 3.532 Attempting uninstall: pip +#0 3.536 Found existing installation: pip 24.0 +#0 3.589 Uninstalling pip-24.0: +#0 3.768 Successfully uninstalled pip-24.0 +#0 4.690 Successfully installed pip-25.0 setuptools-75.8.0 +#0 4.690 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#0 5.572 Collecting aiofiles (from -r /home/user/GenAIComps/requirements.txt (line 1)) +#0 5.628 Downloading aiofiles-24.1.0-py3-none-any.whl.metadata (10 kB) +#0 6.244 Collecting aiohttp (from -r /home/user/GenAIComps/requirements.txt (line 2)) +#0 6.253 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#0 6.377 Collecting docarray (from -r /home/user/GenAIComps/requirements.txt (line 3)) +#0 6.385 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#0 6.501 Collecting docx2txt (from -r /home/user/GenAIComps/requirements.txt (line 4)) +#0 6.509 Downloading docx2txt-0.8.tar.gz (2.8 kB) +#0 6.513 Preparing metadata (setup.py): started +#0 6.701 Preparing metadata (setup.py): finished with status 'done' +#0 6.787 Collecting fastapi (from -r /home/user/GenAIComps/requirements.txt (line 5)) +#0 6.795 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#0 6.854 Collecting httpx (from -r /home/user/GenAIComps/requirements.txt (line 6)) +#0 6.862 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#0 6.923 Collecting kubernetes (from -r /home/user/GenAIComps/requirements.txt (line 7)) +#0 6.931 Downloading kubernetes-32.0.0-py2.py3-none-any.whl.metadata (1.5 kB) +#0 7.084 Collecting langchain (from -r /home/user/GenAIComps/requirements.txt (line 8)) +#0 7.093 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) +#0 7.223 Collecting langchain-community (from -r /home/user/GenAIComps/requirements.txt (line 9)) +#0 7.234 Downloading langchain_community-0.3.16-py3-none-any.whl.metadata (2.9 kB) +#0 7.296 Collecting opentelemetry-api (from -r /home/user/GenAIComps/requirements.txt (line 10)) +#0 7.303 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) +#0 7.360 Collecting opentelemetry-exporter-otlp (from -r /home/user/GenAIComps/requirements.txt (line 11)) +#0 7.371 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#0 7.425 Collecting opentelemetry-sdk (from -r /home/user/GenAIComps/requirements.txt (line 12)) +#0 7.433 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) +#0 7.668 Collecting Pillow (from -r /home/user/GenAIComps/requirements.txt (line 13)) +#0 7.677 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#0 7.735 Collecting prometheus-fastapi-instrumentator (from -r /home/user/GenAIComps/requirements.txt (line 14)) +#0 7.743 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#0 7.804 Collecting pypdf (from -r /home/user/GenAIComps/requirements.txt (line 15)) +#0 7.812 Downloading pypdf-5.2.0-py3-none-any.whl.metadata (7.2 kB) +#0 7.911 Collecting python-multipart (from -r /home/user/GenAIComps/requirements.txt (line 16)) +#0 7.919 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) +#0 7.975 Collecting pyyaml (from -r /home/user/GenAIComps/requirements.txt (line 17)) +#0 7.983 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#0 8.044 Collecting requests (from -r /home/user/GenAIComps/requirements.txt (line 18)) +#0 8.052 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#0 8.080 Collecting shortuuid (from -r /home/user/GenAIComps/requirements.txt (line 19)) +#0 8.088 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#0 8.133 Collecting uvicorn (from -r /home/user/GenAIComps/requirements.txt (line 20)) +#0 8.141 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#0 8.174 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) +#0 8.185 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#0 8.209 Collecting aiosignal>=1.1.2 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) +#0 8.217 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#0 8.251 Collecting attrs>=17.3.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) +#0 8.259 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#0 8.361 Collecting frozenlist>=1.1.1 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) +#0 8.370 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#0 8.605 Collecting multidict<7.0,>=4.5 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) +#0 8.614 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#0 8.680 Collecting propcache>=0.2.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) +#0 8.688 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#0 9.018 Collecting yarl<2.0,>=1.17.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) +#0 9.029 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#0 9.261 Collecting numpy>=1.17.3 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#0 9.270 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#0 9.627 Collecting orjson>=3.8.2 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#0 9.639 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#0 9.808 Collecting pydantic>=1.10.8 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#0 9.816 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) +#0 9.903 Collecting rich>=13.1.0 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#0 9.911 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#0 9.977 Collecting types-requests>=2.28.11.6 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#0 9.985 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#0 10.02 Collecting typing-inspect>=0.8.0 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#0 10.03 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) +#59 10.10 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/GenAIComps/requirements.txt (line 5)) +#59 10.11 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#59 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 20.83 Selecting previously unselected package libxml2:amd64. +#49 20.83 Preparing to unpack .../059-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... +#49 20.83 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#49 20.89 Selecting previously unselected package shared-mime-info. +#49 20.89 Preparing to unpack .../060-shared-mime-info_2.2-1_amd64.deb ... +#49 20.90 Unpacking shared-mime-info (2.2-1) ... +#49 20.96 Selecting previously unselected package libjpeg62-turbo:amd64. +#49 20.96 Preparing to unpack .../061-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... +#49 20.96 Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... +#49 20.99 Selecting previously unselected package libdeflate0:amd64. +#49 20.99 Preparing to unpack .../062-libdeflate0_1.14-1_amd64.deb ... +#49 20.99 Unpacking libdeflate0:amd64 (1.14-1) ... +#49 21.00 Selecting previously unselected package libjbig0:amd64. +#49 21.01 Preparing to unpack .../063-libjbig0_2.1-6.1_amd64.deb ... +#49 21.01 Unpacking libjbig0:amd64 (2.1-6.1) ... +#49 21.02 Selecting previously unselected package liblerc4:amd64. +#49 21.02 Preparing to unpack .../064-liblerc4_4.0.0+ds-2_amd64.deb ... +#49 21.02 Unpacking liblerc4:amd64 (4.0.0+ds-2) ... +#49 21.05 Selecting previously unselected package libwebp7:amd64. +#49 21.05 Preparing to unpack .../065-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... +#49 21.05 Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... +#49 21.08 Selecting previously unselected package libtiff6:amd64. +#49 21.08 Preparing to unpack .../066-libtiff6_4.5.0-6+deb12u2_amd64.deb ... +#49 21.08 Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... +#49 21.11 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +#49 21.11 Preparing to unpack .../067-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u1_amd64.deb ... +#49 21.11 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... +#49 21.13 Selecting previously unselected package fontconfig. +#49 21.13 Preparing to unpack .../068-fontconfig_2.14.1-4_amd64.deb ... +#49 21.13 Unpacking fontconfig (2.14.1-4) ... +#49 21.16 Selecting previously unselected package libfribidi0:amd64. +#49 21.16 Preparing to unpack .../069-libfribidi0_1.0.8-2.1_amd64.deb ... +#49 21.16 Unpacking libfribidi0:amd64 (1.0.8-2.1) ... +#49 21.17 Selecting previously unselected package libgraphite2-3:amd64. +#49 21.17 Preparing to unpack .../070-libgraphite2-3_1.3.14-1_amd64.deb ... +#49 21.17 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +#49 21.19 Selecting previously unselected package libharfbuzz0b:amd64. +#49 21.20 Preparing to unpack .../071-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ... +#49 21.20 Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... +#49 21.25 Selecting previously unselected package libthai-data. +#49 21.25 Preparing to unpack .../072-libthai-data_0.1.29-1_all.deb ... +#49 21.25 Unpacking libthai-data (0.1.29-1) ... +#49 21.28 Selecting previously unselected package libdatrie1:amd64. +#49 21.28 Preparing to unpack .../073-libdatrie1_0.2.13-2+b1_amd64.deb ... +#49 21.28 Unpacking libdatrie1:amd64 (0.2.13-2+b1) ... +#49 21.30 Selecting previously unselected package libthai0:amd64. +#49 21.30 Preparing to unpack .../074-libthai0_0.1.29-1_amd64.deb ... +#49 21.30 Unpacking libthai0:amd64 (0.1.29-1) ... +#49 21.31 Selecting previously unselected package libpango-1.0-0:amd64. +#49 21.31 Preparing to unpack .../075-libpango-1.0-0_1.50.12+ds-1_amd64.deb ... +#49 21.31 Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ... +#49 21.34 Selecting previously unselected package libpangoft2-1.0-0:amd64. +#49 21.34 Preparing to unpack .../076-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ... +#49 21.34 Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... +#49 21.36 Selecting previously unselected package libpangocairo-1.0-0:amd64. +#49 21.36 Preparing to unpack .../077-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ... +#49 21.36 Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... +#49 21.37 Selecting previously unselected package librsvg2-2:amd64. +#49 21.37 Preparing to unpack .../078-librsvg2-2_2.54.7+dfsg-1~deb12u1_amd64.deb ... +#49 21.38 Unpacking librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ... +#49 21.59 Selecting previously unselected package libshine3:amd64. +#49 21.59 Preparing to unpack .../079-libshine3_3.1.1-2_amd64.deb ... +#49 21.59 Unpacking libshine3:amd64 (3.1.1-2) ... +#49 21.60 Selecting previously unselected package libsnappy1v5:amd64. +#49 21.60 Preparing to unpack .../080-libsnappy1v5_1.1.9-3_amd64.deb ... +#49 21.61 Unpacking libsnappy1v5:amd64 (1.1.9-3) ... +#49 21.62 Selecting previously unselected package libspeex1:amd64. +#49 21.62 Preparing to unpack .../081-libspeex1_1.2.1-2_amd64.deb ... +#49 21.62 Unpacking libspeex1:amd64 (1.2.1-2) ... +#49 21.64 Selecting previously unselected package libsvtav1enc1:amd64. +#49 21.64 Preparing to unpack .../082-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... +#49 21.64 Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... +#49 21.80 Selecting previously unselected package libgomp1:amd64. +#49 21.80 Preparing to unpack .../083-libgomp1_12.2.0-14_amd64.deb ... +#49 21.80 Unpacking libgomp1:amd64 (12.2.0-14) ... +#49 21.84 Selecting previously unselected package libsoxr0:amd64. +#49 21.84 Preparing to unpack .../084-libsoxr0_0.1.3-4_amd64.deb ... +#49 21.84 Unpacking libsoxr0:amd64 (0.1.3-4) ... +#49 21.86 Selecting previously unselected package libswresample4:amd64. +#49 21.86 Preparing to unpack .../085-libswresample4_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 21.86 Unpacking libswresample4:amd64 (7:5.1.6-0+deb12u1) ... +#49 21.88 Selecting previously unselected package libogg0:amd64. +#49 21.88 Preparing to unpack .../086-libogg0_1.3.5-3_amd64.deb ... +#49 21.88 Unpacking libogg0:amd64 (1.3.5-3) ... +#49 21.89 Selecting previously unselected package libtheora0:amd64. +#49 21.89 Preparing to unpack .../087-libtheora0_1.1.1+dfsg.1-16.1+b1_amd64.deb ... +#49 21.89 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-16.1+b1) ... +#49 21.92 Selecting previously unselected package libtwolame0:amd64. +#49 21.92 Preparing to unpack .../088-libtwolame0_0.4.0-2_amd64.deb ... +#49 21.92 Unpacking libtwolame0:amd64 (0.4.0-2) ... +#49 21.93 Selecting previously unselected package libvorbis0a:amd64. +#49 21.93 Preparing to unpack .../089-libvorbis0a_1.3.7-1_amd64.deb ... +#49 21.93 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +#49 21.95 Selecting previously unselected package libvorbisenc2:amd64. +#49 21.95 Preparing to unpack .../090-libvorbisenc2_1.3.7-1_amd64.deb ... +#49 21.95 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +#49 21.97 Selecting previously unselected package libvpx7:amd64. +#49 21.97 Preparing to unpack .../091-libvpx7_1.12.0-1+deb12u3_amd64.deb ... +#49 21.97 Unpacking libvpx7:amd64 (1.12.0-1+deb12u3) ... +#49 22.06 Selecting previously unselected package libwebpmux3:amd64. +#49 22.06 Preparing to unpack .../092-libwebpmux3_1.2.4-0.2+deb12u1_amd64.deb ... +#49 22.06 Unpacking libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... +#49 22.08 Selecting previously unselected package libx264-164:amd64. +#49 22.08 Preparing to unpack .../093-libx264-164_2%3a0.164.3095+gitbaee400-3_amd64.deb ... +#49 22.08 Unpacking libx264-164:amd64 (2:0.164.3095+gitbaee400-3) ... +#49 22.13 Selecting previously unselected package libnuma1:amd64. +#49 22.13 Preparing to unpack .../094-libnuma1_2.0.16-1_amd64.deb ... +#49 22.14 Unpacking libnuma1:amd64 (2.0.16-1) ... +#49 22.15 Selecting previously unselected package libx265-199:amd64. +#49 22.15 Preparing to unpack .../095-libx265-199_3.5-2+b1_amd64.deb ... +#49 22.15 Unpacking libx265-199:amd64 (3.5-2+b1) ... +#49 22.27 Selecting previously unselected package libxvidcore4:amd64. +#49 22.27 Preparing to unpack .../096-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +#49 22.27 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +#49 22.30 Selecting previously unselected package libzvbi-common. +#49 22.30 Preparing to unpack .../097-libzvbi-common_0.2.41-1_all.deb ... +#49 22.30 Unpacking libzvbi-common (0.2.41-1) ... +#49 22.32 Selecting previously unselected package libzvbi0:amd64. +#49 22.32 Preparing to unpack .../098-libzvbi0_0.2.41-1_amd64.deb ... +#49 22.32 Unpacking libzvbi0:amd64 (0.2.41-1) ... +#49 22.36 Selecting previously unselected package libavcodec59:amd64. +#49 22.36 Preparing to unpack .../099-libavcodec59_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 22.36 Unpacking libavcodec59:amd64 (7:5.1.6-0+deb12u1) ... +#49 22.72 Selecting previously unselected package libraw1394-11:amd64. +#49 22.72 Preparing to unpack .../100-libraw1394-11_2.1.2-2_amd64.deb ... +#49 22.72 Unpacking libraw1394-11:amd64 (2.1.2-2) ... +#49 22.74 Selecting previously unselected package libavc1394-0:amd64. +#49 22.74 Preparing to unpack .../101-libavc1394-0_0.5.4-5_amd64.deb ... +#49 22.74 Unpacking libavc1394-0:amd64 (0.5.4-5) ... +#49 22.76 Selecting previously unselected package libass9:amd64. +#49 22.76 Preparing to unpack .../102-libass9_1%3a0.17.1-1_amd64.deb ... +#49 22.76 Unpacking libass9:amd64 (1:0.17.1-1) ... +#49 22.78 Selecting previously unselected package libudfread0:amd64. +#49 22.78 Preparing to unpack .../103-libudfread0_1.1.2-1_amd64.deb ... +#49 22.78 Unpacking libudfread0:amd64 (1.1.2-1) ... +#49 22.79 Selecting previously unselected package libbluray2:amd64. +#49 22.79 Preparing to unpack .../104-libbluray2_1%3a1.3.4-1_amd64.deb ... +#49 22.79 Unpacking libbluray2:amd64 (1:1.3.4-1) ... +#49 22.81 Selecting previously unselected package libchromaprint1:amd64. +#49 22.81 Preparing to unpack .../105-libchromaprint1_1.5.1-2+b1_amd64.deb ... +#49 22.81 Unpacking libchromaprint1:amd64 (1.5.1-2+b1) ... +#49 22.83 Selecting previously unselected package libgme0:amd64. +#49 22.83 Preparing to unpack .../106-libgme0_0.6.3-6_amd64.deb ... +#49 22.83 Unpacking libgme0:amd64 (0.6.3-6) ... +#49 22.85 Selecting previously unselected package libmpg123-0:amd64. +#49 22.85 Preparing to unpack .../107-libmpg123-0_1.31.2-1+deb12u1_amd64.deb ... +#49 22.85 Unpacking libmpg123-0:amd64 (1.31.2-1+deb12u1) ... +#49 22.88 Selecting previously unselected package libvorbisfile3:amd64. +#49 22.88 Preparing to unpack .../108-libvorbisfile3_1.3.7-1_amd64.deb ... +#49 22.88 Unpacking libvorbisfile3:amd64 (1.3.7-1) ... +#49 22.89 Selecting previously unselected package libopenmpt0:amd64. +#49 22.89 Preparing to unpack .../109-libopenmpt0_0.6.9-1_amd64.deb ... +#49 22.89 Unpacking libopenmpt0:amd64 (0.6.9-1) ... +#49 22.95 Selecting previously unselected package librabbitmq4:amd64. +#49 22.95 Preparing to unpack .../110-librabbitmq4_0.11.0-1+b1_amd64.deb ... +#49 22.95 Unpacking librabbitmq4:amd64 (0.11.0-1+b1) ... +#49 22.97 Selecting previously unselected package libcjson1:amd64. +#49 22.97 Preparing to unpack .../111-libcjson1_1.7.15-1+deb12u2_amd64.deb ... +#49 22.97 Unpacking libcjson1:amd64 (1.7.15-1+deb12u2) ... +#49 22.98 Selecting previously unselected package libmbedcrypto7:amd64. +#49 22.98 Preparing to unpack .../112-libmbedcrypto7_2.28.3-1_amd64.deb ... +#49 22.99 Unpacking libmbedcrypto7:amd64 (2.28.3-1) ... +#49 23.02 Selecting previously unselected package librist4:amd64. +#49 23.02 Preparing to unpack .../113-librist4_0.2.7+dfsg-1_amd64.deb ... +#49 23.02 Unpacking librist4:amd64 (0.2.7+dfsg-1) ... +#49 23.04 Selecting previously unselected package libsrt1.5-gnutls:amd64. +#49 23.04 Preparing to unpack .../114-libsrt1.5-gnutls_1.5.1-1+deb12u1_amd64.deb ... +#49 23.04 Unpacking libsrt1.5-gnutls:amd64 (1.5.1-1+deb12u1) ... +#49 23.07 Selecting previously unselected package libssh-gcrypt-4:amd64. +#49 23.07 Preparing to unpack .../115-libssh-gcrypt-4_0.10.6-0+deb12u1_amd64.deb ... +#49 23.07 Unpacking libssh-gcrypt-4:amd64 (0.10.6-0+deb12u1) ... +#49 23.10 Selecting previously unselected package libnorm1:amd64. +#49 23.10 Preparing to unpack .../116-libnorm1_1.5.9+dfsg-2_amd64.deb ... +#49 23.10 Unpacking libnorm1:amd64 (1.5.9+dfsg-2) ... +#49 23.13 Selecting previously unselected package libpgm-5.3-0:amd64. +#49 23.13 Preparing to unpack .../117-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ... +#49 23.13 Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#49 23.16 Selecting previously unselected package libsodium23:amd64. +#49 23.16 Preparing to unpack .../118-libsodium23_1.0.18-1_amd64.deb ... +#49 23.16 Unpacking libsodium23:amd64 (1.0.18-1) ... +#49 23.18 Selecting previously unselected package libzmq5:amd64. +#49 23.18 Preparing to unpack .../119-libzmq5_4.3.4-6_amd64.deb ... +#49 23.18 Unpacking libzmq5:amd64 (4.3.4-6) ... +#49 23.21 Selecting previously unselected package libavformat59:amd64. +#49 23.21 Preparing to unpack .../120-libavformat59_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 23.22 Unpacking libavformat59:amd64 (7:5.1.6-0+deb12u1) ... +#49 23.30 Selecting previously unselected package libbs2b0:amd64. +#49 23.30 Preparing to unpack .../121-libbs2b0_3.1.0+dfsg-7_amd64.deb ... +#49 23.30 Unpacking libbs2b0:amd64 (3.1.0+dfsg-7) ... +#49 23.32 Selecting previously unselected package libflite1:amd64. +#49 23.32 Preparing to unpack .../122-libflite1_2.2-5_amd64.deb ... +#49 23.32 Unpacking libflite1:amd64 (2.2-5) ... +#49 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 1.698 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#54 1.835 Collecting pip +#54 1.985 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#54 1.988 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#54 2.259 Collecting setuptools +#54 2.302 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#54 2.405 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#54 3.628 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 1.5 MB/s eta 0:00:00 +#54 3.669 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#54 4.599 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 1.3 MB/s eta 0:00:00 +#54 4.771 Installing collected packages: setuptools, pip +#54 4.771 Attempting uninstall: setuptools +#54 4.774 Found existing installation: setuptools 65.5.1 +#54 4.795 Uninstalling setuptools-65.5.1: +#54 4.849 Successfully uninstalled setuptools-65.5.1 +#54 5.517 Attempting uninstall: pip +#54 5.520 Found existing installation: pip 24.0 +#54 5.578 Uninstalling pip-24.0: +#54 5.778 Successfully uninstalled pip-24.0 +#54 6.611 Successfully installed pip-25.0 setuptools-75.8.0 +#54 6.611 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#54 7.375 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu +#54 8.097 Collecting torch +#54 8.104 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (26 kB) +#54 8.649 Collecting torchvision +#54 8.655 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (6.1 kB) +#54 8.948 Collecting filelock (from torch) +#54 9.074 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#54 9.213 Collecting typing-extensions>=4.10.0 (from torch) +#54 9.221 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#54 9.513 Collecting networkx (from torch) +#54 9.548 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#54 9.850 Collecting jinja2 (from torch) +#54 9.883 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) +#54 10.04 Collecting fsspec (from torch) +#54 10.07 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) +#54 10.26 Collecting sympy==1.13.1 (from torch) +#54 10.27 Downloading https://download.pytorch.org/whl/sympy-1.13.1-py3-none-any.whl (6.2 MB) +#54 10.30 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 185.7 MB/s eta 0:00:00 +#54 10.61 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch) +#54 10.61 Downloading https://download.pytorch.org/whl/mpmath-1.3.0-py3-none-any.whl (536 kB) +#54 10.62 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 149.0 MB/s eta 0:00:00 +#54 11.01 Collecting numpy (from torchvision) +#54 11.05 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#54 11.61 Collecting pillow!=8.3.*,>=5.3.0 (from torchvision) +#54 11.65 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#54 11.86 Collecting MarkupSafe>=2.0 (from jinja2->torch) +#54 11.89 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#54 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 22.55 Selecting previously unselected package libelf1:amd64. +#42 22.55 Preparing to unpack .../082-libelf1_0.188-2.1_amd64.deb ... +#42 22.55 Unpacking libelf1:amd64 (0.188-2.1) ... +#42 22.58 Selecting previously unselected package libdw1:amd64. +#42 22.58 Preparing to unpack .../083-libdw1_0.188-2.1_amd64.deb ... +#42 22.59 Unpacking libdw1:amd64 (0.188-2.1) ... +#42 22.62 Selecting previously unselected package libunwind8:amd64. +#42 22.62 Preparing to unpack .../084-libunwind8_1.6.2-3_amd64.deb ... +#42 22.62 Unpacking libunwind8:amd64 (1.6.2-3) ... +#42 22.64 Selecting previously unselected package libcap2-bin. +#42 22.64 Preparing to unpack .../085-libcap2-bin_1%3a2.66-4_amd64.deb ... +#42 22.64 Unpacking libcap2-bin (1:2.66-4) ... +#42 22.66 Selecting previously unselected package libgstreamer1.0-0:amd64. +#42 22.66 Preparing to unpack .../086-libgstreamer1.0-0_1.22.0-2+deb12u1_amd64.deb ... +#42 22.67 Unpacking libgstreamer1.0-0:amd64 (1.22.0-2+deb12u1) ... +#42 22.76 Selecting previously unselected package liborc-0.4-0:amd64. +#42 22.76 Preparing to unpack .../087-liborc-0.4-0_1%3a0.4.33-2_amd64.deb ... +#42 22.76 Unpacking liborc-0.4-0:amd64 (1:0.4.33-2) ... +#42 22.79 Selecting previously unselected package iso-codes. +#42 22.79 Preparing to unpack .../088-iso-codes_4.15.0-1_all.deb ... +#42 22.79 Unpacking iso-codes (4.15.0-1) ... +#42 23.07 Selecting previously unselected package libgstreamer-plugins-base1.0-0:amd64. +#42 23.07 Preparing to unpack .../089-libgstreamer-plugins-base1.0-0_1.22.0-3+deb12u4_amd64.deb ... +#42 23.07 Unpacking libgstreamer-plugins-base1.0-0:amd64 (1.22.0-3+deb12u4) ... +#42 23.16 Selecting previously unselected package libharfbuzz0b:amd64. +#42 23.16 Preparing to unpack .../090-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ... +#42 23.16 Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... +#42 23.21 Selecting previously unselected package libharfbuzz-icu0:amd64. +#42 23.21 Preparing to unpack .../091-libharfbuzz-icu0_6.0.0+dfsg-3_amd64.deb ... +#42 23.21 Unpacking libharfbuzz-icu0:amd64 (6.0.0+dfsg-3) ... +#42 23.25 Selecting previously unselected package libhunspell-1.7-0:amd64. +#42 23.25 Preparing to unpack .../092-libhunspell-1.7-0_1.7.1-1_amd64.deb ... +#42 23.25 Unpacking libhunspell-1.7-0:amd64 (1.7.1-1) ... +#42 23.28 Selecting previously unselected package libhyphen0:amd64. +#42 23.28 Preparing to unpack .../093-libhyphen0_2.8.8-7_amd64.deb ... +#42 23.28 Unpacking libhyphen0:amd64 (2.8.8-7) ... +#42 23.30 Selecting previously unselected package x11-common. +#42 23.30 Preparing to unpack .../094-x11-common_1%3a7.7+23_all.deb ... +#42 23.30 Unpacking x11-common (1:7.7+23) ... +#42 23.32 Selecting previously unselected package libice6:amd64. +#42 23.32 Preparing to unpack .../095-libice6_2%3a1.0.10-1_amd64.deb ... +#42 23.32 Unpacking libice6:amd64 (2:1.0.10-1) ... +#42 23.34 Selecting previously unselected package libjpeg62-turbo:amd64. +#42 23.34 Preparing to unpack .../096-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... +#42 23.34 Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... +#42 23.37 Selecting previously unselected package liblcms2-2:amd64. +#42 23.37 Preparing to unpack .../097-liblcms2-2_2.14-2_amd64.deb ... +#42 23.37 Unpacking liblcms2-2:amd64 (2.14-2) ... +#42 23.40 Selecting previously unselected package libmythes-1.2-0:amd64. +#42 23.40 Preparing to unpack .../098-libmythes-1.2-0_2%3a1.2.5-1_amd64.deb ... +#42 23.40 Unpacking libmythes-1.2-0:amd64 (2:1.2.5-1) ... +#42 23.42 Selecting previously unselected package libnspr4:amd64. +#42 23.42 Preparing to unpack .../099-libnspr4_2%3a4.35-1_amd64.deb ... +#42 23.42 Unpacking libnspr4:amd64 (2:4.35-1) ... +#42 23.44 Selecting previously unselected package libnss3:amd64. +#42 23.44 Preparing to unpack .../100-libnss3_2%3a3.87.1-1+deb12u1_amd64.deb ... +#42 23.44 Unpacking libnss3:amd64 (2:3.87.1-1+deb12u1) ... +#42 23.55 Selecting previously unselected package libnumbertext-1.0-0:amd64. +#42 23.55 Preparing to unpack .../101-libnumbertext-1.0-0_1.0.11-1_amd64.deb ... +#42 23.56 Unpacking libnumbertext-1.0-0:amd64 (1.0.11-1) ... +#42 23.59 Selecting previously unselected package libopenjp2-7:amd64. +#42 23.60 Preparing to unpack .../102-libopenjp2-7_2.5.0-2+deb12u1_amd64.deb ... +#42 23.60 Unpacking libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... +#42 23.62 Selecting previously unselected package libboost-filesystem1.74.0:amd64. +#42 23.62 Preparing to unpack .../103-libboost-filesystem1.74.0_1.74.0+ds1-21_amd64.deb ... +#42 23.62 Unpacking libboost-filesystem1.74.0:amd64 (1.74.0+ds1-21) ... +#42 23.65 Selecting previously unselected package libboost-iostreams1.74.0:amd64. +#42 23.66 Preparing to unpack .../104-libboost-iostreams1.74.0_1.74.0+ds1-21_amd64.deb ... +#42 23.66 Unpacking libboost-iostreams1.74.0:amd64 (1.74.0+ds1-21) ... +#42 23.69 Selecting previously unselected package liborcus-parser-0.17-0:amd64. +#42 23.69 Preparing to unpack .../105-liborcus-parser-0.17-0_0.17.2-2+b2_amd64.deb ... +#42 23.69 Unpacking liborcus-parser-0.17-0:amd64 (0.17.2-2+b2) ... +#42 23.71 Selecting previously unselected package liborcus-0.17-0:amd64. +#42 23.71 Preparing to unpack .../106-liborcus-0.17-0_0.17.2-2+b2_amd64.deb ... +#42 23.71 Unpacking liborcus-0.17-0:amd64 (0.17.2-2+b2) ... +#42 23.75 Selecting previously unselected package libdeflate0:amd64. +#42 23.75 Preparing to unpack .../107-libdeflate0_1.14-1_amd64.deb ... +#42 23.75 Unpacking libdeflate0:amd64 (1.14-1) ... +#42 23.77 Selecting previously unselected package libjbig0:amd64. +#42 23.77 Preparing to unpack .../108-libjbig0_2.1-6.1_amd64.deb ... +#42 23.77 Unpacking libjbig0:amd64 (2.1-6.1) ... +#42 23.79 Selecting previously unselected package liblerc4:amd64. +#42 23.79 Preparing to unpack .../109-liblerc4_4.0.0+ds-2_amd64.deb ... +#42 23.79 Unpacking liblerc4:amd64 (4.0.0+ds-2) ... +#42 23.81 Selecting previously unselected package libwebp7:amd64. +#42 23.81 Preparing to unpack .../110-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... +#42 23.81 Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... +#42 23.85 Selecting previously unselected package libtiff6:amd64. +#42 23.85 Preparing to unpack .../111-libtiff6_4.5.0-6+deb12u2_amd64.deb ... +#42 23.85 Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... +#42 23.88 Selecting previously unselected package libpoppler126:amd64. +#42 23.88 Preparing to unpack .../112-libpoppler126_22.12.0-2+b1_amd64.deb ... +#42 23.88 Unpacking libpoppler126:amd64 (22.12.0-2+b1) ... +#42 23.97 Selecting previously unselected package libxslt1.1:amd64. +#42 23.97 Preparing to unpack .../113-libxslt1.1_1.1.35-1_amd64.deb ... +#42 23.97 Unpacking libxslt1.1:amd64 (1.1.35-1) ... +#42 24.00 Selecting previously unselected package libyajl2:amd64. +#42 24.00 Preparing to unpack .../114-libyajl2_2.1.0-3+deb12u2_amd64.deb ... +#42 24.00 Unpacking libyajl2:amd64 (2.1.0-3+deb12u2) ... +#42 24.02 Selecting previously unselected package libraptor2-0:amd64. +#42 24.02 Preparing to unpack .../115-libraptor2-0_2.0.15-4_amd64.deb ... +#42 24.02 Unpacking libraptor2-0:amd64 (2.0.15-4) ... +#42 24.04 Selecting previously unselected package libltdl7:amd64. +#42 24.05 Preparing to unpack .../116-libltdl7_2.4.7-7~deb12u1_amd64.deb ... +#42 24.05 Unpacking libltdl7:amd64 (2.4.7-7~deb12u1) ... +#42 24.07 Selecting previously unselected package libmhash2:amd64. +#42 24.07 Preparing to unpack .../117-libmhash2_0.9.9.9-9_amd64.deb ... +#42 24.07 Unpacking libmhash2:amd64 (0.9.9.9-9) ... +#42 24.09 Selecting previously unselected package librasqal3:amd64. +#42 24.09 Preparing to unpack .../118-librasqal3_0.9.33-2_amd64.deb ... +#42 24.09 Unpacking librasqal3:amd64 (0.9.33-2) ... +#42 24.12 Selecting previously unselected package librdf0:amd64. +#42 24.12 Preparing to unpack .../119-librdf0_1.0.17-3_amd64.deb ... +#42 24.12 Unpacking librdf0:amd64 (1.0.17-3) ... +#42 24.14 Selecting previously unselected package librevenge-0.0-0:amd64. +#42 24.14 Preparing to unpack .../120-librevenge-0.0-0_0.0.5-3_amd64.deb ... +#42 24.14 Unpacking librevenge-0.0-0:amd64 (0.0.5-3) ... +#42 24.18 Selecting previously unselected package libsm6:amd64. +#42 24.18 Preparing to unpack .../121-libsm6_2%3a1.2.3-1_amd64.deb ... +#42 24.18 Unpacking libsm6:amd64 (2:1.2.3-1) ... +#42 24.20 Selecting previously unselected package libx11-xcb1:amd64. +#42 24.20 Preparing to unpack .../122-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... +#42 24.20 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#42 24.22 Selecting previously unselected package libxinerama1:amd64. +#42 24.22 Preparing to unpack .../123-libxinerama1_2%3a1.1.4-3_amd64.deb ... +#42 24.22 Unpacking libxinerama1:amd64 (2:1.1.4-3) ... +#42 24.23 Selecting previously unselected package libxmlsec1:amd64. +#42 24.24 Preparing to unpack .../124-libxmlsec1_1.2.37-2_amd64.deb ... +#42 24.24 Unpacking libxmlsec1:amd64 (1.2.37-2) ... +#42 24.26 Selecting previously unselected package libxmlsec1-nss:amd64. +#42 24.26 Preparing to unpack .../125-libxmlsec1-nss_1.2.37-2_amd64.deb ... +#42 24.26 Unpacking libxmlsec1-nss:amd64 (1.2.37-2) ... +#42 24.28 Selecting previously unselected package libxrandr2:amd64. +#42 24.28 Preparing to unpack .../126-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ... +#42 24.28 Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ... +#42 24.30 Selecting previously unselected package libzxing2:amd64. +#42 24.30 Preparing to unpack .../127-libzxing2_1.4.0-3+b1_amd64.deb ... +#42 24.30 Unpacking libzxing2:amd64 (1.4.0-3+b1) ... +#42 24.35 Selecting previously unselected package libreoffice-core. +#42 24.35 Preparing to unpack .../128-libreoffice-core_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 24.36 Unpacking libreoffice-core (4:7.4.7-1+deb12u6) ... +#42 25.07 Selecting previously unselected package libreoffice-base-core. +#42 25.08 Preparing to unpack .../129-libreoffice-base-core_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 25.08 Unpacking libreoffice-base-core (4:7.4.7-1+deb12u6) ... +#42 25.15 Selecting previously unselected package libreoffice-base-drivers. +#42 25.15 Preparing to unpack .../130-libreoffice-base-drivers_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 25.16 Unpacking libreoffice-base-drivers (4:7.4.7-1+deb12u6) ... +#42 25.21 Selecting previously unselected package libreoffice-base. +#42 25.22 Preparing to unpack .../131-libreoffice-base_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 25.22 No diversion 'diversion of /usr/lib/libreoffice/share/basic/dialog.xlc to /usr/lib/libreoffice/share/basic/dialog.xlc.noaccess by libreoffice-base', none removed. +#42 25.23 No diversion 'diversion of /usr/lib/libreoffice/share/basic/script.xlc to /usr/lib/libreoffice/share/basic/script.xlc.noaccess by libreoffice-base', none removed. +#42 25.24 Unpacking libreoffice-base (4:7.4.7-1+deb12u6) ... +#42 25.37 Selecting previously unselected package libpython3.11-minimal:amd64. +#42 25.37 Preparing to unpack .../132-libpython3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... +#42 25.37 Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... +#42 25.44 Selecting previously unselected package python3.11-minimal. +#42 25.45 Preparing to unpack .../133-python3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... +#42 25.45 Unpacking python3.11-minimal (3.11.2-6+deb12u5) ... +#42 25.63 Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... +#42 25.63 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... +#42 25.63 Setting up python3.11-minimal (3.11.2-6+deb12u5) ... +#42 26.28 Selecting previously unselected package python3-minimal. +#42 26.28 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 14934 files and directories currently installed.) +#42 26.29 Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ... +#42 26.29 Unpacking python3-minimal (3.11.2-1+b1) ... +#42 26.31 Selecting previously unselected package media-types. +#42 26.31 Preparing to unpack .../media-types_10.0.0_all.deb ... +#42 26.31 Unpacking media-types (10.0.0) ... +#42 26.32 Selecting previously unselected package libpython3.11-stdlib:amd64. +#42 26.33 Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u5_amd64.deb ... +#42 26.33 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... +#42 ... + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 15.27 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) +#37 15.28 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#37 15.32 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) +#37 15.33 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) +#37 15.37 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) +#37 15.38 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#37 15.49 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/lvms/src/requirements.txt (line 8)) +#37 15.50 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) +#37 15.58 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 15.59 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) +#37 15.79 Collecting torch>=1.11 (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 15.79 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl.metadata (28 kB) +#37 15.93 Collecting optimum-habana (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 15.94 Downloading optimum_habana-1.15.0-py3-none-any.whl.metadata (28 kB) +#37 15.97 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 15.98 Downloading transformers-4.45.2-py3-none-any.whl.metadata (44 kB) +#37 16.12 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/lvms/src/requirements.txt (line 10)) +#37 16.13 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#37 16.20 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/lvms/src/requirements.txt (line 14)) +#37 16.21 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#37 16.24 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/lvms/src/requirements.txt (line 14)) +#37 16.25 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#37 16.40 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) +#37 16.41 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#37 16.50 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 16.51 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#37 16.55 Collecting aiosignal>=1.1.2 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 16.56 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#37 16.61 Collecting attrs>=17.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 16.62 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#37 16.77 Collecting frozenlist>=1.1.1 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 16.78 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#37 17.02 Collecting multidict<7.0,>=4.5 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 17.03 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#37 17.10 Collecting propcache>=0.2.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 17.11 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#37 17.48 Collecting yarl<2.0,>=1.17.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 17.48 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#37 17.56 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) +#37 17.57 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#37 17.66 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 17.67 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) +#37 17.79 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 17.80 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) +#37 17.85 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 17.85 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) +#37 18.01 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 18.02 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#37 18.08 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 18.08 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) +#37 18.13 Collecting httpx<1,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 18.14 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#37 18.25 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 18.26 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) +#37 18.36 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 18.37 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) +#37 18.44 Collecting python-dateutil>=2.8.2 (from pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 18.44 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#37 18.58 Collecting pytz>=2020.1 (from pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 18.58 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) +#37 18.63 Collecting tzdata>=2022.7 (from pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 18.64 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) +#37 18.78 Collecting charset-normalizer<4,>=2 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 18.79 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#37 18.83 Collecting idna<4,>=2.5 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 18.84 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#37 18.90 Collecting urllib3<3,>=1.21.1 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 18.91 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#37 18.95 Collecting certifi>=2017.4.17 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 18.95 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#37 18.99 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 19.00 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#37 19.06 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 19.07 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#37 19.12 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/requirements.txt (line 3)) +#37 19.13 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#37 19.22 Collecting networkx (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.23 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#37 19.28 Collecting jinja2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.29 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) +#37 19.34 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.34 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#37 19.38 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.39 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#37 19.43 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.44 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#37 19.48 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.49 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#37 19.54 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.54 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#37 19.59 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.60 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#37 19.65 Collecting nvidia-curand-cu12==10.3.5.147 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.66 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#37 19.70 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.72 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#37 19.76 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.77 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#37 19.81 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.81 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) +#37 19.85 Collecting nvidia-nccl-cu12==2.21.5 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.86 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) +#37 19.89 Collecting nvidia-nvtx-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.90 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) +#37 19.93 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.94 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#37 19.98 Collecting triton==3.2.0 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 19.99 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) +#37 20.04 Collecting sympy==1.13.1 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 20.04 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) +#37 20.14 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 20.15 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) +#37 20.74 Collecting regex!=2019.12.17 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 20.75 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#37 21.03 Collecting safetensors>=0.4.1 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 21.03 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#37 21.32 Collecting tokenizers<0.21,>=0.20 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 21.33 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) +#37 21.43 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 21.44 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) +#37 21.50 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 21.51 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) +#37 21.55 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 21.56 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) +#37 21.84 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 21.85 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#37 21.92 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 21.92 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) +#37 21.97 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 21.98 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) +#37 22.02 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 22.03 Downloading pycollada-0.8.tar.gz (108 kB) +#37 22.08 Preparing metadata (setup.py): started +#37 22.27 Preparing metadata (setup.py): finished with status 'done' +#37 22.27 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) (75.8.0) +#37 22.45 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 22.46 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) +#37 22.52 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 22.53 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) +#37 22.65 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 22.66 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) +#37 22.73 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 22.74 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#37 22.85 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 22.86 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) +#37 22.92 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 22.93 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) +#37 22.99 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 23.00 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) +#37 23.09 Collecting accelerate<0.34.0,>=0.33.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 23.09 Downloading accelerate-0.33.0-py3-none-any.whl.metadata (18 kB) +#37 23.16 Collecting diffusers<0.32.0,>=0.31.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 23.17 Downloading diffusers-0.31.0-py3-none-any.whl.metadata (18 kB) +#37 23.31 Collecting sentence-transformers==3.2.1 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 23.32 Downloading sentence_transformers-3.2.1-py3-none-any.whl.metadata (10 kB) +#37 23.49 Collecting scikit-learn (from sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 23.50 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) +#37 23.56 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 23.57 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#37 23.73 Collecting psutil (from accelerate<0.34.0,>=0.33.0->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 23.74 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) +#37 23.84 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/requirements.txt (line 3)) +#37 23.84 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#37 24.02 Collecting httpcore==1.* (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) +#37 24.03 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#37 24.22 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 24.23 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#37 24.38 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) +#37 24.38 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#37 24.65 Collecting MarkupSafe>=2.0 (from jinja2->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 24.66 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#37 24.73 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 24.74 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) +#37 24.81 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 24.82 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) +#37 25.19 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) +#37 25.21 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) +#37 ... + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 23.46 Setting up libdpkg-perl (1.21.22) ... +#48 23.46 Setting up libxcb-dri2-0:amd64 (1.15-1) ... +#48 23.46 Setting up libdrm2:amd64 (2.4.114-1+b1) ... +#48 23.47 Setting up libxcb-randr0:amd64 (1.15-1) ... +#48 23.47 Setting up cpp (4:12.2.0-3) ... +#48 23.47 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... +#48 23.47 Setting up libc6-dev:amd64 (2.36-9+deb12u9) ... +#48 23.48 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#48 23.48 Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... +#48 23.48 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... +#48 23.49 Setting up libfontconfig1:amd64 (2.14.1-4) ... +#48 23.49 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +#48 23.50 Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ... +#48 23.50 Setting up binutils-x86-64-linux-gnu (2.40-2) ... +#48 23.50 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#48 23.50 Setting up libxcb-dri3-0:amd64 (1.15-1) ... +#48 23.50 Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ... +#48 23.50 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#48 23.51 Setting up fontconfig (2.14.1-4) ... +#48 23.51 Regenerating fonts cache... done. +#48 25.52 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#48 25.53 Setting up libxdamage1:amd64 (1:1.1.6-1) ... +#48 25.53 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... +#48 25.53 Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... +#48 25.53 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#48 25.53 Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ... +#48 25.53 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... +#48 25.54 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#48 25.54 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... +#48 25.54 Setting up binutils (2.40-2) ... +#48 25.55 Setting up libcairo2:amd64 (1.16.0-7) ... +#48 25.55 Setting up dpkg-dev (1.21.22) ... +#48 25.55 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#48 25.55 Setting up adwaita-icon-theme (43-1) ... +#48 25.61 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +#48 25.61 Setting up gcc-12 (12.2.0-14) ... +#48 25.62 Setting up libxfixes3:amd64 (1:6.0.0-2) ... +#48 25.62 Setting up libxinerama1:amd64 (2:1.1.4-3) ... +#48 25.62 Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ... +#48 25.62 Setting up libcups2:amd64 (2.4.2-3+deb12u8) ... +#48 25.62 Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... +#48 25.63 Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... +#48 25.63 Setting up g++-12 (12.2.0-14) ... +#48 25.63 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#48 25.63 Setting up libxi6:amd64 (2:1.8-1+b1) ... +#48 25.64 Setting up libglx0:amd64 (1.6.0-1) ... +#48 25.64 Setting up libxtst6:amd64 (2:1.2.3-1.1) ... +#48 25.64 Setting up libxcursor1:amd64 (1:1.2.1-1) ... +#48 25.64 Setting up gcc (4:12.2.0-3) ... +#48 25.65 Setting up libgl1:amd64 (1.6.0-1) ... +#48 25.65 Setting up openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... +#48 25.68 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode +#48 25.68 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/jpackage to provide /usr/bin/jpackage (jpackage) in auto mode +#48 25.69 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode +#48 25.69 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode +#48 25.69 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode +#48 25.70 Setting up libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... +#48 25.70 Setting up g++ (4:12.2.0-3) ... +#48 25.70 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode +#48 25.70 Setting up build-essential (12.9) ... +#48 25.70 Setting up libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... +#48 25.72 Processing triggers for libc-bin (2.36-9+deb12u9) ... +#48 25.73 Processing triggers for ca-certificates-java (20230710~deb12u1) ... +#48 25.93 Adding debian:ACCVRAIZ1.pem +#48 25.93 Adding debian:AC_RAIZ_FNMT-RCM.pem +#48 25.95 Adding debian:AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem +#48 25.95 Adding debian:ANF_Secure_Server_Root_CA.pem +#48 25.95 Adding debian:Actalis_Authentication_Root_CA.pem +#48 25.95 Adding debian:AffirmTrust_Commercial.pem +#48 25.96 Adding debian:AffirmTrust_Networking.pem +#48 25.96 Adding debian:AffirmTrust_Premium.pem +#48 25.96 Adding debian:AffirmTrust_Premium_ECC.pem +#48 25.96 Adding debian:Amazon_Root_CA_1.pem +#48 25.96 Adding debian:Amazon_Root_CA_2.pem +#48 25.96 Adding debian:Amazon_Root_CA_3.pem +#48 25.97 Adding debian:Amazon_Root_CA_4.pem +#48 25.97 Adding debian:Atos_TrustedRoot_2011.pem +#48 25.97 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem +#48 25.97 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068_2.pem +#48 25.98 Adding debian:Baltimore_CyberTrust_Root.pem +#48 25.98 Adding debian:Buypass_Class_2_Root_CA.pem +#48 25.98 Adding debian:Buypass_Class_3_Root_CA.pem +#48 25.98 Adding debian:CA_Disig_Root_R2.pem +#48 25.99 Adding debian:CFCA_EV_ROOT.pem +#48 25.99 Adding debian:COMODO_Certification_Authority.pem +#48 25.99 Adding debian:COMODO_ECC_Certification_Authority.pem +#48 25.99 Adding debian:COMODO_RSA_Certification_Authority.pem +#48 25.99 Adding debian:Certainly_Root_E1.pem +#48 25.99 Adding debian:Certainly_Root_R1.pem +#48 26.00 Adding debian:Certigna.pem +#48 26.00 Adding debian:Certigna_Root_CA.pem +#48 26.00 Adding debian:Certum_EC-384_CA.pem +#48 26.00 Adding debian:Certum_Trusted_Network_CA.pem +#48 26.00 Adding debian:Certum_Trusted_Network_CA_2.pem +#48 26.01 Adding debian:Certum_Trusted_Root_CA.pem +#48 26.01 Adding debian:Comodo_AAA_Services_root.pem +#48 26.01 Adding debian:D-TRUST_BR_Root_CA_1_2020.pem +#48 26.01 Adding debian:D-TRUST_EV_Root_CA_1_2020.pem +#48 26.01 Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem +#48 26.02 Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem +#48 26.02 Adding debian:DigiCert_Assured_ID_Root_CA.pem +#48 26.02 Adding debian:DigiCert_Assured_ID_Root_G2.pem +#48 26.02 Adding debian:DigiCert_Assured_ID_Root_G3.pem +#48 26.02 Adding debian:DigiCert_Global_Root_CA.pem +#48 26.02 Adding debian:DigiCert_Global_Root_G2.pem +#48 26.02 Adding debian:DigiCert_Global_Root_G3.pem +#48 26.03 Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem +#48 26.03 Adding debian:DigiCert_TLS_ECC_P384_Root_G5.pem +#48 26.03 Adding debian:DigiCert_TLS_RSA4096_Root_G5.pem +#48 26.03 Adding debian:DigiCert_Trusted_Root_G4.pem +#48 26.03 Adding debian:E-Tugra_Certification_Authority.pem +#48 26.03 Adding debian:E-Tugra_Global_Root_CA_ECC_v3.pem +#48 26.04 Adding debian:E-Tugra_Global_Root_CA_RSA_v3.pem +#48 26.04 Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem +#48 26.04 Adding debian:Entrust_Root_Certification_Authority.pem +#48 26.04 Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem +#48 26.04 Adding debian:Entrust_Root_Certification_Authority_-_G2.pem +#48 26.04 Adding debian:Entrust_Root_Certification_Authority_-_G4.pem +#48 26.05 Adding debian:GDCA_TrustAUTH_R5_ROOT.pem +#48 26.05 Adding debian:GLOBALTRUST_2020.pem +#48 26.05 Adding debian:GTS_Root_R1.pem +#48 26.05 Adding debian:GTS_Root_R2.pem +#48 26.05 Adding debian:GTS_Root_R3.pem +#48 26.05 Adding debian:GTS_Root_R4.pem +#48 26.05 Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem +#48 26.06 Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem +#48 26.06 Adding debian:GlobalSign_Root_CA.pem +#48 26.06 Adding debian:GlobalSign_Root_CA_-_R3.pem +#48 26.06 Adding debian:GlobalSign_Root_CA_-_R6.pem +#48 26.06 Adding debian:GlobalSign_Root_E46.pem +#48 26.06 Adding debian:GlobalSign_Root_R46.pem +#48 26.07 Adding debian:Go_Daddy_Class_2_CA.pem +#48 26.07 Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem +#48 26.07 Adding debian:HARICA_TLS_ECC_Root_CA_2021.pem +#48 26.07 Adding debian:HARICA_TLS_RSA_Root_CA_2021.pem +#48 26.07 Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem +#48 26.07 Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem +#48 26.07 Adding debian:HiPKI_Root_CA_-_G1.pem +#48 26.08 Adding debian:Hongkong_Post_Root_CA_1.pem +#48 26.08 Adding debian:Hongkong_Post_Root_CA_3.pem +#48 26.08 Adding debian:ISRG_Root_X1.pem +#48 26.08 Adding debian:ISRG_Root_X2.pem +#48 26.08 Adding debian:IdenTrust_Commercial_Root_CA_1.pem +#48 26.08 Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem +#48 26.09 Adding debian:Izenpe.com.pem +#48 26.09 Adding debian:Microsec_e-Szigno_Root_CA_2009.pem +#48 26.09 Adding debian:Microsoft_ECC_Root_Certificate_Authority_2017.pem +#48 26.09 Adding debian:Microsoft_RSA_Root_Certificate_Authority_2017.pem +#48 26.09 Adding debian:NAVER_Global_Root_Certification_Authority.pem +#48 26.10 Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem +#48 26.10 Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem +#48 26.10 Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem +#48 26.10 Adding debian:QuoVadis_Root_CA_1_G3.pem +#48 26.10 Adding debian:QuoVadis_Root_CA_2.pem +#48 26.10 Adding debian:QuoVadis_Root_CA_2_G3.pem +#48 26.11 Adding debian:QuoVadis_Root_CA_3.pem +#48 26.11 Adding debian:QuoVadis_Root_CA_3_G3.pem +#48 26.11 Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem +#48 26.11 Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem +#48 26.11 Adding debian:SSL.com_Root_Certification_Authority_ECC.pem +#48 26.12 Adding debian:SSL.com_Root_Certification_Authority_RSA.pem +#48 26.12 Adding debian:SZAFIR_ROOT_CA2.pem +#48 26.12 Adding debian:SecureSign_RootCA11.pem +#48 26.12 Adding debian:SecureTrust_CA.pem +#48 26.12 Adding debian:Secure_Global_CA.pem +#48 26.12 Adding debian:Security_Communication_ECC_RootCA1.pem +#48 26.12 Adding debian:Security_Communication_RootCA2.pem +#48 26.12 Adding debian:Security_Communication_RootCA3.pem +#48 26.13 Adding debian:Security_Communication_Root_CA.pem +#48 26.13 Adding debian:Starfield_Class_2_CA.pem +#48 26.13 Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem +#48 26.13 Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem +#48 26.13 Adding debian:SwissSign_Gold_CA_-_G2.pem +#48 26.13 Adding debian:SwissSign_Silver_CA_-_G2.pem +#48 26.14 Adding debian:T-TeleSec_GlobalRoot_Class_2.pem +#48 26.14 Adding debian:T-TeleSec_GlobalRoot_Class_3.pem +#48 26.14 Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem +#48 26.14 Adding debian:TWCA_Global_Root_CA.pem +#48 26.14 Adding debian:TWCA_Root_Certification_Authority.pem +#48 26.14 Adding debian:TeliaSonera_Root_CA_v1.pem +#48 26.14 Adding debian:Telia_Root_CA_v2.pem +#48 26.15 Adding debian:TrustCor_ECA-1.pem +#48 26.15 Adding debian:TrustCor_RootCert_CA-1.pem +#48 26.15 Adding debian:TrustCor_RootCert_CA-2.pem +#48 26.15 Adding debian:Trustwave_Global_Certification_Authority.pem +#48 26.15 Adding debian:Trustwave_Global_ECC_P256_Certification_Authority.pem +#48 26.15 Adding debian:Trustwave_Global_ECC_P384_Certification_Authority.pem +#48 26.15 Adding debian:TunTrust_Root_CA.pem +#48 26.16 Adding debian:UCA_Extended_Validation_Root.pem +#48 26.16 Adding debian:UCA_Global_G2_Root.pem +#48 26.16 Adding debian:USERTrust_ECC_Certification_Authority.pem +#48 26.16 Adding debian:USERTrust_RSA_Certification_Authority.pem +#48 26.16 Adding debian:XRamp_Global_CA_Root.pem +#48 26.16 Adding debian:certSIGN_ROOT_CA.pem +#48 26.17 Adding debian:certSIGN_Root_CA_G2.pem +#48 26.17 Adding debian:e-Szigno_Root_CA_2017.pem +#48 26.17 Adding debian:ePKI_Root_Certification_Authority.pem +#48 26.17 Adding debian:emSign_ECC_Root_CA_-_C3.pem +#48 26.17 Adding debian:emSign_ECC_Root_CA_-_G3.pem +#48 26.17 Adding debian:emSign_Root_CA_-_C1.pem +#48 26.17 Adding debian:emSign_Root_CA_-_G1.pem +#48 26.17 Adding debian:vTrus_ECC_Root_CA.pem +#48 26.17 Adding debian:vTrus_Root_CA.pem +#48 26.21 done. +#48 26.21 Setting up default-jre-headless (2:1.17-74) ... +#48 26.21 Setting up openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... +#48 26.22 Setting up default-jre (2:1.17-74) ... +#48 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 12.25 Collecting SQLAlchemy<3,>=1.4 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 12.26 Downloading SQLAlchemy-2.0.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) +#44 13.03 Collecting aiohttp<4.0.0,>=3.8.3 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 13.05 Downloading aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#44 13.08 Collecting async-timeout<5.0.0,>=4.0.0 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 13.10 Downloading async_timeout-4.0.3-py3-none-any.whl.metadata (4.2 kB) +#44 13.17 Collecting langchain-core<0.4.0,>=0.3.33 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 13.18 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) +#44 13.30 Collecting langchain-text-splitters<0.4.0,>=0.3.3 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 13.31 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) +#44 13.45 Collecting langsmith<0.4,>=0.1.17 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 13.46 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) +#44 13.48 Collecting numpy>=1.17.3 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 13.49 Downloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#44 13.62 Collecting tenacity!=8.4.0,<10,>=8.1.0 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 13.63 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) +#44 13.69 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) +#44 13.70 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#44 13.79 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) +#44 13.80 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) +#44 13.91 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) +#44 13.92 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#44 13.98 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) +#44 13.99 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#44 14.06 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) +#44 14.07 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#44 15.17 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) +#44 15.18 Downloading grpcio-1.70.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#44 15.25 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) +#44 15.26 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) +#44 15.32 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) +#44 15.33 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#44 15.48 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 7)) +#44 15.51 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) +#44 15.59 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 8)) +#44 15.60 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#44 15.77 Collecting networkx (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 15.78 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#44 15.85 Collecting jinja2 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 15.86 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) +#44 15.90 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 15.91 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#44 15.96 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 15.97 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#44 16.01 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.02 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#44 16.07 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.09 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#44 16.13 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.14 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#44 16.19 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.20 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#44 16.26 Collecting nvidia-curand-cu12==10.3.5.147 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.27 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#44 16.32 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.33 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#44 16.39 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.40 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#44 16.45 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.46 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) +#44 16.65 Collecting nvidia-nccl-cu12==2.21.5 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.66 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) +#44 16.71 Collecting nvidia-nvtx-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.72 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) +#44 16.76 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.77 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#44 16.81 Collecting triton==3.2.0 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.82 Downloading triton-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) +#44 16.88 Collecting sympy==1.13.1 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.89 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) +#44 16.98 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 16.99 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) +#44 17.92 Collecting regex!=2019.12.17 (from transformers->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) +#44 17.93 Downloading regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#44 18.44 Collecting tokenizers<0.22,>=0.21 (from transformers->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) +#44 18.45 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) +#44 18.77 Collecting safetensors>=0.4.1 (from transformers->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) +#44 18.78 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#44 18.87 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 14)) +#44 18.88 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#44 18.92 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 14)) +#44 18.93 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#44 19.01 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 19.02 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#44 19.06 Collecting aiosignal>=1.1.2 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 19.07 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#44 19.13 Collecting attrs>=17.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 19.14 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#44 19.30 Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 19.31 Downloading frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#44 19.71 Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 19.73 Downloading multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#44 19.82 Collecting propcache>=0.2.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 19.83 Downloading propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#44 20.49 Collecting yarl<2.0,>=1.17.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 20.50 Downloading yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#44 20.84 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) +#44 20.86 Downloading wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#44 20.94 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) +#44 20.96 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#44 21.08 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 21.09 Downloading jaxlib-0.5.0-cp310-cp310-manylinux2014_x86_64.whl.metadata (978 bytes) +#44 21.18 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 21.19 Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) +#44 21.25 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 21.26 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) +#44 21.57 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 21.58 Downloading scipy-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#44 21.66 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 21.67 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) +#44 21.83 Collecting httpx<1,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 21.84 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#44 21.94 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 21.95 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) +#44 22.13 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 22.14 Downloading zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) +#44 22.22 Collecting python-dateutil>=2.8.2 (from pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 22.23 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#44 22.41 Collecting pytz>=2020.1 (from pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 ... + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 25.47 Collecting joblib>=1.2.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 25.48 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) +#37 25.52 Collecting threadpoolctl>=3.1.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) +#37 25.54 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) +#37 25.58 Downloading pydantic-2.7.2-py3-none-any.whl (409 kB) +#37 25.64 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#37 25.71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 33.5 MB/s eta 0:00:00 +#37 25.72 Downloading datasets-3.2.0-py3-none-any.whl (480 kB) +#37 25.73 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#37 25.74 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#37 25.76 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) +#37 25.77 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) +#37 25.78 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) +#37 25.79 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) +#37 25.80 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) +#37 25.81 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) +#37 25.84 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) +#37 25.85 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) +#37 25.86 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) +#37 25.90 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#37 25.91 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#37 25.92 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#37 25.93 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#37 25.94 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#37 25.95 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) +#37 26.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 217.4 MB/s eta 0:00:00 +#37 26.15 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#37 26.16 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#37 26.19 Downloading dill-0.3.8-py3-none-any.whl (116 kB) +#37 26.19 Downloading fsspec-2024.9.0-py3-none-any.whl (179 kB) +#37 26.20 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) +#37 26.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 342.9 MB/s eta 0:00:00 +#37 26.22 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#37 26.24 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) +#37 26.25 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) +#37 26.26 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 339.6 MB/s eta 0:00:00 +#37 26.27 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) +#37 26.29 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) +#37 26.31 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#37 26.33 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 398.2 MB/s eta 0:00:00 +#37 26.34 Downloading multiprocess-0.70.16-py311-none-any.whl (143 kB) +#37 26.37 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#37 26.38 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#37 26.39 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#37 26.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 417.8 MB/s eta 0:00:00 +#37 26.43 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#37 26.45 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 345.7 MB/s eta 0:00:00 +#37 26.46 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#37 26.49 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) +#37 26.50 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) +#37 26.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 467.8 MB/s eta 0:00:00 +#37 26.60 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#37 26.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 556.2 MB/s eta 0:00:00 +#37 26.61 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#37 26.62 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#37 26.63 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#37 26.63 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) +#37 26.66 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl (766.7 MB) +#37 ... + +#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget +#48 DONE 29.4s + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 24.13 Selecting previously unselected package libserd-0-0:amd64. +#49 24.13 Preparing to unpack .../123-libserd-0-0_0.30.16-1_amd64.deb ... +#49 24.13 Unpacking libserd-0-0:amd64 (0.30.16-1) ... +#49 24.15 Selecting previously unselected package libsord-0-0:amd64. +#49 24.15 Preparing to unpack .../124-libsord-0-0_0.16.14+git221008-1_amd64.deb ... +#49 24.15 Unpacking libsord-0-0:amd64 (0.16.14+git221008-1) ... +#49 24.16 Selecting previously unselected package libsratom-0-0:amd64. +#49 24.17 Preparing to unpack .../125-libsratom-0-0_0.6.14-1_amd64.deb ... +#49 24.17 Unpacking libsratom-0-0:amd64 (0.6.14-1) ... +#49 24.18 Selecting previously unselected package liblilv-0-0:amd64. +#49 24.18 Preparing to unpack .../126-liblilv-0-0_0.24.14-1_amd64.deb ... +#49 24.18 Unpacking liblilv-0-0:amd64 (0.24.14-1) ... +#49 24.20 Selecting previously unselected package libmysofa1:amd64. +#49 24.20 Preparing to unpack .../127-libmysofa1_1.3.1~dfsg0-1_amd64.deb ... +#49 24.20 Unpacking libmysofa1:amd64 (1.3.1~dfsg0-1) ... +#49 24.25 Selecting previously unselected package libepoxy0:amd64. +#49 24.25 Preparing to unpack .../128-libepoxy0_1.5.10-1_amd64.deb ... +#49 24.25 Unpacking libepoxy0:amd64 (1.5.10-1) ... +#49 24.28 Selecting previously unselected package libvulkan1:amd64. +#49 24.28 Preparing to unpack .../129-libvulkan1_1.3.239.0-1_amd64.deb ... +#49 24.28 Unpacking libvulkan1:amd64 (1.3.239.0-1) ... +#49 24.30 Selecting previously unselected package libplacebo208:amd64. +#49 24.30 Preparing to unpack .../130-libplacebo208_4.208.0-3_amd64.deb ... +#49 24.30 Unpacking libplacebo208:amd64 (4.208.0-3) ... +#49 24.46 Selecting previously unselected package libblas3:amd64. +#49 24.46 Preparing to unpack .../131-libblas3_3.11.0-2_amd64.deb ... +#49 24.47 Unpacking libblas3:amd64 (3.11.0-2) ... +#49 24.49 Selecting previously unselected package libquadmath0:amd64. +#49 24.49 Preparing to unpack .../132-libquadmath0_12.2.0-14_amd64.deb ... +#49 24.49 Unpacking libquadmath0:amd64 (12.2.0-14) ... +#49 24.51 Selecting previously unselected package libgfortran5:amd64. +#49 24.51 Preparing to unpack .../133-libgfortran5_12.2.0-14_amd64.deb ... +#49 24.52 Unpacking libgfortran5:amd64 (12.2.0-14) ... +#49 24.59 Selecting previously unselected package liblapack3:amd64. +#49 24.59 Preparing to unpack .../134-liblapack3_3.11.0-2_amd64.deb ... +#49 24.59 Unpacking liblapack3:amd64 (3.11.0-2) ... +#49 24.76 Selecting previously unselected package libasyncns0:amd64. +#49 24.76 Preparing to unpack .../135-libasyncns0_0.8-6+b3_amd64.deb ... +#49 24.76 Unpacking libasyncns0:amd64 (0.8-6+b3) ... +#49 24.77 Selecting previously unselected package libflac12:amd64. +#49 24.77 Preparing to unpack .../136-libflac12_1.4.2+ds-2_amd64.deb ... +#49 24.77 Unpacking libflac12:amd64 (1.4.2+ds-2) ... +#49 24.80 Selecting previously unselected package libsndfile1:amd64. +#49 24.80 Preparing to unpack .../137-libsndfile1_1.2.0-1_amd64.deb ... +#49 24.80 Unpacking libsndfile1:amd64 (1.2.0-1) ... +#49 24.83 Selecting previously unselected package libpulse0:amd64. +#49 24.83 Preparing to unpack .../138-libpulse0_16.1+dfsg1-2+b1_amd64.deb ... +#49 24.84 Unpacking libpulse0:amd64 (16.1+dfsg1-2+b1) ... +#49 24.87 Selecting previously unselected package libsphinxbase3:amd64. +#49 24.87 Preparing to unpack .../139-libsphinxbase3_0.8+5prealpha+1-16_amd64.deb ... +#49 24.87 Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-16) ... +#49 24.90 Selecting previously unselected package libpocketsphinx3:amd64. +#49 24.90 Preparing to unpack .../140-libpocketsphinx3_0.8+5prealpha+1-15_amd64.deb ... +#49 24.90 Unpacking libpocketsphinx3:amd64 (0.8+5prealpha+1-15) ... +#49 24.92 Selecting previously unselected package libpostproc56:amd64. +#49 24.92 Preparing to unpack .../141-libpostproc56_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 24.92 Unpacking libpostproc56:amd64 (7:5.1.6-0+deb12u1) ... +#49 24.94 Selecting previously unselected package librubberband2:amd64. +#49 24.94 Preparing to unpack .../142-librubberband2_3.1.2+dfsg0-1_amd64.deb ... +#49 24.94 Unpacking librubberband2:amd64 (3.1.2+dfsg0-1) ... +#49 24.96 Selecting previously unselected package libswscale6:amd64. +#49 24.97 Preparing to unpack .../143-libswscale6_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 24.97 Unpacking libswscale6:amd64 (7:5.1.6-0+deb12u1) ... +#49 25.00 Selecting previously unselected package libvidstab1.1:amd64. +#49 25.00 Preparing to unpack .../144-libvidstab1.1_1.1.0-2+b1_amd64.deb ... +#49 25.00 Unpacking libvidstab1.1:amd64 (1.1.0-2+b1) ... +#49 25.01 Selecting previously unselected package libzimg2:amd64. +#49 25.01 Preparing to unpack .../145-libzimg2_3.0.4+ds1-1_amd64.deb ... +#49 25.01 Unpacking libzimg2:amd64 (3.0.4+ds1-1) ... +#49 25.05 Selecting previously unselected package libavfilter8:amd64. +#49 25.05 Preparing to unpack .../146-libavfilter8_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 25.05 Unpacking libavfilter8:amd64 (7:5.1.6-0+deb12u1) ... +#49 25.49 Selecting previously unselected package libslang2:amd64. +#49 25.49 Preparing to unpack .../147-libslang2_2.3.3-3_amd64.deb ... +#49 25.54 Unpacking libslang2:amd64 (2.3.3-3) ... +#49 25.83 Selecting previously unselected package libcaca0:amd64. +#49 25.83 Preparing to unpack .../148-libcaca0_0.99.beta20-3_amd64.deb ... +#49 25.86 Unpacking libcaca0:amd64 (0.99.beta20-3) ... +#49 26.87 Selecting previously unselected package libcdio19:amd64. +#49 26.87 Preparing to unpack .../149-libcdio19_2.1.0-4_amd64.deb ... +#49 27.01 Unpacking libcdio19:amd64 (2.1.0-4) ... +#49 27.94 Selecting previously unselected package libcdio-cdda2:amd64. +#49 27.94 Preparing to unpack .../150-libcdio-cdda2_10.2+2.0.1-1_amd64.deb ... +#49 28.05 Unpacking libcdio-cdda2:amd64 (10.2+2.0.1-1) ... +#49 28.37 Selecting previously unselected package libcdio-paranoia2:amd64. +#49 28.37 Preparing to unpack .../151-libcdio-paranoia2_10.2+2.0.1-1_amd64.deb ... +#49 28.38 Unpacking libcdio-paranoia2:amd64 (10.2+2.0.1-1) ... +#49 28.40 Selecting previously unselected package libusb-1.0-0:amd64. +#49 28.40 Preparing to unpack .../152-libusb-1.0-0_2%3a1.0.26-1_amd64.deb ... +#49 28.47 Unpacking libusb-1.0-0:amd64 (2:1.0.26-1) ... +#49 28.86 Selecting previously unselected package libdc1394-25:amd64. +#49 28.86 Preparing to unpack .../153-libdc1394-25_2.2.6-4_amd64.deb ... +#49 28.91 Unpacking libdc1394-25:amd64 (2.2.6-4) ... +#49 29.51 Selecting previously unselected package libglvnd0:amd64. +#49 29.51 Preparing to unpack .../154-libglvnd0_1.6.0-1_amd64.deb ... +#49 29.66 Unpacking libglvnd0:amd64 (1.6.0-1) ... +#49 ... + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 29.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 239.2 MB/s eta 0:00:00 +#37 29.45 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) +#37 30.24 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 423.6 MB/s eta 0:00:00#37 ... + +#60 [opea/multimodalqna-ui:latest 3/8] WORKDIR /root +#60 DONE 2.2s + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 30.24 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 423.6 MB/s eta 0:00:00 +#37 30.25 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) +#37 30.28 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 592.5 MB/s eta 0:00:00 +#37 30.29 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) +#37 30.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 482.5 MB/s eta 0:00:00 +#37 30.35 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) +#37 30.36 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 507.0 MB/s eta 0:00:00 +#37 30.36 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) +#37 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 15.66 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) +#58 15.67 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#58 15.72 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) +#58 15.73 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) +#58 15.78 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) +#58 15.79 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#58 15.88 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 8)) +#58 15.89 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) +#58 15.99 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 16.00 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) +#58 16.24 Collecting torch>=1.11 (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 16.25 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl.metadata (28 kB) +#58 16.33 Collecting optimum-habana (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 16.34 Downloading optimum_habana-1.15.0-py3-none-any.whl.metadata (28 kB) +#58 16.37 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 16.38 Downloading transformers-4.45.2-py3-none-any.whl.metadata (44 kB) +#58 16.53 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 10)) +#58 16.54 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#58 16.62 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 14)) +#58 16.63 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#58 16.68 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 14)) +#58 16.69 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#58 16.96 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) +#58 16.97 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#58 17.06 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 17.07 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#58 17.11 Collecting aiosignal>=1.1.2 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 17.12 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#58 17.17 Collecting attrs>=17.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 17.18 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#58 17.40 Collecting frozenlist>=1.1.1 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 17.41 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#58 17.86 Collecting multidict<7.0,>=4.5 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 17.87 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#58 17.94 Collecting propcache>=0.2.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 17.95 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#58 18.52 Collecting yarl<2.0,>=1.17.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 18.53 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#58 18.61 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) +#58 18.62 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#58 18.73 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 18.74 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) +#58 18.81 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 18.82 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) +#58 18.88 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 18.89 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) +#58 19.17 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 19.18 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#58 19.26 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 19.27 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) +#58 19.33 Collecting httpx<1,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 19.34 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#58 19.46 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 19.47 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) +#58 19.70 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 19.72 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) +#58 19.81 Collecting python-dateutil>=2.8.2 (from pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 19.82 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#58 19.99 Collecting pytz>=2020.1 (from pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 20.01 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) +#58 20.06 Collecting tzdata>=2022.7 (from pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 20.07 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) +#58 20.26 Collecting charset-normalizer<4,>=2 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 20.27 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#58 20.33 Collecting idna<4,>=2.5 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 20.34 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#58 20.42 Collecting urllib3<3,>=1.21.1 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 20.43 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#58 20.51 Collecting certifi>=2017.4.17 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 20.52 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#58 20.59 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 20.62 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#58 20.69 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 20.70 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#58 20.76 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) +#58 20.81 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#58 20.92 Collecting networkx (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 20.94 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#58 21.00 Collecting jinja2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.03 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) +#58 21.08 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.09 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#58 21.14 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.16 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#58 21.21 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.22 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#58 21.27 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.30 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#58 21.36 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.37 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#58 21.42 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.43 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#58 21.54 Collecting nvidia-curand-cu12==10.3.5.147 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.55 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#58 21.61 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.62 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#58 21.67 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.69 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) +#58 21.72 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.75 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) +#58 21.79 Collecting nvidia-nccl-cu12==2.21.5 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.82 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) +#58 21.86 Collecting nvidia-nvtx-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 21.88 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) +#58 21.98 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 22.01 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#58 22.06 Collecting triton==3.2.0 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 22.09 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) +#58 22.14 Collecting sympy==1.13.1 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 22.17 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) +#58 22.28 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 22.29 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) +#58 23.02 Collecting regex!=2019.12.17 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 23.05 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#58 23.40 Collecting safetensors>=0.4.1 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 23.41 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#58 23.78 Collecting tokenizers<0.21,>=0.20 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 23.79 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) +#58 23.89 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 23.90 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) +#58 23.96 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 23.98 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) +#58 24.02 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 24.04 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) +#58 24.41 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 24.43 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#58 24.50 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 24.52 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) +#58 24.58 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 24.59 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) +#58 24.64 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 24.66 Downloading pycollada-0.8.tar.gz (108 kB) +#58 24.68 Preparing metadata (setup.py): started +#58 24.92 Preparing metadata (setup.py): finished with status 'done' +#58 24.92 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) (75.8.0) +#58 25.11 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 25.12 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) +#58 25.17 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 25.19 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) +#58 25.23 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 25.24 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) +#58 25.31 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 25.32 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#58 25.40 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 25.41 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) +#58 25.48 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 25.49 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) +#58 25.56 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 25.57 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) +#58 25.67 Collecting accelerate<0.34.0,>=0.33.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 25.68 Downloading accelerate-0.33.0-py3-none-any.whl.metadata (18 kB) +#58 25.77 Collecting diffusers<0.32.0,>=0.31.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 25.78 Downloading diffusers-0.31.0-py3-none-any.whl.metadata (18 kB) +#58 ... + +#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt +#50 21.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 771.0 kB/s eta 0:00:00 +#50 21.67 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#50 21.97 Downloading einops-0.8.0-py3-none-any.whl (43 kB) +#50 22.05 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#50 22.20 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#50 22.78 Downloading open_clip_torch-2.30.0-py3-none-any.whl (1.5 MB) +#50 24.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 1.4 MB/s eta 0:00:00 +#50 24.05 Downloading openai-1.61.0-py3-none-any.whl (460 kB) +#50 24.45 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) +#50 24.53 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) +#50 24.56 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) +#50 24.61 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) +#50 24.65 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) +#50 24.70 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) +#50 24.78 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) +#50 24.93 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) +#50 25.12 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#50 29.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 1.2 MB/s eta 0:00:00 +#50 29.06 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#50 29.11 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#50 29.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 1.7 MB/s eta 0:00:00 +#50 29.64 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#50 29.69 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) +#50 ... + +#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ +#0 0.203 --2025-02-03 22:03:47-- https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz +#0 0.212 Resolving proxy-dmz.intel.com (proxy-dmz.intel.com)... 10.7.211.16 +#0 0.214 Connecting to proxy-dmz.intel.com (proxy-dmz.intel.com)|10.7.211.16|:911... connected. +#0 0.670 Proxy request sent, awaiting response... 200 OK +#0 0.748 Length: 41964060 (40M) [application/x-xz] +#0 0.748 Saving to: ‘ffmpeg-git-amd64-static.tar.xz’ +#0 0.748 +#0 0.748 0K .......... .......... .......... .......... .......... 0% 357K 1m55s +#0 0.888 50K .......... .......... .......... .......... .......... 0% 716K 86s +#0 0.957 100K .......... .......... .......... .......... .......... 0% 32.9M 58s +#0 0.959 150K .......... .......... .......... .......... .......... 0% 729K 57s +#0 1.027 200K .......... .......... .......... .......... .......... 0% 55.8M 46s +#0 1.028 250K .......... .......... .......... .......... .......... 0% 35.8M 38s +#0 1.030 300K .......... .......... .......... .......... .......... 0% 741K 41s +#0 1.097 350K .......... .......... .......... .......... .......... 0% 12.0M 36s +#0 1.101 400K .......... .......... .......... .......... .......... 1% 208M 32s +#0 1.101 450K .......... .......... .......... .......... .......... 1% 32.3M 29s +#0 1.103 500K .......... .......... .......... .......... .......... 1% 220M 26s +#0 1.103 550K .......... .......... .......... .......... .......... 1% 115M 24s +#0 1.104 600K .......... .......... .......... .......... .......... 1% 22.9M 22s +#0 1.106 650K .......... .......... .......... .......... .......... 1% 111M 21s +#0 1.106 700K .......... .......... .......... .......... .......... 1% 786K 23s +#61 1.170 750K .......... .......... .......... .......... .......... 1% 8.88M 21s +#61 1.175 800K .......... .......... .......... .......... .......... 2% 44.3M 20s +#61 1.176 850K .......... .......... .......... .......... .......... 2% 116M 19s +#61 1.177 900K .......... .......... .......... .......... .......... 2% 58.2M 18s +#61 1.178 950K .......... .......... .......... .......... .......... 2% 58.6M 17s +#61 1.178 1000K .......... .......... .......... .......... .......... 2% 186M 16s +#61 1.179 1050K .......... .......... .......... .......... .......... 2% 35.0M 16s +#61 1.180 1100K .......... .......... .......... .......... .......... 2% 102M 15s +#61 1.181 1150K .......... .......... .......... .......... .......... 2% 113M 14s +#61 1.181 1200K .......... .......... .......... .......... .......... 3% 39.5M 14s +#61 1.182 1250K .......... .......... .......... .......... .......... 3% 149M 13s +#61 1.183 1300K .......... .......... .......... .......... .......... 3% 58.7M 13s +#61 1.183 1350K .......... .......... .......... .......... .......... 3% 54.6M 12s +#61 1.184 1400K .......... .......... .......... .......... .......... 3% 954K 13s +#61 1.237 1450K .......... .......... .......... .......... .......... 3% 63.9M 13s +#61 1.237 1500K .......... .......... .......... .......... .......... 3% 20.3M 13s +#61 1.240 1550K .......... .......... .......... .......... .......... 3% 8.58M 12s +#61 1.246 1600K .......... .......... .......... .......... .......... 4% 138M 12s +#61 1.246 1650K .......... .......... .......... .......... .......... 4% 73.8M 12s +#61 1.247 1700K .......... .......... .......... .......... .......... 4% 40.1M 11s +#61 1.248 1750K .......... .......... .......... .......... .......... 4% 51.3M 11s +#61 1.249 1800K .......... .......... .......... .......... .......... 4% 83.0M 11s +#61 1.249 1850K .......... .......... .......... .......... .......... 4% 112M 10s +#61 1.250 1900K .......... .......... .......... .......... .......... 4% 49.6M 10s +#61 1.251 1950K .......... .......... .......... .......... .......... 4% 65.8M 10s +#61 1.252 2000K .......... .......... .......... .......... .......... 5% 63.4M 10s +#61 1.252 2050K .......... .......... .......... .......... .......... 5% 73.4M 9s +#61 1.253 2100K .......... .......... .......... .......... .......... 5% 115M 9s +#61 1.253 2150K .......... .......... .......... .......... .......... 5% 52.2M 9s +#61 1.254 2200K .......... .......... .......... .......... .......... 5% 61.0M 9s +#61 1.255 2250K .......... .......... .......... .......... .......... 5% 70.8M 9s +#61 1.256 2300K .......... .......... .......... .......... .......... 5% 62.9M 8s +#61 1.257 2350K .......... .......... .......... .......... .......... 5% 115M 8s +#61 1.257 2400K .......... .......... .......... .......... .......... 5% 37.6M 8s +#61 1.258 2450K .......... .......... .......... .......... .......... 6% 125M 8s +#61 1.259 2500K .......... .......... .......... .......... .......... 6% 264M 8s +#61 1.259 2550K .......... .......... .......... .......... .......... 6% 281M 8s +#61 1.259 2600K .......... .......... .......... .......... .......... 6% 45.5M 7s +#61 1.260 2650K .......... .......... .......... .......... .......... 6% 132M 7s +#61 1.260 2700K .......... .......... .......... .......... .......... 6% 215M 7s +#61 1.261 2750K .......... .......... .......... .......... .......... 6% 292M 7s +#61 1.261 2800K .......... .......... .......... .......... .......... 6% 1.07M 7s +#61 1.306 2850K .......... .......... .......... .......... .......... 7% 133M 7s +#61 1.307 2900K .......... .......... .......... .......... .......... 7% 45.8M 7s +#61 1.308 2950K .......... .......... .......... .......... .......... 7% 276M 7s +#61 1.308 3000K .......... .......... .......... .......... .......... 7% 23.9M 7s +#61 1.310 3050K .......... .......... .......... .......... .......... 7% 170M 7s +#61 1.310 3100K .......... .......... .......... .......... .......... 7% 16.4M 7s +#61 1.313 3150K .......... .......... .......... .......... .......... 7% 24.1M 7s +#61 1.315 3200K .......... .......... .......... .......... .......... 7% 36.8M 7s +#61 1.317 3250K .......... .......... .......... .......... .......... 8% 92.6M 7s +#61 1.317 3300K .......... .......... .......... .......... .......... 8% 203M 6s +#61 1.317 3350K .......... .......... .......... .......... .......... 8% 191M 6s +#61 1.318 3400K .......... .......... .......... .......... .......... 8% 61.2M 6s +#61 1.318 3450K .......... .......... .......... .......... .......... 8% 86.8M 6s +#61 1.319 3500K .......... .......... .......... .......... .......... 8% 155M 6s +#61 1.319 3550K .......... .......... .......... .......... .......... 8% 65.7M 6s +#61 1.320 3600K .......... .......... .......... .......... .......... 8% 19.7M 6s +#61 1.323 3650K .......... .......... .......... .......... .......... 9% 72.2M 6s +#61 1.323 3700K .......... .......... .......... .......... .......... 9% 228M 6s +#61 1.323 3750K .......... .......... .......... .......... .......... 9% 59.9M 6s +#61 1.324 3800K .......... .......... .......... .......... .......... 9% 108M 6s +#61 1.325 3850K .......... .......... .......... .......... .......... 9% 105M 5s +#61 1.325 3900K .......... .......... .......... .......... .......... 9% 47.3M 5s +#61 1.326 3950K .......... .......... .......... .......... .......... 9% 167M 5s +#61 1.326 4000K .......... .......... .......... .......... .......... 9% 117M 5s +#61 1.327 4050K .......... .......... .......... .......... .......... 10% 273M 5s +#61 1.327 4100K .......... .......... .......... .......... .......... 10% 38.3M 5s +#61 1.328 4150K .......... .......... .......... .......... .......... 10% 38.5M 5s +#61 1.330 4200K .......... .......... .......... .......... .......... 10% 47.3M 5s +#61 1.331 4250K .......... .......... .......... .......... .......... 10% 303M 5s +#61 1.331 4300K .......... .......... .......... .......... .......... 10% 336M 5s +#61 1.331 4350K .......... .......... .......... .......... .......... 10% 59.6M 5s +#61 1.332 4400K .......... .......... .......... .......... .......... 10% 49.7M 5s +#61 1.333 4450K .......... .......... .......... .......... .......... 10% 63.4M 5s +#61 1.334 4500K .......... .......... .......... .......... .......... 11% 54.0M 5s +#61 1.334 4550K .......... .......... .......... .......... .......... 11% 291M 5s +#61 1.335 4600K .......... .......... .......... .......... .......... 11% 275M 5s +#61 1.335 4650K .......... .......... .......... .......... .......... 11% 49.9M 5s +#61 1.336 4700K .......... .......... .......... .......... .......... 11% 88.4M 4s +#61 1.336 4750K .......... .......... .......... .......... .......... 11% 145M 4s +#61 1.337 4800K .......... .......... .......... .......... .......... 11% 330M 4s +#61 1.337 4850K .......... .......... .......... .......... .......... 11% 53.2M 4s +#61 1.338 4900K .......... .......... .......... .......... .......... 12% 101M 4s +#61 1.338 4950K .......... .......... .......... .......... .......... 12% 121M 4s +#61 1.339 5000K .......... .......... .......... .......... .......... 12% 302M 4s +#61 1.339 5050K .......... .......... .......... .......... .......... 12% 67.3M 4s +#61 1.340 5100K .......... .......... .......... .......... .......... 12% 91.8M 4s +#61 1.340 5150K .......... .......... .......... .......... .......... 12% 115M 4s +#61 1.340 5200K .......... .......... .......... .......... .......... 12% 107M 4s +#61 1.341 5250K .......... .......... .......... .......... .......... 12% 90.2M 4s +#61 1.341 5300K .......... .......... .......... .......... .......... 13% 120M 4s +#61 1.342 5350K .......... .......... .......... .......... .......... 13% 255M 4s +#61 1.342 5400K .......... .......... .......... .......... .......... 13% 144M 4s +#61 1.342 5450K .......... .......... .......... .......... .......... 13% 89.0M 4s +#61 1.343 5500K .......... .......... .......... .......... .......... 13% 134M 4s +#61 1.343 5550K .......... .......... .......... .......... .......... 13% 109M 4s +#61 1.344 5600K .......... .......... .......... .......... .......... 13% 1.70M 4s +#61 1.372 5650K .......... .......... .......... .......... .......... 13% 14.0M 4s +#61 1.376 5700K .......... .......... .......... .......... .......... 14% 86.1M 4s +#61 1.377 5750K .......... .......... .......... .......... .......... 14% 88.4M 4s +#61 1.377 5800K .......... .......... .......... .......... .......... 14% 96.0M 4s +#61 1.378 5850K .......... .......... .......... .......... .......... 14% 257M 4s +#61 1.378 5900K .......... .......... .......... .......... .......... 14% 243M 4s +#61 1.378 5950K .......... .......... .......... .......... .......... 14% 141M 4s +#61 1.378 6000K .......... .......... .......... .......... .......... 14% 50.7M 4s +#61 1.379 6050K .......... .......... .......... .......... .......... 14% 92.1M 4s +#61 1.380 6100K .......... .......... .......... .......... .......... 15% 218M 4s +#61 1.380 6150K .......... .......... .......... .......... .......... 15% 180M 4s +#61 1.380 6200K .......... .......... .......... .......... .......... 15% 26.1M 4s +#61 1.382 6250K .......... .......... .......... .......... .......... 15% 124M 3s +#61 1.383 6300K .......... .......... .......... .......... .......... 15% 28.9M 3s +#61 1.384 6350K .......... .......... .......... .......... .......... 15% 92.4M 3s +#61 1.385 6400K .......... .......... .......... .......... .......... 15% 33.8M 3s +#61 1.386 6450K .......... .......... .......... .......... .......... 15% 246M 3s +#61 1.386 6500K .......... .......... .......... .......... .......... 15% 313M 3s +#61 1.387 6550K .......... .......... .......... .......... .......... 16% 41.8M 3s +#61 1.388 6600K .......... .......... .......... .......... .......... 16% 189M 3s +#61 1.388 6650K .......... .......... .......... .......... .......... 16% 92.0M 3s +#61 1.389 6700K .......... .......... .......... .......... .......... 16% 148M 3s +#61 1.389 6750K .......... .......... .......... .......... .......... 16% 197M 3s +#61 1.389 6800K .......... .......... .......... .......... .......... 16% 117M 3s +#61 1.390 6850K .......... .......... .......... .......... .......... 16% 159M 3s +#61 1.390 6900K .......... .......... .......... .......... .......... 16% 74.6M 3s +#61 1.390 6950K .......... .......... .......... .......... .......... 17% 183M 3s +#61 1.391 7000K .......... .......... .......... .......... .......... 17% 272M 3s +#61 1.391 7050K .......... .......... .......... .......... .......... 17% 104M 3s +#61 1.391 7100K .......... .......... .......... .......... .......... 17% 142M 3s +#61 1.392 7150K .......... .......... .......... .......... .......... 17% 80.3M 3s +#61 1.392 7200K .......... .......... .......... .......... .......... 17% 131M 3s +#61 1.393 7250K .......... .......... .......... .......... .......... 17% 315M 3s +#61 1.393 7300K .......... .......... .......... .......... .......... 17% 65.7M 3s +#61 1.394 7350K .......... .......... .......... .......... .......... 18% 252M 3s +#61 1.394 7400K .......... .......... .......... .......... .......... 18% 63.2M 3s +#61 1.395 7450K .......... .......... .......... .......... .......... 18% 84.2M 3s +#61 1.395 7500K .......... .......... .......... .......... .......... 18% 311M 3s +#61 1.395 7550K .......... .......... .......... .......... .......... 18% 267M 3s +#61 1.396 7600K .......... .......... .......... .......... .......... 18% 223M 3s +#61 1.396 7650K .......... .......... .......... .......... .......... 18% 25.5M 3s +#61 1.398 7700K .......... .......... .......... .......... .......... 18% 129M 3s +#61 1.398 7750K .......... .......... .......... .......... .......... 19% 183M 3s +#61 1.398 7800K .......... .......... .......... .......... .......... 19% 51.6M 3s +#61 1.399 7850K .......... .......... .......... .......... .......... 19% 177M 3s +#61 1.400 7900K .......... .......... .......... .......... .......... 19% 201M 3s +#61 1.400 7950K .......... .......... .......... .......... .......... 19% 166M 3s +#61 1.400 8000K .......... .......... .......... .......... .......... 19% 261M 3s +#61 1.400 8050K .......... .......... .......... .......... .......... 19% 55.2M 3s +#61 1.401 8100K .......... .......... .......... .......... .......... 19% 204M 3s +#61 1.401 8150K .......... .......... .......... .......... .......... 20% 219M 3s +#61 1.402 8200K .......... .......... .......... .......... .......... 20% 136M 3s +#61 1.402 8250K .......... .......... .......... .......... .......... 20% 121M 3s +#61 1.402 8300K .......... .......... .......... .......... .......... 20% 63.9M 3s +#61 1.403 8350K .......... .......... .......... .......... .......... 20% 260M 3s +#61 1.403 8400K .......... .......... .......... .......... .......... 20% 213M 3s +#61 1.404 8450K .......... .......... .......... .......... .......... 20% 174M 3s +#61 1.404 8500K .......... .......... .......... .......... .......... 20% 129M 2s +#61 1.404 8550K .......... .......... .......... .......... .......... 20% 63.2M 2s +#61 1.405 8600K .......... .......... .......... .......... .......... 21% 264M 2s +#61 1.405 8650K .......... .......... .......... .......... .......... 21% 185M 2s +#61 1.405 8700K .......... .......... .......... .......... .......... 21% 36.7M 2s +#61 1.407 8750K .......... .......... .......... .......... .......... 21% 134M 2s +#61 1.407 8800K .......... .......... .......... .......... .......... 21% 38.0M 2s +#61 1.408 8850K .......... .......... .......... .......... .......... 21% 72.1M 2s +#61 1.409 8900K .......... .......... .......... .......... .......... 21% 267M 2s +#61 1.409 8950K .......... .......... .......... .......... .......... 21% 133M 2s +#61 1.410 9000K .......... .......... .......... .......... .......... 22% 280M 2s +#61 1.410 9050K .......... .......... .......... .......... .......... 22% 122M 2s +#61 1.410 9100K .......... .......... .......... .......... .......... 22% 64.6M 2s +#61 1.411 9150K .......... .......... .......... .......... .......... 22% 285M 2s +#61 1.411 9200K .......... .......... .......... .......... .......... 22% 147M 2s +#61 1.411 9250K .......... .......... .......... .......... .......... 22% 251M 2s +#61 1.412 9300K .......... .......... .......... .......... .......... 22% 68.6M 2s +#61 1.412 9350K .......... .......... .......... .......... .......... 22% 128M 2s +#61 1.413 9400K .......... .......... .......... .......... .......... 23% 134M 2s +#61 1.413 9450K .......... .......... .......... .......... .......... 23% 170M 2s +#61 1.413 9500K .......... .......... .......... .......... .......... 23% 223M 2s +#61 1.414 9550K .......... .......... .......... .......... .......... 23% 62.3M 2s +#61 1.414 9600K .......... .......... .......... .......... .......... 23% 238M 2s +#61 1.415 9650K .......... .......... .......... .......... .......... 23% 119M 2s +#61 1.415 9700K .......... .......... .......... .......... .......... 23% 160M 2s +#61 1.415 9750K .......... .......... .......... .......... .......... 23% 286M 2s +#61 1.415 9800K .......... .......... .......... .......... .......... 24% 62.8M 2s +#61 1.416 9850K .......... .......... .......... .......... .......... 24% 208M 2s +#61 1.417 9900K .......... .......... .......... .......... .......... 24% 107M 2s +#61 1.417 9950K .......... .......... .......... .......... .......... 24% 149M 2s +#61 1.417 10000K .......... .......... .......... .......... .......... 24% 291M 2s +#61 1.417 10050K .......... .......... .......... .......... .......... 24% 76.2M 2s +#61 1.418 10100K .......... .......... .......... .......... .......... 24% 142M 2s +#61 1.418 10150K .......... .......... .......... .......... .......... 24% 126M 2s +#61 1.419 10200K .......... .......... .......... .......... .......... 25% 179M 2s +#61 1.419 10250K .......... .......... .......... .......... .......... 25% 287M 2s +#61 1.419 10300K .......... .......... .......... .......... .......... 25% 311M 2s +#61 1.419 10350K .......... .......... .......... .......... .......... 25% 91.6M 2s +#61 1.420 10400K .......... .......... .......... .......... .......... 25% 128M 2s +#61 1.420 10450K .......... .......... .......... .......... .......... 25% 109M 2s +#61 1.421 10500K .......... .......... .......... .......... .......... 25% 250M 2s +#61 1.421 10550K .......... .......... .......... .......... .......... 25% 291M 2s +#61 1.421 10600K .......... .......... .......... .......... .......... 25% 198M 2s +#61 1.421 10650K .......... .......... .......... .......... .......... 26% 91.4M 2s +#61 1.422 10700K .......... .......... .......... .......... .......... 26% 147M 2s +#61 1.422 10750K .......... .......... .......... .......... .......... 26% 89.6M 2s +#61 1.423 10800K .......... .......... .......... .......... .......... 26% 282M 2s +#61 1.423 10850K .......... .......... .......... .......... .......... 26% 253M 2s +#61 1.423 10900K .......... .......... .......... .......... .......... 26% 191M 2s +#61 1.423 10950K .......... .......... .......... .......... .......... 26% 134M 2s +#61 1.424 11000K .......... .......... .......... .......... .......... 26% 130M 2s +#61 1.424 11050K .......... .......... .......... .......... .......... 27% 98.9M 2s +#61 1.425 11100K .......... .......... .......... .......... .......... 27% 259M 2s +#61 1.425 11150K .......... .......... .......... .......... .......... 27% 211M 2s +#61 1.425 11200K .......... .......... .......... .......... .......... 27% 163M 2s +#61 1.425 11250K .......... .......... .......... .......... .......... 27% 2.89M 2s +#61 1.442 11300K .......... .......... .......... .......... .......... 27% 30.9M 2s +#61 1.444 11350K .......... .......... .......... .......... .......... 27% 18.8M 2s +#61 1.446 11400K .......... .......... .......... .......... .......... 27% 198M 2s +#61 1.447 11450K .......... .......... .......... .......... .......... 28% 180M 2s +#61 1.447 11500K .......... .......... .......... .......... .......... 28% 289M 2s +#61 1.447 11550K .......... .......... .......... .......... .......... 28% 296M 2s +#61 1.447 11600K .......... .......... .......... .......... .......... 28% 269M 2s +#61 1.447 11650K .......... .......... .......... .......... .......... 28% 54.4M 2s +#61 1.448 11700K .......... .......... .......... .......... .......... 28% 188M 2s +#61 1.449 11750K .......... .......... .......... .......... .......... 28% 254M 2s +#61 1.449 11800K .......... .......... .......... .......... .......... 28% 284M 2s +#61 1.449 11850K .......... .......... .......... .......... .......... 29% 260M 2s +#61 1.449 11900K .......... .......... .......... .......... .......... 29% 301M 2s +#61 1.449 11950K .......... .......... .......... .......... .......... 29% 32.2M 2s +#61 1.451 12000K .......... .......... .......... .......... .......... 29% 278M 2s +#61 1.451 12050K .......... .......... .......... .......... .......... 29% 309M 2s +#61 1.451 12100K .......... .......... .......... .......... .......... 29% 271M 2s +#61 1.451 12150K .......... .......... .......... .......... .......... 29% 321M 2s +#61 1.452 12200K .......... .......... .......... .......... .......... 29% 171M 2s +#61 1.452 12250K .......... .......... .......... .......... .......... 30% 52.4M 2s +#61 1.453 12300K .......... .......... .......... .......... .......... 30% 271M 2s +#61 1.453 12350K .......... .......... .......... .......... .......... 30% 242M 2s +#61 1.453 12400K .......... .......... .......... .......... .......... 30% 307M 2s +#61 1.453 12450K .......... .......... .......... .......... .......... 30% 282M 2s +#61 1.453 12500K .......... .......... .......... .......... .......... 30% 211M 2s +#61 1.454 12550K .......... .......... .......... .......... .......... 30% 19.5M 2s +#61 1.456 12600K .......... .......... .......... .......... .......... 30% 239M 2s +#61 1.456 12650K .......... .......... .......... .......... .......... 30% 306M 2s +#61 1.457 12700K .......... .......... .......... .......... .......... 31% 253M 2s +#61 1.457 12750K .......... .......... .......... .......... .......... 31% 319M 2s +#61 1.457 12800K .......... .......... .......... .......... .......... 31% 316M 2s +#61 1.457 12850K .......... .......... .......... .......... .......... 31% 50.3M 2s +#61 1.458 12900K .......... .......... .......... .......... .......... 31% 204M 2s +#61 1.458 12950K .......... .......... .......... .......... .......... 31% 239M 2s +#61 1.458 13000K .......... .......... .......... .......... .......... 31% 281M 2s +#61 1.459 13050K .......... .......... .......... .......... .......... 31% 291M 2s +#61 1.459 13100K .......... .......... .......... .......... .......... 32% 63.9M 2s +#61 1.460 13150K .......... .......... .......... .......... .......... 32% 157M 1s +#61 1.460 13200K .......... .......... .......... .......... .......... 32% 178M 1s +#61 1.460 13250K .......... .......... .......... .......... .......... 32% 268M 1s +#61 1.460 13300K .......... .......... .......... .......... .......... 32% 313M 1s +#61 1.461 13350K .......... .......... .......... .......... .......... 32% 244M 1s +#61 1.461 13400K .......... .......... .......... .......... .......... 32% 66.0M 1s +#61 1.462 13450K .......... .......... .......... .......... .......... 32% 115M 1s +#61 1.462 13500K .......... .......... .......... .......... .......... 33% 192M 1s +#61 1.462 13550K .......... .......... .......... .......... .......... 33% 237M 1s +#61 1.462 13600K .......... .......... .......... .......... .......... 33% 4.47M 1s +#61 1.473 13650K .......... .......... .......... .......... .......... 33% 306M 1s +#61 1.473 13700K .......... .......... .......... .......... .......... 33% 240M 1s +#61 1.474 13750K .......... .......... .......... .......... .......... 33% 280M 1s +#61 1.474 13800K .......... .......... .......... .......... .......... 33% 332M 1s +#61 1.474 13850K .......... .......... .......... .......... .......... 33% 264M 1s +#61 1.474 13900K .......... .......... .......... .......... .......... 34% 48.4M 1s +#61 1.475 13950K .......... .......... .......... .......... .......... 34% 259M 1s +#61 1.475 14000K .......... .......... .......... .......... .......... 34% 79.3M 1s +#61 1.476 14050K .......... .......... .......... .......... .......... 34% 189M 1s +#61 1.476 14100K .......... .......... .......... .......... .......... 34% 90.0M 1s +#61 1.477 14150K .......... .......... .......... .......... .......... 34% 299M 1s +#61 1.477 14200K .......... .......... .......... .......... .......... 34% 56.7M 1s +#61 1.478 14250K .......... .......... .......... .......... .......... 34% 133M 1s +#61 1.478 14300K .......... .......... .......... .......... .......... 35% 149M 1s +#61 1.478 14350K .......... .......... .......... .......... .......... 35% 114M 1s +#61 1.479 14400K .......... .......... .......... .......... .......... 35% 280M 1s +#61 1.479 14450K .......... .......... .......... .......... .......... 35% 276M 1s +#61 1.479 14500K .......... .......... .......... .......... .......... 35% 68.1M 1s +#61 1.480 14550K .......... .......... .......... .......... .......... 35% 284M 1s +#61 1.480 14600K .......... .......... .......... .......... .......... 35% 274M 1s +#61 1.480 14650K .......... .......... .......... .......... .......... 35% 115M 1s +#61 1.481 14700K .......... .......... .......... .......... .......... 35% 255M 1s +#61 1.481 14750K .......... .......... .......... .......... .......... 36% 327M 1s +#61 1.481 14800K .......... .......... .......... .......... .......... 36% 61.5M 1s +#61 1.482 14850K .......... .......... .......... .......... .......... 36% 264M 1s +#61 1.482 14900K .......... .......... .......... .......... .......... 36% 78.5M 1s +#61 1.483 14950K .......... .......... .......... .......... .......... 36% 199M 1s +#61 1.483 15000K .......... .......... .......... .......... .......... 36% 316M 1s +#61 1.483 15050K .......... .......... .......... .......... .......... 36% 75.9M 1s +#61 1.484 15100K .......... .......... .......... .......... .......... 36% 235M 1s +#61 1.484 15150K .......... .......... .......... .......... .......... 37% 334M 1s +#61 1.484 15200K .......... .......... .......... .......... .......... 37% 69.1M 1s +#61 1.485 15250K .......... .......... .......... .......... .......... 37% 269M 1s +#61 1.485 15300K .......... .......... .......... .......... .......... 37% 330M 1s +#61 1.485 15350K .......... .......... .......... .......... .......... 37% 287M 1s +#61 1.485 15400K .......... .......... .......... .......... .......... 37% 89.9M 1s +#61 1.486 15450K .......... .......... .......... .......... .......... 37% 237M 1s +#61 1.486 15500K .......... .......... .......... .......... .......... 37% 297M 1s +#61 1.486 15550K .......... .......... .......... .......... .......... 38% 114M 1s +#61 1.487 15600K .......... .......... .......... .......... .......... 38% 234M 1s +#61 1.487 15650K .......... .......... .......... .......... .......... 38% 302M 1s +#61 1.487 15700K .......... .......... .......... .......... .......... 38% 283M 1s +#61 1.487 15750K .......... .......... .......... .......... .......... 38% 101M 1s +#61 1.488 15800K .......... .......... .......... .......... .......... 38% 263M 1s +#61 1.488 15850K .......... .......... .......... .......... .......... 38% 261M 1s +#61 1.488 15900K .......... .......... .......... .......... .......... 38% 88.5M 1s +#61 1.489 15950K .......... .......... .......... .......... .......... 39% 139M 1s +#61 1.489 16000K .......... .......... .......... .......... .......... 39% 304M 1s +#61 1.489 16050K .......... .......... .......... .......... .......... 39% 322M 1s +#61 1.489 16100K .......... .......... .......... .......... .......... 39% 114M 1s +#61 1.490 16150K .......... .......... .......... .......... .......... 39% 323M 1s +#61 1.490 16200K .......... .......... .......... .......... .......... 39% 271M 1s +#61 1.490 16250K .......... .......... .......... .......... .......... 39% 226M 1s +#61 1.490 16300K .......... .......... .......... .......... .......... 39% 97.5M 1s +#61 1.491 16350K .......... .......... .......... .......... .......... 40% 245M 1s +#61 1.491 16400K .......... .......... .......... .......... .......... 40% 318M 1s +#61 1.491 16450K .......... .......... .......... .......... .......... 40% 76.1M 1s +#61 1.492 16500K .......... .......... .......... .......... .......... 40% 151M 1s +#61 1.492 16550K .......... .......... .......... .......... .......... 40% 304M 1s +#61 1.492 16600K .......... .......... .......... .......... .......... 40% 251M 1s +#61 1.492 16650K .......... .......... .......... .......... .......... 40% 120M 1s +#61 1.493 16700K .......... .......... .......... .......... .......... 40% 256M 1s +#61 1.493 16750K .......... .......... .......... .......... .......... 40% 300M 1s +#61 1.493 16800K .......... .......... .......... .......... .......... 41% 313M 1s +#61 1.493 16850K .......... .......... .......... .......... .......... 41% 104M 1s +#61 1.494 16900K .......... .......... .......... .......... .......... 41% 286M 1s +#61 1.494 16950K .......... .......... .......... .......... .......... 41% 279M 1s +#61 1.494 17000K .......... .......... .......... .......... .......... 41% 85.2M 1s +#61 1.495 17050K .......... .......... .......... .......... .......... 41% 262M 1s +#61 1.495 17100K .......... .......... .......... .......... .......... 41% 251M 1s +#61 1.495 17150K .......... .......... .......... .......... .......... 41% 327M 1s +#61 1.495 17200K .......... .......... .......... .......... .......... 42% 279M 1s +#61 1.495 17250K .......... .......... .......... .......... .......... 42% 105M 1s +#61 1.496 17300K .......... .......... .......... .......... .......... 42% 134M 1s +#61 1.496 17350K .......... .......... .......... .......... .......... 42% 271M 1s +#61 1.496 17400K .......... .......... .......... .......... .......... 42% 319M 1s +#61 1.497 17450K .......... .......... .......... .......... .......... 42% 141M 1s +#61 1.497 17500K .......... .......... .......... .......... .......... 42% 290M 1s +#61 1.497 17550K .......... .......... .......... .......... .......... 42% 168M 1s +#61 1.497 17600K .......... .......... .......... .......... .......... 43% 275M 1s +#61 1.498 17650K .......... .......... .......... .......... .......... 43% 277M 1s +#61 1.498 17700K .......... .......... .......... .......... .......... 43% 222M 1s +#61 1.498 17750K .......... .......... .......... .......... .......... 43% 273M 1s +#61 1.498 17800K .......... .......... .......... .......... .......... 43% 282M 1s +#61 1.498 17850K .......... .......... .......... .......... .......... 43% 162M 1s +#61 1.499 17900K .......... .......... .......... .......... .......... 43% 215M 1s +#61 1.499 17950K .......... .......... .......... .......... .......... 43% 249M 1s +#61 1.499 18000K .......... .......... .......... .......... .......... 44% 332M 1s +#61 1.499 18050K .......... .......... .......... .......... .......... 44% 130M 1s +#61 1.500 18100K .......... .......... .......... .......... .......... 44% 167M 1s +#61 1.500 18150K .......... .......... .......... .......... .......... 44% 245M 1s +#61 1.500 18200K .......... .......... .......... .......... .......... 44% 259M 1s +#61 1.500 18250K .......... .......... .......... .......... .......... 44% 183M 1s +#61 1.501 18300K .......... .......... .......... .......... .......... 44% 178M 1s +#61 1.501 18350K .......... .......... .......... .......... .......... 44% 242M 1s +#61 1.501 18400K .......... .......... .......... .......... .......... 45% 303M 1s +#61 1.501 18450K .......... .......... .......... .......... .......... 45% 205M 1s +#61 1.501 18500K .......... .......... .......... .......... .......... 45% 130M 1s +#61 1.502 18550K .......... .......... .......... .......... .......... 45% 271M 1s +#61 1.502 18600K .......... .......... .......... .......... .......... 45% 263M 1s +#61 1.502 18650K .......... .......... .......... .......... .......... 45% 296M 1s +#61 1.502 18700K .......... .......... .......... .......... .......... 45% 192M 1s +#61 1.503 18750K .......... .......... .......... .......... .......... 45% 151M 1s +#61 1.503 18800K .......... .......... .......... .......... .......... 45% 310M 1s +#61 1.503 18850K .......... .......... .......... .......... .......... 46% 5.09M 1s +#61 1.513 18900K .......... .......... .......... .......... .......... 46% 256M 1s +#61 1.513 18950K .......... .......... .......... .......... .......... 46% 1.48M 1s +#61 1.546 19000K .......... .......... .......... .......... .......... 46% 256M 1s +#61 1.546 19050K .......... .......... .......... .......... .......... 46% 295M 1s +#61 1.546 19100K .......... .......... .......... .......... .......... 46% 249M 1s +#61 1.546 19150K .......... .......... .......... .......... .......... 46% 290M 1s +#61 1.546 19200K .......... .......... .......... .......... .......... 46% 151M 1s +#61 1.547 19250K .......... .......... .......... .......... .......... 47% 286M 1s +#61 1.547 19300K .......... .......... .......... .......... .......... 47% 292M 1s +#61 1.547 19350K .......... .......... .......... .......... .......... 47% 121M 1s +#61 1.547 19400K .......... .......... .......... .......... .......... 47% 193M 1s +#61 1.548 19450K .......... .......... .......... .......... .......... 47% 115M 1s +#61 1.548 19500K .......... .......... .......... .......... .......... 47% 94.9M 1s +#61 1.549 19550K .......... .......... .......... .......... .......... 47% 293M 1s +#61 1.549 19600K .......... .......... .......... .......... .......... 47% 46.0M 1s +#61 1.550 19650K .......... .......... .......... .......... .......... 48% 285M 1s +#61 1.550 19700K .......... .......... .......... .......... .......... 48% 244M 1s +#61 1.550 19750K .......... .......... .......... .......... .......... 48% 273M 1s +#61 1.550 19800K .......... .......... .......... .......... .......... 48% 294M 1s +#61 1.551 19850K .......... .......... .......... .......... .......... 48% 240M 1s +#61 1.551 19900K .......... .......... .......... .......... .......... 48% 319M 1s +#61 1.551 19950K .......... .......... .......... .......... .......... 48% 246M 1s +#61 1.551 20000K .......... .......... .......... .......... .......... 48% 88.2M 1s +#61 1.552 20050K .......... .......... .......... .......... .......... 49% 265M 1s +#61 1.552 20100K .......... .......... .......... .......... .......... 49% 158M 1s +#61 1.552 20150K .......... .......... .......... .......... .......... 49% 303M 1s +#61 1.552 20200K .......... .......... .......... .......... .......... 49% 252M 1s +#61 1.553 20250K .......... .......... .......... .......... .......... 49% 300M 1s +#61 1.553 20300K .......... .......... .......... .......... .......... 49% 314M 1s +#61 1.553 20350K .......... .......... .......... .......... .......... 49% 266M 1s +#61 1.553 20400K .......... .......... .......... .......... .......... 49% 87.7M 1s +#61 1.554 20450K .......... .......... .......... .......... .......... 50% 181M 1s +#61 1.554 20500K .......... .......... .......... .......... .......... 50% 151M 1s +#61 1.554 20550K .......... .......... .......... .......... .......... 50% 287M 1s +#61 1.554 20600K .......... .......... .......... .......... .......... 50% 236M 1s +#61 1.555 20650K .......... .......... .......... .......... .......... 50% 335M 1s +#61 1.555 20700K .......... .......... .......... .......... .......... 50% 279M 1s +#61 1.555 20750K .......... .......... .......... .......... .......... 50% 157M 1s +#61 1.555 20800K .......... .......... .......... .......... .......... 50% 324M 1s +#61 1.555 20850K .......... .......... .......... .......... .......... 50% 154M 1s +#61 1.556 20900K .......... .......... .......... .......... .......... 51% 172M 1s +#61 1.556 20950K .......... .......... .......... .......... .......... 51% 232M 1s +#61 1.556 21000K .......... .......... .......... .......... .......... 51% 295M 1s +#61 1.556 21050K .......... .......... .......... .......... .......... 51% 271M 1s +#61 1.557 21100K .......... .......... .......... .......... .......... 51% 262M 1s +#61 1.557 21150K .......... .......... .......... .......... .......... 51% 328M 1s +#61 1.557 21200K .......... .......... .......... .......... .......... 51% 143M 1s +#61 1.557 21250K .......... .......... .......... .......... .......... 51% 195M 1s +#61 1.557 21300K .......... .......... .......... .......... .......... 52% 169M 1s +#61 1.558 21350K .......... .......... .......... .......... .......... 52% 208M 1s +#61 1.558 21400K .......... .......... .......... .......... .......... 52% 301M 1s +#61 1.558 21450K .......... .......... .......... .......... .......... 52% 278M 1s +#61 1.558 21500K .......... .......... .......... .......... .......... 52% 292M 1s +#61 1.559 21550K .......... .......... .......... .......... .......... 52% 313M 1s +#61 1.559 21600K .......... .......... .......... .......... .......... 52% 147M 1s +#61 1.559 21650K .......... .......... .......... .......... .......... 52% 202M 1s +#61 1.559 21700K .......... .......... .......... .......... .......... 53% 138M 1s +#61 1.560 21750K .......... .......... .......... .......... .......... 53% 232M 1s +#61 1.560 21800K .......... .......... .......... .......... .......... 53% 309M 1s +#61 1.560 21850K .......... .......... .......... .......... .......... 53% 250M 1s +#61 1.560 21900K .......... .......... .......... .......... .......... 53% 307M 1s +#61 1.560 21950K .......... .......... .......... .......... .......... 53% 270M 1s +#61 1.560 22000K .......... .......... .......... .......... .......... 53% 305M 1s +#61 1.561 22050K .......... .......... .......... .......... .......... 53% 122M 1s +#61 1.561 22100K .......... .......... .......... .......... .......... 54% 173M 1s +#61 1.561 22150K .......... .......... .......... .......... .......... 54% 158M 1s +#61 1.562 22200K .......... .......... .......... .......... .......... 54% 194M 1s +#61 1.562 22250K .......... .......... .......... .......... .......... 54% 260M 1s +#61 1.562 22300K .......... .......... .......... .......... .......... 54% 335M 1s +#61 1.562 22350K .......... .......... .......... .......... .......... 54% 274M 1s +#61 1.562 22400K .......... .......... .......... .......... .......... 54% 301M 1s +#61 1.563 22450K .......... .......... .......... .......... .......... 54% 103M 1s +#61 1.563 22500K .......... .......... .......... .......... .......... 55% 327M 1s +#61 1.563 22550K .......... .......... .......... .......... .......... 55% 242M 1s +#61 1.563 22600K .......... .......... .......... .......... .......... 55% 200M 1s +#61 1.564 22650K .......... .......... .......... .......... .......... 55% 121M 1s +#61 1.564 22700K .......... .......... .......... .......... .......... 55% 283M 1s +#61 1.564 22750K .......... .......... .......... .......... .......... 55% 326M 1s +#61 1.564 22800K .......... .......... .......... .......... .......... 55% 119M 1s +#61 1.565 22850K .......... .......... .......... .......... .......... 55% 199M 1s +#61 1.565 22900K .......... .......... .......... .......... .......... 56% 237M 1s +#61 1.565 22950K .......... .......... .......... .......... .......... 56% 95.2M 1s +#61 1.566 23000K .......... .......... .......... .......... .......... 56% 172M 1s +#61 1.566 23050K .......... .......... .......... .......... .......... 56% 324M 1s +#61 1.566 23100K .......... .......... .......... .......... .......... 56% 263M 1s +#61 1.566 23150K .......... .......... .......... .......... .......... 56% 116M 1s +#61 1.567 23200K .......... .......... .......... .......... .......... 56% 257M 1s +#61 1.567 23250K .......... .......... .......... .......... .......... 56% 325M 1s +#61 1.567 23300K .......... .......... .......... .......... .......... 56% 80.8M 1s +#61 1.568 23350K .......... .......... .......... .......... .......... 57% 250M 1s +#61 1.568 23400K .......... .......... .......... .......... .......... 57% 318M 1s +#61 1.568 23450K .......... .......... .......... .......... .......... 57% 281M 1s +#61 1.568 23500K .......... .......... .......... .......... .......... 57% 77.9M 1s +#61 1.569 23550K .......... .......... .......... .......... .......... 57% 279M 1s +#61 1.569 23600K .......... .......... .......... .......... .......... 57% 276M 1s +#61 1.569 23650K .......... .......... .......... .......... .......... 57% 105M 1s +#61 1.570 23700K .......... .......... .......... .......... .......... 57% 258M 1s +#61 1.570 23750K .......... .......... .......... .......... .......... 58% 320M 1s +#61 1.570 23800K .......... .......... .......... .......... .......... 58% 333M 1s +#61 1.570 23850K .......... .......... .......... .......... .......... 58% 68.1M 1s +#61 1.571 23900K .......... .......... .......... .......... .......... 58% 310M 1s +#61 1.571 23950K .......... .......... .......... .......... .......... 58% 284M 1s +#61 1.571 24000K .......... .......... .......... .......... .......... 58% 80.4M 1s +#61 1.572 24050K .......... .......... .......... .......... .......... 58% 289M 1s +#61 1.572 24100K .......... .......... .......... .......... .......... 58% 256M 1s +#61 1.572 24150K .......... .......... .......... .......... .......... 59% 96.6M 1s +#61 1.573 24200K .......... .......... .......... .......... .......... 59% 257M 1s +#61 1.573 24250K .......... .......... .......... .......... .......... 59% 302M 1s +#61 1.573 24300K .......... .......... .......... .......... .......... 59% 312M 1s +#61 1.573 24350K .......... .......... .......... .......... .......... 59% 85.5M 1s +#61 1.574 24400K .......... .......... .......... .......... .......... 59% 298M 1s +#61 1.574 24450K .......... .......... .......... .......... .......... 59% 272M 1s +#61 1.574 24500K .......... .......... .......... .......... .......... 59% 79.3M 1s +#61 1.575 24550K .......... .......... .......... .......... .......... 60% 288M 1s +#61 1.575 24600K .......... .......... .......... .......... .......... 60% 254M 1s +#61 1.575 24650K .......... .......... .......... .......... .......... 60% 339M 1s +#61 1.576 24700K .......... .......... .......... .......... .......... 60% 66.2M 1s +#61 1.576 24750K .......... .......... .......... .......... .......... 60% 328M 1s +#61 1.576 24800K .......... .......... .......... .......... .......... 60% 285M 1s +#61 1.576 24850K .......... .......... .......... .......... .......... 60% 262M 1s +#61 1.576 24900K .......... .......... .......... .......... .......... 60% 310M 1s +#61 1.577 24950K .......... .......... .......... .......... .......... 61% 239M 1s +#61 1.577 25000K .......... .......... .......... .......... .......... 61% 308M 1s +#61 1.577 25050K .......... .......... .......... .......... .......... 61% 294M 1s +#61 1.577 25100K .......... .......... .......... .......... .......... 61% 86.2M 1s +#61 1.578 25150K .......... .......... .......... .......... .......... 61% 301M 1s +#61 1.578 25200K .......... .......... .......... .......... .......... 61% 251M 1s +#61 1.578 25250K .......... .......... .......... .......... .......... 61% 339M 1s +#61 1.578 25300K .......... .......... .......... .......... .......... 61% 308M 1s +#61 1.578 25350K .......... .......... .......... .......... .......... 61% 188M 1s +#61 1.579 25400K .......... .......... .......... .......... .......... 62% 282M 1s +#61 1.579 25450K .......... .......... .......... .......... .......... 62% 276M 1s +#61 1.579 25500K .......... .......... .......... .......... .......... 62% 90.1M 1s +#61 1.580 25550K .......... .......... .......... .......... .......... 62% 203M 1s +#61 1.580 25600K .......... .......... .......... .......... .......... 62% 256M 0s +#61 1.580 25650K .......... .......... .......... .......... .......... 62% 321M 0s +#61 1.580 25700K .......... .......... .......... .......... .......... 62% 67.8M 0s +#61 1.581 25750K .......... .......... .......... .......... .......... 62% 307M 0s +#61 1.581 25800K .......... .......... .......... .......... .......... 63% 323M 0s +#61 1.581 25850K .......... .......... .......... .......... .......... 63% 130M 0s +#61 1.582 25900K .......... .......... .......... .......... .......... 63% 174M 0s +#61 1.582 25950K .......... .......... .......... .......... .......... 63% 240M 0s +#61 1.582 26000K .......... .......... .......... .......... .......... 63% 295M 0s +#61 1.582 26050K .......... .......... .......... .......... .......... 63% 314M 0s +#61 1.582 26100K .......... .......... .......... .......... .......... 63% 80.8M 0s +#61 1.583 26150K .......... .......... .......... .......... .......... 63% 303M 0s +#61 1.583 26200K .......... .......... .......... .......... .......... 64% 265M 0s +#61 1.583 26250K .......... .......... .......... .......... .......... 64% 332M 0s +#61 1.583 26300K .......... .......... .......... .......... .......... 64% 135M 0s +#61 1.584 26350K .......... .......... .......... .......... .......... 64% 238M 0s +#61 1.584 26400K .......... .......... .......... .......... .......... 64% 1.13M 0s +#61 1.627 26450K .......... .......... .......... .......... .......... 64% 51.2M 0s +#61 1.628 26500K .......... .......... .......... .......... .......... 64% 247M 0s +#61 1.628 26550K .......... .......... .......... .......... .......... 64% 301M 0s +#61 1.629 26600K .......... .......... .......... .......... .......... 65% 243M 0s +#61 1.629 26650K .......... .......... .......... .......... .......... 65% 321M 0s +#61 1.629 26700K .......... .......... .......... .......... .......... 65% 265M 0s +#61 1.629 26750K .......... .......... .......... .......... .......... 65% 281M 0s +#61 1.629 26800K .......... .......... .......... .......... .......... 65% 316M 0s +#61 1.629 26850K .......... .......... .......... .......... .......... 65% 86.9M 0s +#61 1.630 26900K .......... .......... .......... .......... .......... 65% 264M 0s +#61 1.630 26950K .......... .......... .......... .......... .......... 65% 241M 0s +#61 1.630 27000K .......... .......... .......... .......... .......... 66% 313M 0s +#61 1.631 27050K .......... .......... .......... .......... .......... 66% 318M 0s +#61 1.631 27100K .......... .......... .......... .......... .......... 66% 273M 0s +#61 1.631 27150K .......... .......... .......... .......... .......... 66% 280M 0s +#61 1.631 27200K .......... .......... .......... .......... .......... 66% 270M 0s +#61 1.631 27250K .......... .......... .......... .......... .......... 66% 113M 0s +#61 1.632 27300K .......... .......... .......... .......... .......... 66% 177M 0s +#61 1.632 27350K .......... .......... .......... .......... .......... 66% 223M 0s +#61 1.632 27400K .......... .......... .......... .......... .......... 66% 283M 0s +#61 1.632 27450K .......... .......... .......... .......... .......... 67% 283M 0s +#61 1.633 27500K .......... .......... .......... .......... .......... 67% 325M 0s +#61 1.633 27550K .......... .......... .......... .......... .......... 67% 178M 0s +#61 1.633 27600K .......... .......... .......... .......... .......... 67% 273M 0s +#61 1.633 27650K .......... .......... .......... .......... .......... 67% 331M 0s +#61 1.633 27700K .......... .......... .......... .......... .......... 67% 98.6M 0s +#61 1.634 27750K .......... .......... .......... .......... .......... 67% 185M 0s +#61 1.634 27800K .......... .......... .......... .......... .......... 67% 286M 0s +#61 1.634 27850K .......... .......... .......... .......... .......... 68% 266M 0s +#61 1.634 27900K .......... .......... .......... .......... .......... 68% 319M 0s +#61 1.635 27950K .......... .......... .......... .......... .......... 68% 190M 0s +#61 1.635 28000K .......... .......... .......... .......... .......... 68% 325M 0s +#61 1.635 28050K .......... .......... .......... .......... .......... 68% 322M 0s +#61 1.635 28100K .......... .......... .......... .......... .......... 68% 105M 0s +#61 1.636 28150K .......... .......... .......... .......... .......... 68% 155M 0s +#61 1.636 28200K .......... .......... .......... .......... .......... 68% 248M 0s +#61 1.636 28250K .......... .......... .......... .......... .......... 69% 308M 0s +#61 1.636 28300K .......... .......... .......... .......... .......... 69% 292M 0s +#61 1.636 28350K .......... .......... .......... .......... .......... 69% 210M 0s +#61 1.637 28400K .......... .......... .......... .......... .......... 69% 166M 0s +#61 1.637 28450K .......... .......... .......... .......... .......... 69% 273M 0s +#61 1.637 28500K .......... .......... .......... .......... .......... 69% 124M 0s +#61 1.638 28550K .......... .......... .......... .......... .......... 69% 297M 0s +#61 1.638 28600K .......... .......... .......... .......... .......... 69% 131M 0s +#61 1.638 28650K .......... .......... .......... .......... .......... 70% 316M 0s +#61 1.638 28700K .......... .......... .......... .......... .......... 70% 261M 0s +#61 1.638 28750K .......... .......... .......... .......... .......... 70% 310M 0s +#61 1.639 28800K .......... .......... .......... .......... .......... 70% 253M 0s +#61 1.639 28850K .......... .......... .......... .......... .......... 70% 275M 0s +#61 1.639 28900K .......... .......... .......... .......... .......... 70% 319M 0s +#61 1.639 28950K .......... .......... .......... .......... .......... 70% 241M 0s +#61 1.639 29000K .......... .......... .......... .......... .......... 70% 245M 0s +#61 1.639 29050K .......... .......... .......... .......... .......... 71% 115M 0s +#61 1.640 29100K .......... .......... .......... .......... .......... 71% 267M 0s +#61 1.640 29150K .......... .......... .......... .......... .......... 71% 302M 0s +#61 1.640 29200K .......... .......... .......... .......... .......... 71% 272M 0s +#61 1.640 29250K .......... .......... .......... .......... .......... 71% 313M 0s +#61 1.641 29300K .......... .......... .......... .......... .......... 71% 304M 0s +#61 1.641 29350K .......... .......... .......... .......... .......... 71% 250M 0s +#61 1.641 29400K .......... .......... .......... .......... .......... 71% 292M 0s +#61 1.641 29450K .......... .......... .......... .......... .......... 71% 220M 0s +#61 1.641 29500K .......... .......... .......... .......... .......... 72% 143M 0s +#61 1.642 29550K .......... .......... .......... .......... .......... 72% 318M 0s +#61 1.642 29600K .......... .......... .......... .......... .......... 72% 225M 0s +#61 1.642 29650K .......... .......... .......... .......... .......... 72% 245M 0s +#61 1.642 29700K .......... .......... .......... .......... .......... 72% 257M 0s +#61 1.642 29750K .......... .......... .......... .......... .......... 72% 329M 0s +#61 1.643 29800K .......... .......... .......... .......... .......... 72% 316M 0s +#61 1.643 29850K .......... .......... .......... .......... .......... 72% 282M 0s +#61 1.643 29900K .......... .......... .......... .......... .......... 73% 141M 0s +#61 1.643 29950K .......... .......... .......... .......... .......... 73% 130M 0s +#61 1.644 30000K .......... .......... .......... .......... .......... 73% 316M 0s +#61 1.644 30050K .......... .......... .......... .......... .......... 73% 253M 0s +#61 1.644 30100K .......... .......... .......... .......... .......... 73% 173M 0s +#61 1.644 30150K .......... .......... .......... .......... .......... 73% 293M 0s +#61 1.644 30200K .......... .......... .......... .......... .......... 73% 277M 0s +#61 1.645 30250K .......... .......... .......... .......... .......... 73% 293M 0s +#61 1.645 30300K .......... .......... .......... .......... .......... 74% 323M 0s +#61 1.645 30350K .......... .......... .......... .......... .......... 74% 288M 0s +#61 1.645 30400K .......... .......... .......... .......... .......... 74% 178M 0s +#61 1.645 30450K .......... .......... .......... .......... .......... 74% 125M 0s +#61 1.646 30500K .......... .......... .......... .......... .......... 74% 291M 0s +#61 1.646 30550K .......... .......... .......... .......... .......... 74% 231M 0s +#61 1.646 30600K .......... .......... .......... .......... .......... 74% 258M 0s +#61 1.646 30650K .......... .......... .......... .......... .......... 74% 285M 0s +#61 1.647 30700K .......... .......... .......... .......... .......... 75% 262M 0s +#61 1.647 30750K .......... .......... .......... .......... .......... 75% 293M 0s +#61 1.647 30800K .......... .......... .......... .......... .......... 75% 293M 0s +#61 1.647 30850K .......... .......... .......... .......... .......... 75% 127M 0s +#61 1.647 30900K .......... .......... .......... .......... .......... 75% 264M 0s +#61 1.648 30950K .......... .......... .......... .......... .......... 75% 269M 0s +#61 1.648 31000K .......... .......... .......... .......... .......... 75% 288M 0s +#61 1.648 31050K .......... .......... .......... .......... .......... 75% 171M 0s +#61 1.648 31100K .......... .......... .......... .......... .......... 76% 189M 0s +#61 1.648 31150K .......... .......... .......... .......... .......... 76% 300M 0s +#61 1.649 31200K .......... .......... .......... .......... .......... 76% 224M 0s +#61 1.649 31250K .......... .......... .......... .......... .......... 76% 332M 0s +#61 1.649 31300K .......... .......... .......... .......... .......... 76% 336M 0s +#61 1.649 31350K .......... .......... .......... .......... .......... 76% 285M 0s +#61 1.649 31400K .......... .......... .......... .......... .......... 76% 319M 0s +#61 1.649 31450K .......... .......... .......... .......... .......... 76% 235M 0s +#61 1.650 31500K .......... .......... .......... .......... .......... 76% 320M 0s +#61 1.650 31550K .......... .......... .......... .......... .......... 77% 289M 0s +#61 1.650 31600K .......... .......... .......... .......... .......... 77% 272M 0s +#61 1.650 31650K .......... .......... .......... .......... .......... 77% 319M 0s +#61 1.650 31700K .......... .......... .......... .......... .......... 77% 272M 0s +#61 1.651 31750K .......... .......... .......... .......... .......... 77% 292M 0s +#61 1.651 31800K .......... .......... .......... .......... .......... 77% 292M 0s +#61 1.651 31850K .......... .......... .......... .......... .......... 77% 278M 0s +#61 1.651 31900K .......... .......... .......... .......... .......... 77% 127M 0s +#61 1.651 31950K .......... .......... .......... .......... .......... 78% 266M 0s +#61 1.652 32000K .......... .......... .......... .......... .......... 78% 301M 0s +#61 1.652 32050K .......... .......... .......... .......... .......... 78% 334M 0s +#61 1.652 32100K .......... .......... .......... .......... .......... 78% 261M 0s +#61 1.652 32150K .......... .......... .......... .......... .......... 78% 296M 0s +#61 1.652 32200K .......... .......... .......... .......... .......... 78% 270M 0s +#61 1.652 32250K .......... .......... .......... .......... .......... 78% 298M 0s +#61 1.653 32300K .......... .......... .......... .......... .......... 78% 315M 0s +#61 1.653 32350K .......... .......... .......... .......... .......... 79% 267M 0s +#61 1.653 32400K .......... .......... .......... .......... .......... 79% 290M 0s +#61 1.653 32450K .......... .......... .......... .......... .......... 79% 260M 0s +#61 1.653 32500K .......... .......... .......... .......... .......... 79% 308M 0s +#61 1.653 32550K .......... .......... .......... .......... .......... 79% 294M 0s +#61 1.654 32600K .......... .......... .......... .......... .......... 79% 266M 0s +#61 1.654 32650K .......... .......... .......... .......... .......... 79% 304M 0s +#61 1.654 32700K .......... .......... .......... .......... .......... 79% 271M 0s +#61 1.654 32750K .......... .......... .......... .......... .......... 80% 333M 0s +#61 1.654 32800K .......... .......... .......... .......... .......... 80% 348M 0s +#61 1.654 32850K .......... .......... .......... .......... .......... 80% 97.1M 0s +#61 1.655 32900K .......... .......... .......... .......... .......... 80% 269M 0s +#61 1.655 32950K .......... .......... .......... .......... .......... 80% 281M 0s +#61 1.655 33000K .......... .......... .......... .......... .......... 80% 297M 0s +#61 1.655 33050K .......... .......... .......... .......... .......... 80% 303M 0s +#61 1.656 33100K .......... .......... .......... .......... .......... 80% 272M 0s +#61 1.656 33150K .......... .......... .......... .......... .......... 81% 301M 0s +#61 1.656 33200K .......... .......... .......... .......... .......... 81% 285M 0s +#61 1.656 33250K .......... .......... .......... .......... .......... 81% 320M 0s +#61 1.656 33300K .......... .......... .......... .......... .......... 81% 333M 0s +#61 1.656 33350K .......... .......... .......... .......... .......... 81% 269M 0s +#61 1.657 33400K .......... .......... .......... .......... .......... 81% 324M 0s +#61 1.657 33450K .......... .......... .......... .......... .......... 81% 249M 0s +#61 1.657 33500K .......... .......... .......... .......... .......... 81% 315M 0s +#61 1.657 33550K .......... .......... .......... .......... .......... 81% 301M 0s +#61 1.657 33600K .......... .......... .......... .......... .......... 82% 279M 0s +#61 1.657 33650K .......... .......... .......... .......... .......... 82% 314M 0s +#61 1.658 33700K .......... .......... .......... .......... .......... 82% 277M 0s +#61 1.658 33750K .......... .......... .......... .......... .......... 82% 313M 0s +#61 1.658 33800K .......... .......... .......... .......... .......... 82% 324M 0s +#61 1.658 33850K .......... .......... .......... .......... .......... 82% 280M 0s +#61 1.658 33900K .......... .......... .......... .......... .......... 82% 306M 0s +#61 1.658 33950K .......... .......... .......... .......... .......... 82% 982K 0s +#61 1.709 34000K .......... .......... .......... .......... .......... 83% 238M 0s +#61 1.710 34050K .......... .......... .......... .......... .......... 83% 81.8M 0s +#61 1.710 34100K .......... .......... .......... .......... .......... 83% 244M 0s +#61 1.710 34150K .......... .......... .......... .......... .......... 83% 262M 0s +#61 1.711 34200K .......... .......... .......... .......... .......... 83% 239M 0s +#61 1.711 34250K .......... .......... .......... .......... .......... 83% 310M 0s +#61 1.711 34300K .......... .......... .......... .......... .......... 83% 312M 0s +#61 1.711 34350K .......... .......... .......... .......... .......... 83% 241M 0s +#61 1.711 34400K .......... .......... .......... .......... .......... 84% 280M 0s +#61 1.711 34450K .......... .......... .......... .......... .......... 84% 293M 0s +#61 1.712 34500K .......... .......... .......... .......... .......... 84% 336M 0s +#61 1.712 34550K .......... .......... .......... .......... .......... 84% 315M 0s +#61 1.712 34600K .......... .......... .......... .......... .......... 84% 249M 0s +#61 1.712 34650K .......... .......... .......... .......... .......... 84% 309M 0s +#61 1.712 34700K .......... .......... .......... .......... .......... 84% 244M 0s +#61 1.712 34750K .......... .......... .......... .......... .......... 84% 322M 0s +#61 1.713 34800K .......... .......... .......... .......... .......... 85% 293M 0s +#61 1.713 34850K .......... .......... .......... .......... .......... 85% 281M 0s +#61 1.713 34900K .......... .......... .......... .......... .......... 85% 187M 0s +#61 1.713 34950K .......... .......... .......... .......... .......... 85% 278M 0s +#61 1.713 35000K .......... .......... .......... .......... .......... 85% 301M 0s +#61 1.714 35050K .......... .......... .......... .......... .......... 85% 244M 0s +#61 1.714 35100K .......... .......... .......... .......... .......... 85% 268M 0s +#61 1.714 35150K .......... .......... .......... .......... .......... 85% 303M 0s +#61 1.714 35200K .......... .......... .......... .......... .......... 86% 271M 0s +#61 1.714 35250K .......... .......... .......... .......... .......... 86% 324M 0s +#61 1.714 35300K .......... .......... .......... .......... .......... 86% 320M 0s +#61 1.715 35350K .......... .......... .......... .......... .......... 86% 261M 0s +#61 1.715 35400K .......... .......... .......... .......... .......... 86% 316M 0s +#61 1.715 35450K .......... .......... .......... .......... .......... 86% 225M 0s +#61 1.715 35500K .......... .......... .......... .......... .......... 86% 314M 0s +#61 1.715 35550K .......... .......... .......... .......... .......... 86% 287M 0s +#61 1.715 35600K .......... .......... .......... .......... .......... 86% 253M 0s +#61 1.716 35650K .......... .......... .......... .......... .......... 87% 316M 0s +#61 1.716 35700K .......... .......... .......... .......... .......... 87% 261M 0s +#61 1.716 35750K .......... .......... .......... .......... .......... 87% 309M 0s +#61 1.716 35800K .......... .......... .......... .......... .......... 87% 331M 0s +#61 1.716 35850K .......... .......... .......... .......... .......... 87% 275M 0s +#61 1.716 35900K .......... .......... .......... .......... .......... 87% 308M 0s +#61 1.717 35950K .......... .......... .......... .......... .......... 87% 288M 0s +#61 1.717 36000K .......... .......... .......... .......... .......... 87% 329M 0s +#61 1.717 36050K .......... .......... .......... .......... .......... 88% 240M 0s +#61 1.717 36100K .......... .......... .......... .......... .......... 88% 217M 0s +#61 1.717 36150K .......... .......... .......... .......... .......... 88% 176M 0s +#61 1.718 36200K .......... .......... .......... .......... .......... 88% 259M 0s +#61 1.718 36250K .......... .......... .......... .......... .......... 88% 288M 0s +#61 1.718 36300K .......... .......... .......... .......... .......... 88% 315M 0s +#61 1.718 36350K .......... .......... .......... .......... .......... 88% 282M 0s +#61 1.718 36400K .......... .......... .......... .......... .......... 88% 320M 0s +#61 1.718 36450K .......... .......... .......... .......... .......... 89% 262M 0s +#61 1.719 36500K .......... .......... .......... .......... .......... 89% 144M 0s +#61 1.719 36550K .......... .......... .......... .......... .......... 89% 318M 0s +#61 1.719 36600K .......... .......... .......... .......... .......... 89% 259M 0s +#61 1.719 36650K .......... .......... .......... .......... .......... 89% 305M 0s +#61 1.719 36700K .......... .......... .......... .......... .......... 89% 255M 0s +#61 1.720 36750K .......... .......... .......... .......... .......... 89% 106M 0s +#61 1.720 36800K .......... .......... .......... .......... .......... 89% 312M 0s +#61 1.720 36850K .......... .......... .......... .......... .......... 90% 254M 0s +#61 1.721 36900K .......... .......... .......... .......... .......... 90% 323M 0s +#61 1.721 36950K .......... .......... .......... .......... .......... 90% 150M 0s +#61 1.721 37000K .......... .......... .......... .......... .......... 90% 305M 0s +#61 1.721 37050K .......... .......... .......... .......... .......... 90% 147M 0s +#61 1.721 37100K .......... .......... .......... .......... .......... 90% 249M 0s +#61 1.722 37150K .......... .......... .......... .......... .......... 90% 304M 0s +#61 1.722 37200K .......... .......... .......... .......... .......... 90% 275M 0s +#61 1.722 37250K .......... .......... .......... .......... .......... 91% 308M 0s +#61 1.722 37300K .......... .......... .......... .......... .......... 91% 336M 0s +#61 1.722 37350K .......... .......... .......... .......... .......... 91% 274M 0s +#61 1.722 37400K .......... .......... .......... .......... .......... 91% 330M 0s +#61 1.723 37450K .......... .......... .......... .......... .......... 91% 280M 0s +#61 1.723 37500K .......... .......... .......... .......... .......... 91% 320M 0s +#61 1.723 37550K .......... .......... .......... .......... .......... 91% 315M 0s +#61 1.723 37600K .......... .......... .......... .......... .......... 91% 268M 0s +#61 1.723 37650K .......... .......... .......... .......... .......... 91% 306M 0s +#61 1.723 37700K .......... .......... .......... .......... .......... 92% 269M 0s +#61 1.724 37750K .......... .......... .......... .......... .......... 92% 319M 0s +#61 1.724 37800K .......... .......... .......... .......... .......... 92% 322M 0s +#61 1.724 37850K .......... .......... .......... .......... .......... 92% 270M 0s +#61 1.724 37900K .......... .......... .......... .......... .......... 92% 317M 0s +#61 1.724 37950K .......... .......... .......... .......... .......... 92% 276M 0s +#61 1.724 38000K .......... .......... .......... .......... .......... 92% 311M 0s +#61 1.725 38050K .......... .......... .......... .......... .......... 92% 293M 0s +#61 1.725 38100K .......... .......... .......... .......... .......... 93% 276M 0s +#61 1.725 38150K .......... .......... .......... .......... .......... 93% 312M 0s +#61 1.725 38200K .......... .......... .......... .......... .......... 93% 276M 0s +#61 1.725 38250K .......... .......... .......... .......... .......... 93% 296M 0s +#61 1.725 38300K .......... .......... .......... .......... .......... 93% 209M 0s +#61 1.726 38350K .......... .......... .......... .......... .......... 93% 166M 0s +#61 1.726 38400K .......... .......... .......... .......... .......... 93% 233M 0s +#61 1.726 38450K .......... .......... .......... .......... .......... 93% 242M 0s +#61 1.726 38500K .......... .......... .......... .......... .......... 94% 273M 0s +#61 1.727 38550K .......... .......... .......... .......... .......... 94% 253M 0s +#61 1.727 38600K .......... .......... .......... .......... .......... 94% 232M 0s +#61 1.727 38650K .......... .......... .......... .......... .......... 94% 283M 0s +#61 1.727 38700K .......... .......... .......... .......... .......... 94% 81.7M 0s +#61 1.728 38750K .......... .......... .......... .......... .......... 94% 224M 0s +#61 1.728 38800K .......... .......... .......... .......... .......... 94% 241M 0s +#61 1.728 38850K .......... .......... .......... .......... .......... 94% 224M 0s +#61 1.728 38900K .......... .......... .......... .......... .......... 95% 275M 0s +#61 1.729 38950K .......... .......... .......... .......... .......... 95% 240M 0s +#61 1.729 39000K .......... .......... .......... .......... .......... 95% 246M 0s +#61 1.729 39050K .......... .......... .......... .......... .......... 95% 272M 0s +#61 1.729 39100K .......... .......... .......... .......... .......... 95% 237M 0s +#61 1.729 39150K .......... .......... .......... .......... .......... 95% 294M 0s +#61 1.730 39200K .......... .......... .......... .......... .......... 95% 207M 0s +#61 1.730 39250K .......... .......... .......... .......... .......... 95% 226M 0s +#61 1.730 39300K .......... .......... .......... .......... .......... 96% 248M 0s +#61 1.730 39350K .......... .......... .......... .......... .......... 96% 231M 0s +#61 1.730 39400K .......... .......... .......... .......... .......... 96% 227M 0s +#61 1.731 39450K .......... .......... .......... .......... .......... 96% 214M 0s +#61 1.731 39500K .......... .......... .......... .......... .......... 96% 284M 0s +#61 1.731 39550K .......... .......... .......... .......... .......... 96% 269M 0s +#61 1.731 39600K .......... .......... .......... .......... .......... 96% 258M 0s +#61 1.731 39650K .......... .......... .......... .......... .......... 96% 281M 0s +#61 1.732 39700K .......... .......... .......... .......... .......... 96% 249M 0s +#61 1.732 39750K .......... .......... .......... .......... .......... 97% 249M 0s +#61 1.732 39800K .......... .......... .......... .......... .......... 97% 273M 0s +#61 1.732 39850K .......... .......... .......... .......... .......... 97% 246M 0s +#61 1.732 39900K .......... .......... .......... .......... .......... 97% 270M 0s +#61 1.732 39950K .......... .......... .......... .......... .......... 97% 237M 0s +#61 1.733 40000K .......... .......... .......... .......... .......... 97% 264M 0s +#61 1.733 40050K .......... .......... .......... .......... .......... 97% 285M 0s +#61 1.733 40100K .......... .......... .......... .......... .......... 97% 238M 0s +#61 1.733 40150K .......... .......... .......... .......... .......... 98% 320M 0s +#61 1.733 40200K .......... .......... .......... .......... .......... 98% 261M 0s +#61 1.734 40250K .......... .......... .......... .......... .......... 98% 298M 0s +#61 1.734 40300K .......... .......... .......... .......... .......... 98% 261M 0s +#61 1.734 40350K .......... .......... .......... .......... .......... 98% 255M 0s +#61 1.734 40400K .......... .......... .......... .......... .......... 98% 303M 0s +#61 1.734 40450K .......... .......... .......... .......... .......... 98% 267M 0s +#61 1.734 40500K .......... .......... .......... .......... .......... 98% 303M 0s +#61 1.735 40550K .......... .......... .......... .......... .......... 99% 249M 0s +#61 1.735 40600K .......... .......... .......... .......... .......... 99% 273M 0s +#61 1.735 40650K .......... .......... .......... .......... .......... 99% 325M 0s +#61 1.735 40700K .......... .......... .......... .......... .......... 99% 276M 0s +#61 1.735 40750K .......... .......... .......... .......... .......... 99% 216M 0s +#61 1.736 40800K .......... .......... .......... .......... .......... 99% 301M 0s +#61 1.736 40850K .......... .......... .......... .......... .......... 99% 278M 0s +#61 1.736 40900K .......... .......... .......... .......... ..... +#61 ... + +#59 [opea/multimodalqna:latest comps-base 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/GenAIComps/requirements.txt +#59 10.20 Collecting typing-extensions>=4.8.0 (from fastapi->-r /home/user/GenAIComps/requirements.txt (line 5)) +#59 10.21 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#59 10.27 Collecting anyio (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) +#59 10.27 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#59 10.33 Collecting certifi (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) +#59 10.34 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#59 10.40 Collecting httpcore==1.* (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) +#59 10.41 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#59 10.46 Collecting idna (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) +#59 10.47 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#59 10.52 Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) +#59 10.52 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#59 10.58 Collecting six>=1.9.0 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 10.59 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#59 10.64 Collecting python-dateutil>=2.5.3 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 10.64 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#59 10.73 Collecting google-auth>=1.0.1 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 10.74 Downloading google_auth-2.38.0-py2.py3-none-any.whl.metadata (4.8 kB) +#59 10.81 Collecting websocket-client!=0.40.0,!=0.41.*,!=0.42.*,>=0.32.0 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 10.82 Downloading websocket_client-1.8.0-py3-none-any.whl.metadata (8.0 kB) +#59 10.88 Collecting requests-oauthlib (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 10.88 Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) +#59 10.93 Collecting oauthlib>=3.2.2 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 10.94 Downloading oauthlib-3.2.2-py3-none-any.whl.metadata (7.5 kB) +#59 11.00 Collecting urllib3>=1.24.2 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 11.01 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#59 11.05 Collecting durationpy>=0.7 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 11.05 Downloading durationpy-0.9-py3-none-any.whl.metadata (338 bytes) +#59 11.43 Collecting SQLAlchemy<3,>=1.4 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 11.44 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) +#59 11.54 Collecting langchain-core<0.4.0,>=0.3.33 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 11.55 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) +#59 11.59 Collecting langchain-text-splitters<0.4.0,>=0.3.3 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 11.60 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) +#59 11.70 Collecting langsmith<0.4,>=0.1.17 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 11.71 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) +#59 11.73 Collecting numpy>=1.17.3 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#59 11.73 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#59 11.91 Collecting tenacity!=8.4.0,<10,>=8.1.0 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 11.91 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) +#59 11.98 Collecting dataclasses-json<0.7,>=0.5.7 (from langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) +#59 11.99 Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) +#59 12.03 Collecting httpx-sse<0.5.0,>=0.4.0 (from langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) +#59 12.04 Downloading httpx_sse-0.4.0-py3-none-any.whl.metadata (9.0 kB) +#59 12.16 Collecting pydantic-settings<3.0.0,>=2.4.0 (from langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) +#59 12.17 Downloading pydantic_settings-2.7.1-py3-none-any.whl.metadata (3.5 kB) +#59 12.22 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) +#59 12.22 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#59 12.29 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) +#59 12.30 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) +#59 12.36 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) +#59 12.37 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#59 12.42 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) +#59 12.43 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#59 12.49 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) +#59 12.50 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#59 13.26 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) +#59 13.26 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#59 13.31 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) +#59 13.32 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) +#59 13.37 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) +#59 13.38 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#59 13.67 Collecting protobuf<6.0,>=5.0 (from opentelemetry-proto==1.29.0->opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) +#59 13.69 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#59 13.73 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/GenAIComps/requirements.txt (line 12)) +#59 13.75 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) +#59 13.82 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/GenAIComps/requirements.txt (line 14)) +#59 13.84 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#59 13.99 Collecting charset-normalizer<4,>=2 (from requests->-r /home/user/GenAIComps/requirements.txt (line 18)) +#59 14.02 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#59 14.11 Collecting click>=7.0 (from uvicorn->-r /home/user/GenAIComps/requirements.txt (line 20)) +#59 14.12 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#59 14.24 Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses-json<0.7,>=0.5.7->langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) +#59 14.25 Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) +#59 14.41 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) +#59 14.42 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#59 14.51 Collecting cachetools<6.0,>=2.0.0 (from google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 14.53 Downloading cachetools-5.5.1-py3-none-any.whl.metadata (5.4 kB) +#59 14.59 Collecting pyasn1-modules>=0.2.1 (from google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 14.60 Downloading pyasn1_modules-0.4.1-py3-none-any.whl.metadata (3.5 kB) +#59 14.66 Collecting rsa<5,>=3.1.4 (from google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 14.67 Downloading rsa-4.9-py3-none-any.whl.metadata (4.2 kB) +#59 14.74 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) +#59 14.75 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#59 14.82 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 14.83 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) +#59 14.89 Collecting packaging<25,>=23.2 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 14.91 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#59 15.04 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 15.05 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) +#59 15.17 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 15.20 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) +#59 15.26 Collecting annotated-types>=0.6.0 (from pydantic>=1.10.8->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#59 15.27 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#59 16.02 Collecting pydantic-core==2.27.2 (from pydantic>=1.10.8->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#59 16.03 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#59 16.11 Collecting python-dotenv>=0.21.0 (from pydantic-settings<3.0.0,>=2.4.0->langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) +#59 16.13 Downloading python_dotenv-1.0.1-py3-none-any.whl.metadata (23 kB) +#59 16.20 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#59 16.22 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#59 16.27 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#59 16.28 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#59 16.48 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 16.49 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#59 16.55 Collecting sniffio>=1.1 (from anyio->httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) +#59 16.56 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#59 16.64 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#59 16.65 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) +#59 16.88 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) +#59 16.89 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) +#59 16.96 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) +#59 16.97 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#59 17.05 Collecting pyasn1<0.7.0,>=0.4.6 (from pyasn1-modules>=0.2.1->google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) +#59 17.06 Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) +#59 17.15 Downloading aiofiles-24.1.0-py3-none-any.whl (15 kB) +#59 17.19 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) +#59 17.40 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 14.3 MB/s eta 0:00:00 +#59 17.41 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#59 17.42 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#59 17.45 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#59 17.46 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#59 17.47 Downloading kubernetes-32.0.0-py2.py3-none-any.whl (2.0 MB) +#59 17.49 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 122.6 MB/s eta 0:00:00 +#59 17.50 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) +#59 17.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 120.2 MB/s eta 0:00:00 +#59 17.53 Downloading langchain_community-0.3.16-py3-none-any.whl (2.5 MB) +#59 17.57 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 109.7 MB/s eta 0:00:00 +#59 17.57 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) +#59 17.59 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) +#59 17.61 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) +#59 17.62 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) +#59 17.63 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) +#59 17.64 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) +#59 17.66 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) +#59 17.67 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) +#59 17.68 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#59 17.72 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 117.0 MB/s eta 0:00:00 +#59 17.73 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#59 17.74 Downloading pypdf-5.2.0-py3-none-any.whl (298 kB) +#59 17.80 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) +#59 17.81 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#59 17.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 148.4 MB/s eta 0:00:00 +#59 17.82 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#59 17.83 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#59 17.89 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#59 17.91 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#59 17.93 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#59 17.94 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#59 17.95 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#59 17.96 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#59 17.97 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#59 17.97 Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) +#59 18.01 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#59 18.01 Downloading durationpy-0.9-py3-none-any.whl (3.5 kB) +#59 18.04 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) +#59 18.07 Downloading google_auth-2.38.0-py2.py3-none-any.whl (210 kB) +#59 18.08 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#59 18.09 Downloading httpx_sse-0.4.0-py3-none-any.whl (7.8 kB) +#59 18.10 Downloading idna-3.10-py3-none-any.whl (70 kB) +#59 18.11 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) +#59 18.12 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) +#59 18.17 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) +#59 18.18 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) +#59 18.20 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) +#59 18.21 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) +#59 18.36 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 123.3 MB/s eta 0:00:00 +#59 18.37 Downloading oauthlib-3.2.2-py3-none-any.whl (151 kB) +#59 18.39 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#59 18.40 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#59 18.41 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) +#59 18.42 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) +#59 18.43 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#59 18.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 196.9 MB/s eta 0:00:00 +#59 18.45 Downloading pydantic_settings-2.7.1-py3-none-any.whl (29 kB) +#59 18.46 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#59 18.47 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#59 18.48 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#59 18.49 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB) +#59 18.51 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 224.5 MB/s eta 0:00:00 +#59 18.52 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#59 18.52 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#59 18.53 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) +#59 18.54 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#59 18.55 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#59 18.56 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#59 18.57 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#59 18.58 Downloading websocket_client-1.8.0-py3-none-any.whl (58 kB) +#59 18.59 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) +#59 18.60 Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) +#59 18.61 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#59 18.62 Downloading cachetools-5.5.1-py3-none-any.whl (9.5 kB) +#59 18.63 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#59 18.64 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (602 kB) +#59 18.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 602.4/602.4 kB 245.3 MB/s eta 0:00:00 +#59 18.65 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#59 18.68 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 202.5 MB/s eta 0:00:00 +#59 18.69 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) +#59 18.70 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#59 18.71 Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) +#59 18.72 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#59 18.73 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#59 18.74 Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB) +#59 18.75 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#59 18.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 195.4 MB/s eta 0:00:00 +#59 18.76 Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB) +#59 18.77 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) +#59 18.78 Downloading rsa-4.9-py3-none-any.whl (34 kB) +#59 18.79 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#59 18.80 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) +#59 18.81 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#59 18.82 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) +#59 18.84 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 232.0 MB/s eta 0:00:00 +#59 18.85 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) +#59 18.86 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#59 18.87 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) +#59 18.88 Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) +#59 19.11 Building wheels for collected packages: docx2txt +#59 19.11 Building wheel for docx2txt (setup.py): started +#59 19.31 Building wheel for docx2txt (setup.py): finished with status 'done' +#59 19.31 Created wheel for docx2txt: filename=docx2txt-0.8-py3-none-any.whl size=3990 sha256=33a45c5070de0885b8cd25c5bbb44b993414f6d8f32941fc26717e461438b8a4 +#59 19.31 Stored in directory: /tmp/pip-ephem-wheel-cache-sqlx55pq/wheels/0f/0e/7a/3094a4ceefe657bff7e12dd9592a9d5b6487ef4338ace0afa6 +#59 19.31 Successfully built docx2txt +#59 19.52 Installing collected packages: durationpy, docx2txt, zstandard, zipp, wrapt, websocket-client, urllib3, typing-extensions, tenacity, sniffio, six, shortuuid, pyyaml, python-multipart, python-dotenv, pypdf, pygments, pyasn1, protobuf, propcache, prometheus-client, Pillow, packaging, orjson, oauthlib, numpy, mypy-extensions, multidict, mdurl, jsonpointer, idna, httpx-sse, h11, grpcio, greenlet, frozenlist, click, charset-normalizer, certifi, cachetools, attrs, annotated-types, aiohappyeyeballs, aiofiles, yarl, uvicorn, typing-inspect, types-requests, SQLAlchemy, rsa, requests, python-dateutil, pydantic-core, pyasn1-modules, opentelemetry-proto, marshmallow, markdown-it-py, jsonpatch, importlib-metadata, httpcore, googleapis-common-protos, deprecated, anyio, aiosignal, starlette, rich, requests-toolbelt, requests-oauthlib, pydantic, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, httpx, google-auth, dataclasses-json, aiohttp, pydantic-settings, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, kubernetes, fastapi, docarray, opentelemetry-sdk, langchain-core, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, langchain-text-splitters, opentelemetry-exporter-otlp, langchain, langchain-community +#59 ... + +#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ +#61 1.736 40900K .......... .......... .......... .......... .......... 99% 969K 0s +#61 1.788 40950K .......... .......... .......... 100% 16.0M=1.0s +#61 1.789 +#61 1.789 2025-02-03 22:03:49 (38.4 MB/s) - ‘ffmpeg-git-amd64-static.tar.xz’ saved [41964060/41964060] +#61 1.789 +#61 1.794 ffmpeg-git-20240629-amd64-static/GPLv3.txt +#61 1.794 ffmpeg-git-20240629-amd64-static/manpages/ +#61 1.794 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-all.txt +#61 1.814 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-scaler.txt +#61 1.814 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-resampler.txt +#61 1.814 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-filters.txt +#61 1.815 ffmpeg-git-20240629-amd64-static/manpages/ffprobe.txt +#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-devices.txt +#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-utils.txt +#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-protocols.txt +#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-codecs.txt +#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-bitstream-filters.txt +#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg.txt +#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-formats.txt +#61 1.817 ffmpeg-git-20240629-amd64-static/ffprobe +#61 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 11.91 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl (178.7 MB) +#54 14.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.7/178.7 MB 63.2 MB/s eta 0:00:00 +#54 14.76 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl (1.8 MB) +#54 14.82 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 28.8 MB/s eta 0:00:00 +#54 14.87 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#54 16.09 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 4.2 MB/s eta 0:00:00 +#54 16.10 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#54 16.15 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#54 16.21 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) +#54 16.28 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) +#54 16.35 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#54 16.55 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 9.2 MB/s eta 0:00:00 +#54 16.58 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) +#54 17.47 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 18.8 MB/s eta 0:00:00 +#54 17.51 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) +#54 18.32 Installing collected packages: mpmath, typing-extensions, sympy, pillow, numpy, networkx, MarkupSafe, fsspec, filelock, jinja2, torch, torchvision +#54 ... + +#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ +#61 3.233 ffmpeg-git-20240629-amd64-static/qt-faststart +#61 3.236 ffmpeg-git-20240629-amd64-static/model/ +#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_v0.6.1.json +#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/ +#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020.model +#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005 +#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015 +#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016.model +#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.model +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008.model +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020 +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017.model +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014 +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011 +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012 +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004 +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005.model +#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003.model +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019 +#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014.model +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018.model +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.json +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016 +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010.model +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001.model +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003 +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015.model +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013 +#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1.json +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/ +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012 +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006.model +#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013.model +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001 +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011.model +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007 +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006 +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.model +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017 +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008 +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003 +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002 +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004.model +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001.model +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018.model +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002.model +#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.json +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014 +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017.model +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019 +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009.model +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013 +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007.model +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016.model +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010 +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016 +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl.model +#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3.json +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1neg.json +#61 3.243 ffmpeg-git-20240629-amd64-static/model/000-PLEASE-README.TXT +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_float_4k_v0.6.1.json +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/ +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008.model +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012 +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002.model +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007.model +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011.model +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019 +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017.model +#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008 +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004.model +#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.json +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006 +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001.model +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016.model +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.model +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015 +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003.model +#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011 +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016 +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003 +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014.model +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018.model +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001 +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002 +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012.model +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.json +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl +#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_b_v0.6.3.json +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/ +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003 +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012 +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017 +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016 +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015 +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006 +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009 +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017.model +#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.json +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008 +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001 +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011 +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004 +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002.model +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005 +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014 +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014.model +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007.model +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.model +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002 +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020.model +#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007 +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018.model +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020 +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010 +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013.model +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011.model +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016.model +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010.model +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006.model +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019 +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013 +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018 +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005.model +#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.json +#61 3.249 ffmpeg-git-20240629-amd64-static/model/other_models/ +#61 3.249 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl.model +#61 3.250 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl +#61 3.250 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v2.pkl +#61 3.252 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.json +#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl +#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl +#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/niqe_v0.1.pkl +#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl.model +#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl.model +#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl.model +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl.model +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl.model +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl.model +#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.json +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl.model +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl.model +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl.model +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.1mfz.json +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl.model +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl +#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v1.pkl +#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl.model +#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl +#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/model_V8a.model +#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl.model +#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl.model +#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl.model +#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.json +#61 3.257 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl.model +#61 3.257 ffmpeg-git-20240629-amd64-static/readme.txt +#61 3.257 ffmpeg-git-20240629-amd64-static/ffmpeg +#61 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 26.85 Selecting previously unselected package python3.11. +#42 26.86 Preparing to unpack .../python3.11_3.11.2-6+deb12u5_amd64.deb ... +#42 26.87 Unpacking python3.11 (3.11.2-6+deb12u5) ... +#42 27.47 Selecting previously unselected package libpython3-stdlib:amd64. +#42 27.49 Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ... +#42 27.61 Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ... +#42 28.26 Setting up python3-minimal (3.11.2-1+b1) ... +#42 29.40 Selecting previously unselected package python3. +#42 29.40 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 15343 files and directories currently installed.) +#42 29.40 Preparing to unpack .../000-python3_3.11.2-1+b1_amd64.deb ... +#42 29.41 Unpacking python3 (3.11.2-1+b1) ... +#42 29.44 Selecting previously unselected package bzip2. +#42 29.44 Preparing to unpack .../001-bzip2_1.0.8-5+b1_amd64.deb ... +#42 29.44 Unpacking bzip2 (1.0.8-5+b1) ... +#42 29.82 Selecting previously unselected package wget. +#42 29.82 Preparing to unpack .../002-wget_1.21.3-1+b2_amd64.deb ... +#42 29.87 Unpacking wget (1.21.3-1+b2) ... +#42 30.34 Selecting previously unselected package xz-utils. +#42 30.34 Preparing to unpack .../003-xz-utils_5.4.1-0.2_amd64.deb ... +#42 30.44 Unpacking xz-utils (5.4.1-0.2) ... +#42 31.24 Selecting previously unselected package hicolor-icon-theme. +#42 31.25 Preparing to unpack .../004-hicolor-icon-theme_0.17-2_all.deb ... +#42 31.33 Unpacking hicolor-icon-theme (0.17-2) ... +#42 31.62 Selecting previously unselected package libgdk-pixbuf2.0-common. +#42 31.63 Preparing to unpack .../005-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u1_all.deb ... +#42 31.63 Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... +#42 31.67 Selecting previously unselected package shared-mime-info. +#42 31.67 Preparing to unpack .../006-shared-mime-info_2.2-1_amd64.deb ... +#42 31.67 Unpacking shared-mime-info (2.2-1) ... +#42 31.75 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +#42 31.75 Preparing to unpack .../007-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u1_amd64.deb ... +#42 31.75 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... +#42 31.77 Selecting previously unselected package gtk-update-icon-cache. +#42 31.77 Preparing to unpack .../008-gtk-update-icon-cache_3.24.38-2~deb12u3_amd64.deb ... +#42 31.77 Unpacking gtk-update-icon-cache (3.24.38-2~deb12u3) ... +#42 31.80 Selecting previously unselected package adwaita-icon-theme. +#42 31.80 Preparing to unpack .../009-adwaita-icon-theme_43-1_all.deb ... +#42 31.80 Unpacking adwaita-icon-theme (43-1) ... +#42 32.45 Selecting previously unselected package at-spi2-common. +#42 32.45 Preparing to unpack .../010-at-spi2-common_2.46.0-5_all.deb ... +#42 32.45 Unpacking at-spi2-common (2.46.0-5) ... +#42 32.48 Selecting previously unselected package binutils-common:amd64. +#42 32.49 Preparing to unpack .../011-binutils-common_2.40-2_amd64.deb ... +#42 32.49 Unpacking binutils-common:amd64 (2.40-2) ... +#42 32.68 Selecting previously unselected package libbinutils:amd64. +#42 32.68 Preparing to unpack .../012-libbinutils_2.40-2_amd64.deb ... +#42 32.68 Unpacking libbinutils:amd64 (2.40-2) ... +#42 32.74 Selecting previously unselected package libctf-nobfd0:amd64. +#42 32.74 Preparing to unpack .../013-libctf-nobfd0_2.40-2_amd64.deb ... +#42 32.74 Unpacking libctf-nobfd0:amd64 (2.40-2) ... +#42 32.77 Selecting previously unselected package libctf0:amd64. +#42 32.77 Preparing to unpack .../014-libctf0_2.40-2_amd64.deb ... +#42 32.77 Unpacking libctf0:amd64 (2.40-2) ... +#42 32.79 Selecting previously unselected package libgprofng0:amd64. +#42 32.79 Preparing to unpack .../015-libgprofng0_2.40-2_amd64.deb ... +#42 32.79 Unpacking libgprofng0:amd64 (2.40-2) ... +#42 32.87 Selecting previously unselected package libjansson4:amd64. +#42 32.87 Preparing to unpack .../016-libjansson4_2.14-2_amd64.deb ... +#42 32.87 Unpacking libjansson4:amd64 (2.14-2) ... +#42 32.89 Selecting previously unselected package binutils-x86-64-linux-gnu. +#42 32.89 Preparing to unpack .../017-binutils-x86-64-linux-gnu_2.40-2_amd64.deb ... +#42 32.89 Unpacking binutils-x86-64-linux-gnu (2.40-2) ... +#42 33.08 Selecting previously unselected package binutils. +#42 33.08 Preparing to unpack .../018-binutils_2.40-2_amd64.deb ... +#42 33.08 Unpacking binutils (2.40-2) ... +#42 33.10 Selecting previously unselected package libc-dev-bin. +#42 33.11 Preparing to unpack .../019-libc-dev-bin_2.36-9+deb12u9_amd64.deb ... +#42 33.11 Unpacking libc-dev-bin (2.36-9+deb12u9) ... +#42 33.12 Selecting previously unselected package linux-libc-dev:amd64. +#42 33.13 Preparing to unpack .../020-linux-libc-dev_6.1.124-1_amd64.deb ... +#42 33.13 Unpacking linux-libc-dev:amd64 (6.1.124-1) ... +#42 33.27 Selecting previously unselected package libcrypt-dev:amd64. +#42 33.27 Preparing to unpack .../021-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... +#42 33.27 Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... +#42 33.30 Selecting previously unselected package libtirpc-dev:amd64. +#42 33.30 Preparing to unpack .../022-libtirpc-dev_1.3.3+ds-1_amd64.deb ... +#42 33.30 Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... +#42 33.33 Selecting previously unselected package libnsl-dev:amd64. +#42 33.33 Preparing to unpack .../023-libnsl-dev_1.3.0-2_amd64.deb ... +#42 33.33 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +#42 33.35 Selecting previously unselected package rpcsvc-proto. +#42 33.35 Preparing to unpack .../024-rpcsvc-proto_1.4.3-1_amd64.deb ... +#42 33.35 Unpacking rpcsvc-proto (1.4.3-1) ... +#42 33.37 Selecting previously unselected package libc6-dev:amd64. +#42 33.37 Preparing to unpack .../025-libc6-dev_2.36-9+deb12u9_amd64.deb ... +#42 33.37 Unpacking libc6-dev:amd64 (2.36-9+deb12u9) ... +#42 33.53 Selecting previously unselected package libisl23:amd64. +#42 33.53 Preparing to unpack .../026-libisl23_0.25-1.1_amd64.deb ... +#42 33.54 Unpacking libisl23:amd64 (0.25-1.1) ... +#42 33.60 Selecting previously unselected package libmpfr6:amd64. +#42 33.60 Preparing to unpack .../027-libmpfr6_4.2.0-1_amd64.deb ... +#42 33.60 Unpacking libmpfr6:amd64 (4.2.0-1) ... +#42 33.64 Selecting previously unselected package libmpc3:amd64. +#42 33.64 Preparing to unpack .../028-libmpc3_1.3.1-1_amd64.deb ... +#42 33.64 Unpacking libmpc3:amd64 (1.3.1-1) ... +#42 33.66 Selecting previously unselected package cpp-12. +#42 33.66 Preparing to unpack .../029-cpp-12_12.2.0-14_amd64.deb ... +#42 33.66 Unpacking cpp-12 (12.2.0-14) ... +#42 34.24 Selecting previously unselected package cpp. +#42 34.25 Preparing to unpack .../030-cpp_4%3a12.2.0-3_amd64.deb ... +#42 34.25 Unpacking cpp (4:12.2.0-3) ... +#42 34.26 Selecting previously unselected package libcc1-0:amd64. +#42 34.27 Preparing to unpack .../031-libcc1-0_12.2.0-14_amd64.deb ... +#42 34.27 Unpacking libcc1-0:amd64 (12.2.0-14) ... +#42 34.28 Selecting previously unselected package libgomp1:amd64. +#42 34.29 Preparing to unpack .../032-libgomp1_12.2.0-14_amd64.deb ... +#42 34.29 Unpacking libgomp1:amd64 (12.2.0-14) ... +#42 34.31 Selecting previously unselected package libitm1:amd64. +#42 34.31 Preparing to unpack .../033-libitm1_12.2.0-14_amd64.deb ... +#42 34.31 Unpacking libitm1:amd64 (12.2.0-14) ... +#42 34.33 Selecting previously unselected package libatomic1:amd64. +#42 34.33 Preparing to unpack .../034-libatomic1_12.2.0-14_amd64.deb ... +#42 34.33 Unpacking libatomic1:amd64 (12.2.0-14) ... +#42 34.34 Selecting previously unselected package libasan8:amd64. +#42 34.34 Preparing to unpack .../035-libasan8_12.2.0-14_amd64.deb ... +#42 34.35 Unpacking libasan8:amd64 (12.2.0-14) ... +#42 34.53 Selecting previously unselected package liblsan0:amd64. +#42 34.53 Preparing to unpack .../036-liblsan0_12.2.0-14_amd64.deb ... +#42 34.53 Unpacking liblsan0:amd64 (12.2.0-14) ... +#42 34.61 Selecting previously unselected package libtsan2:amd64. +#42 34.62 Preparing to unpack .../037-libtsan2_12.2.0-14_amd64.deb ... +#42 34.62 Unpacking libtsan2:amd64 (12.2.0-14) ... +#42 34.80 Selecting previously unselected package libubsan1:amd64. +#42 34.80 Preparing to unpack .../038-libubsan1_12.2.0-14_amd64.deb ... +#42 34.80 Unpacking libubsan1:amd64 (12.2.0-14) ... +#42 34.88 Selecting previously unselected package libquadmath0:amd64. +#42 34.88 Preparing to unpack .../039-libquadmath0_12.2.0-14_amd64.deb ... +#42 34.88 Unpacking libquadmath0:amd64 (12.2.0-14) ... +#42 34.91 Selecting previously unselected package libgcc-12-dev:amd64. +#42 34.91 Preparing to unpack .../040-libgcc-12-dev_12.2.0-14_amd64.deb ... +#42 34.91 Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... +#42 35.08 Selecting previously unselected package gcc-12. +#42 35.08 Preparing to unpack .../041-gcc-12_12.2.0-14_amd64.deb ... +#42 35.08 Unpacking gcc-12 (12.2.0-14) ... +#42 35.74 Selecting previously unselected package gcc. +#42 35.74 Preparing to unpack .../042-gcc_4%3a12.2.0-3_amd64.deb ... +#42 35.74 Unpacking gcc (4:12.2.0-3) ... +#42 35.76 Selecting previously unselected package libstdc++-12-dev:amd64. +#42 35.76 Preparing to unpack .../043-libstdc++-12-dev_12.2.0-14_amd64.deb ... +#42 35.76 Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... +#42 35.93 Selecting previously unselected package g++-12. +#42 35.94 Preparing to unpack .../044-g++-12_12.2.0-14_amd64.deb ... +#42 35.94 Unpacking g++-12 (12.2.0-14) ... +#42 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 30.27 Selecting previously unselected package libglapi-mesa:amd64. +#49 30.27 Preparing to unpack .../155-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... +#49 30.32 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#49 30.58 Selecting previously unselected package libxcb-dri2-0:amd64. +#49 30.58 Preparing to unpack .../156-libxcb-dri2-0_1.15-1_amd64.deb ... +#49 30.58 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... +#49 30.60 Selecting previously unselected package libxcb-glx0:amd64. +#49 30.60 Preparing to unpack .../157-libxcb-glx0_1.15-1_amd64.deb ... +#49 30.61 Unpacking libxcb-glx0:amd64 (1.15-1) ... +#49 30.63 Selecting previously unselected package libxcb-present0:amd64. +#49 30.63 Preparing to unpack .../158-libxcb-present0_1.15-1_amd64.deb ... +#49 30.63 Unpacking libxcb-present0:amd64 (1.15-1) ... +#49 30.65 Selecting previously unselected package libxcb-randr0:amd64. +#49 30.66 Preparing to unpack .../159-libxcb-randr0_1.15-1_amd64.deb ... +#49 30.66 Unpacking libxcb-randr0:amd64 (1.15-1) ... +#49 30.68 Selecting previously unselected package libxcb-sync1:amd64. +#49 30.68 Preparing to unpack .../160-libxcb-sync1_1.15-1_amd64.deb ... +#49 30.68 Unpacking libxcb-sync1:amd64 (1.15-1) ... +#49 30.71 Selecting previously unselected package libxcb-xfixes0:amd64. +#49 30.71 Preparing to unpack .../161-libxcb-xfixes0_1.15-1_amd64.deb ... +#49 30.71 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... +#49 30.73 Selecting previously unselected package libxshmfence1:amd64. +#49 30.73 Preparing to unpack .../162-libxshmfence1_1.3-1_amd64.deb ... +#49 30.73 Unpacking libxshmfence1:amd64 (1.3-1) ... +#49 30.75 Selecting previously unselected package libxxf86vm1:amd64. +#49 30.75 Preparing to unpack .../163-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +#49 30.75 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#49 30.76 Selecting previously unselected package libdrm-amdgpu1:amd64. +#49 30.76 Preparing to unpack .../164-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... +#49 30.76 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#49 30.78 Selecting previously unselected package libpciaccess0:amd64. +#49 30.78 Preparing to unpack .../165-libpciaccess0_0.17-2_amd64.deb ... +#49 30.78 Unpacking libpciaccess0:amd64 (0.17-2) ... +#49 30.80 Selecting previously unselected package libdrm-intel1:amd64. +#49 30.80 Preparing to unpack .../166-libdrm-intel1_2.4.114-1+b1_amd64.deb ... +#49 30.80 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... +#49 30.82 Selecting previously unselected package libdrm-nouveau2:amd64. +#49 30.82 Preparing to unpack .../167-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... +#49 30.83 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#49 30.85 Selecting previously unselected package libdrm-radeon1:amd64. +#49 30.85 Preparing to unpack .../168-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... +#49 30.85 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#49 30.86 Selecting previously unselected package libelf1:amd64. +#49 30.86 Preparing to unpack .../169-libelf1_0.188-2.1_amd64.deb ... +#49 30.87 Unpacking libelf1:amd64 (0.188-2.1) ... +#49 30.89 Selecting previously unselected package libedit2:amd64. +#49 30.89 Preparing to unpack .../170-libedit2_3.1-20221030-2_amd64.deb ... +#49 30.89 Unpacking libedit2:amd64 (3.1-20221030-2) ... +#49 30.91 Selecting previously unselected package libz3-4:amd64. +#49 30.91 Preparing to unpack .../171-libz3-4_4.8.12-3.1_amd64.deb ... +#49 30.92 Unpacking libz3-4:amd64 (4.8.12-3.1) ... +#49 31.41 Selecting previously unselected package libllvm15:amd64. +#49 31.41 Preparing to unpack .../172-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... +#49 31.42 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... +#49 32.12 Selecting previously unselected package libsensors-config. +#49 32.12 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7.1_all.deb ... +#49 32.12 Unpacking libsensors-config (1:3.6.0-7.1) ... +#49 32.14 Selecting previously unselected package libsensors5:amd64. +#49 32.14 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7.1_amd64.deb ... +#49 32.15 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... +#49 32.16 Selecting previously unselected package libgl1-mesa-dri:amd64. +#49 32.16 Preparing to unpack .../175-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... +#49 32.17 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#49 32.65 Selecting previously unselected package libglx-mesa0:amd64. +#49 32.66 Preparing to unpack .../176-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... +#49 32.66 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#49 32.68 Selecting previously unselected package libglx0:amd64. +#49 32.68 Preparing to unpack .../177-libglx0_1.6.0-1_amd64.deb ... +#49 32.68 Unpacking libglx0:amd64 (1.6.0-1) ... +#49 32.70 Selecting previously unselected package libgl1:amd64. +#49 32.70 Preparing to unpack .../178-libgl1_1.6.0-1_amd64.deb ... +#49 32.70 Unpacking libgl1:amd64 (1.6.0-1) ... +#49 32.72 Selecting previously unselected package libiec61883-0:amd64. +#49 32.72 Preparing to unpack .../179-libiec61883-0_1.2.0-6+b1_amd64.deb ... +#49 32.73 Unpacking libiec61883-0:amd64 (1.2.0-6+b1) ... +#49 32.74 Selecting previously unselected package libsamplerate0:amd64. +#49 32.74 Preparing to unpack .../180-libsamplerate0_0.2.2-3_amd64.deb ... +#49 32.74 Unpacking libsamplerate0:amd64 (0.2.2-3) ... +#49 32.83 Selecting previously unselected package libjack-jackd2-0:amd64. +#49 32.83 Preparing to unpack .../181-libjack-jackd2-0_1.9.21~dfsg-3_amd64.deb ... +#49 32.83 Unpacking libjack-jackd2-0:amd64 (1.9.21~dfsg-3) ... +#49 32.87 Selecting previously unselected package libopenal-data. +#49 32.87 Preparing to unpack .../182-libopenal-data_1%3a1.19.1-2_all.deb ... +#49 32.87 Unpacking libopenal-data (1:1.19.1-2) ... +#49 32.89 Selecting previously unselected package libsndio7.0:amd64. +#49 32.89 Preparing to unpack .../183-libsndio7.0_1.9.0-0.3+b2_amd64.deb ... +#49 32.89 Unpacking libsndio7.0:amd64 (1.9.0-0.3+b2) ... +#49 32.91 Selecting previously unselected package libopenal1:amd64. +#49 32.91 Preparing to unpack .../184-libopenal1_1%3a1.19.1-2_amd64.deb ... +#49 32.91 Unpacking libopenal1:amd64 (1:1.19.1-2) ... +#49 32.96 Selecting previously unselected package libwayland-client0:amd64. +#49 32.96 Preparing to unpack .../185-libwayland-client0_1.21.0-1_amd64.deb ... +#49 32.96 Unpacking libwayland-client0:amd64 (1.21.0-1) ... +#49 32.97 Selecting previously unselected package libdecor-0-0:amd64. +#49 32.97 Preparing to unpack .../186-libdecor-0-0_0.1.1-2_amd64.deb ... +#49 32.97 Unpacking libdecor-0-0:amd64 (0.1.1-2) ... +#49 32.99 Selecting previously unselected package libwayland-server0:amd64. +#49 32.99 Preparing to unpack .../187-libwayland-server0_1.21.0-1_amd64.deb ... +#49 32.99 Unpacking libwayland-server0:amd64 (1.21.0-1) ... +#49 33.00 Selecting previously unselected package libgbm1:amd64. +#49 33.00 Preparing to unpack .../188-libgbm1_22.3.6-1+deb12u1_amd64.deb ... +#49 33.01 Unpacking libgbm1:amd64 (22.3.6-1+deb12u1) ... +#49 33.02 Selecting previously unselected package libwayland-cursor0:amd64. +#49 33.02 Preparing to unpack .../189-libwayland-cursor0_1.21.0-1_amd64.deb ... +#49 33.02 Unpacking libwayland-cursor0:amd64 (1.21.0-1) ... +#49 33.04 Selecting previously unselected package libwayland-egl1:amd64. +#49 33.04 Preparing to unpack .../190-libwayland-egl1_1.21.0-1_amd64.deb ... +#49 33.04 Unpacking libwayland-egl1:amd64 (1.21.0-1) ... +#49 33.05 Selecting previously unselected package libxcursor1:amd64. +#49 33.05 Preparing to unpack .../191-libxcursor1_1%3a1.2.1-1_amd64.deb ... +#49 33.05 Unpacking libxcursor1:amd64 (1:1.2.1-1) ... +#49 33.07 Selecting previously unselected package libxi6:amd64. +#49 33.07 Preparing to unpack .../192-libxi6_2%3a1.8-1+b1_amd64.deb ... +#49 33.07 Unpacking libxi6:amd64 (2:1.8-1+b1) ... +#49 33.09 Selecting previously unselected package xkb-data. +#49 33.09 Preparing to unpack .../193-xkb-data_2.35.1-1_all.deb ... +#49 33.09 Unpacking xkb-data (2.35.1-1) ... +#49 33.17 Selecting previously unselected package libxkbcommon0:amd64. +#49 33.17 Preparing to unpack .../194-libxkbcommon0_1.5.0-1_amd64.deb ... +#49 33.17 Unpacking libxkbcommon0:amd64 (1.5.0-1) ... +#49 33.19 Selecting previously unselected package libxrandr2:amd64. +#49 33.20 Preparing to unpack .../195-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ... +#49 33.20 Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ... +#49 33.21 Selecting previously unselected package x11-common. +#49 33.21 Preparing to unpack .../196-x11-common_1%3a7.7+23_all.deb ... +#49 33.21 Unpacking x11-common (1:7.7+23) ... +#49 33.24 Selecting previously unselected package libxss1:amd64. +#49 33.24 Preparing to unpack .../197-libxss1_1%3a1.2.3-1_amd64.deb ... +#49 33.24 Unpacking libxss1:amd64 (1:1.2.3-1) ... +#49 33.25 Selecting previously unselected package libsdl2-2.0-0:amd64. +#49 33.25 Preparing to unpack .../198-libsdl2-2.0-0_2.26.5+dfsg-1_amd64.deb ... +#49 33.25 Unpacking libsdl2-2.0-0:amd64 (2.26.5+dfsg-1) ... +#49 33.31 Selecting previously unselected package libxcb-shape0:amd64. +#49 33.31 Preparing to unpack .../199-libxcb-shape0_1.15-1_amd64.deb ... +#49 33.31 Unpacking libxcb-shape0:amd64 (1.15-1) ... +#49 33.33 Selecting previously unselected package libxv1:amd64. +#49 33.33 Preparing to unpack .../200-libxv1_2%3a1.0.11-1.1_amd64.deb ... +#49 33.34 Unpacking libxv1:amd64 (2:1.0.11-1.1) ... +#49 33.35 Selecting previously unselected package libavdevice59:amd64. +#49 33.35 Preparing to unpack .../201-libavdevice59_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 33.35 Unpacking libavdevice59:amd64 (7:5.1.6-0+deb12u1) ... +#49 33.37 Selecting previously unselected package ffmpeg. +#49 33.37 Preparing to unpack .../202-ffmpeg_7%3a5.1.6-0+deb12u1_amd64.deb ... +#49 33.37 Unpacking ffmpeg (7:5.1.6-0+deb12u1) ... +#49 33.48 Selecting previously unselected package i965-va-driver:amd64. +#49 33.48 Preparing to unpack .../203-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +#49 33.48 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +#49 33.52 Selecting previously unselected package libigdgmm12:amd64. +#49 33.52 Preparing to unpack .../204-libigdgmm12_22.3.3+ds1-1_amd64.deb ... +#49 33.52 Unpacking libigdgmm12:amd64 (22.3.3+ds1-1) ... +#49 33.54 Selecting previously unselected package intel-media-va-driver:amd64. +#49 33.54 Preparing to unpack .../205-intel-media-va-driver_23.1.1+dfsg1-1_amd64.deb ... +#49 33.55 Unpacking intel-media-va-driver:amd64 (23.1.1+dfsg1-1) ... +#49 33.77 Selecting previously unselected package libaacs0:amd64. +#49 33.77 Preparing to unpack .../206-libaacs0_0.11.1-2_amd64.deb ... +#49 33.77 Unpacking libaacs0:amd64 (0.11.1-2) ... +#49 33.79 Selecting previously unselected package libbdplus0:amd64. +#49 33.79 Preparing to unpack .../207-libbdplus0_0.2.0-3_amd64.deb ... +#49 33.79 Unpacking libbdplus0:amd64 (0.2.0-3) ... +#49 33.80 Selecting previously unselected package libdecor-0-plugin-1-cairo:amd64. +#49 33.81 Preparing to unpack .../208-libdecor-0-plugin-1-cairo_0.1.1-2_amd64.deb ... +#49 33.81 Unpacking libdecor-0-plugin-1-cairo:amd64 (0.1.1-2) ... +#49 33.82 Selecting previously unselected package libgdk-pixbuf2.0-bin. +#49 33.82 Preparing to unpack .../209-libgdk-pixbuf2.0-bin_2.42.10+dfsg-1+deb12u1_amd64.deb ... +#49 33.82 Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u1) ... +#49 33.84 Selecting previously unselected package libglib2.0-data. +#49 33.84 Preparing to unpack .../210-libglib2.0-data_2.74.6-2+deb12u5_all.deb ... +#49 33.84 Unpacking libglib2.0-data (2.74.6-2+deb12u5) ... +#49 33.95 Selecting previously unselected package libldap-common. +#49 33.95 Preparing to unpack .../211-libldap-common_2.5.13+dfsg-5_all.deb ... +#49 33.95 Unpacking libldap-common (2.5.13+dfsg-5) ... +#49 33.96 Selecting previously unselected package librsvg2-common:amd64. +#49 33.96 Preparing to unpack .../212-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ... +#49 33.97 Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ... +#49 33.98 Selecting previously unselected package libsasl2-modules:amd64. +#49 33.98 Preparing to unpack .../213-libsasl2-modules_2.1.28+dfsg-10_amd64.deb ... +#49 33.99 Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... +#49 34.00 Selecting previously unselected package libvdpau-va-gl1:amd64. +#49 34.00 Preparing to unpack .../214-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +#49 34.01 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +#49 34.02 Selecting previously unselected package mesa-va-drivers:amd64. +#49 34.02 Preparing to unpack .../215-mesa-va-drivers_22.3.6-1+deb12u1_amd64.deb ... +#49 34.02 Unpacking mesa-va-drivers:amd64 (22.3.6-1+deb12u1) ... +#49 34.27 Selecting previously unselected package mesa-vdpau-drivers:amd64. +#49 34.27 Preparing to unpack .../216-mesa-vdpau-drivers_22.3.6-1+deb12u1_amd64.deb ... +#49 34.27 Unpacking mesa-vdpau-drivers:amd64 (22.3.6-1+deb12u1) ... +#49 34.50 Selecting previously unselected package mesa-vulkan-drivers:amd64. +#49 34.50 Preparing to unpack .../217-mesa-vulkan-drivers_22.3.6-1+deb12u1_amd64.deb ... +#49 34.50 Unpacking mesa-vulkan-drivers:amd64 (22.3.6-1+deb12u1) ... +#49 34.94 Selecting previously unselected package pocketsphinx-en-us. +#49 34.94 Preparing to unpack .../218-pocketsphinx-en-us_0.8+5prealpha+1-15_all.deb ... +#49 34.94 Unpacking pocketsphinx-en-us (0.8+5prealpha+1-15) ... +#49 ... + +#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt +#50 36.32 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 1.5 MB/s eta 0:00:00 +#50 36.36 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#50 36.52 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#50 36.62 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#50 36.71 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#50 36.88 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#50 37.02 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#50 37.19 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#50 37.23 Downloading distro-1.9.0-py3-none-any.whl (20 kB) +#50 37.28 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) +#50 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 22.43 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) +#44 22.48 Collecting tzdata>=2022.7 (from pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 22.51 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) +#44 22.72 Collecting charset-normalizer<4,>=2 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 22.74 Downloading charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#44 22.79 Collecting idna<4,>=2.5 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 22.81 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#44 22.94 Collecting urllib3<3,>=1.21.1 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 22.95 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#44 23.06 Collecting certifi>=2017.4.17 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) +#44 23.09 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#44 23.17 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 23.18 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#44 23.26 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 23.28 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#44 23.63 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 23.66 Downloading greenlet-3.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#44 23.73 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) +#44 23.75 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#44 23.88 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 23.89 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) +#44 24.30 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 24.32 Downloading manifold3d-3.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) +#44 24.37 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 24.38 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) +#44 25.15 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 25.19 Downloading lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#44 25.31 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 25.33 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) +#44 25.39 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 25.40 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) +#44 25.46 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 25.48 Downloading pycollada-0.8.tar.gz (108 kB) +#44 25.52 Preparing metadata (setup.py): started +#44 26.07 Preparing metadata (setup.py): finished with status 'done' +#44 26.07 Requirement already satisfied: setuptools in /usr/local/lib/python3.10/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) (65.5.1) +#44 26.42 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 26.43 Downloading shapely-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) +#44 26.78 Collecting xxhash (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 26.79 Downloading xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) +#44 26.88 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 26.89 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) +#44 26.97 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 26.98 Downloading embreex-2.17.7.post6-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (2.9 kB) +#44 27.10 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 27.11 Downloading xatlas-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#44 27.26 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 27.27 Downloading vhacdx-0.0.8.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) +#44 27.35 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 27.36 Downloading mapbox_earcut-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) +#44 27.43 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 27.44 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) +#44 27.64 Collecting MarkupSafe>=2.0 (from jinja2->torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) +#44 27.65 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#44 27.73 Collecting exceptiongroup>=1.0.2 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) +#44 27.74 Downloading exceptiongroup-1.2.2-py3-none-any.whl.metadata (6.6 kB) +#44 27.80 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) +#44 27.81 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#44 28.13 Collecting httpcore==1.* (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 28.14 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#44 28.22 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) +#44 28.23 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) +#44 28.29 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 28.30 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#44 28.44 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 28.45 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#44 28.66 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 28.67 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) +#44 28.76 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 28.77 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) +#44 29.53 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) +#44 29.54 Downloading rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) +#44 29.74 Downloading pydantic-2.8.2-py3-none-any.whl (423 kB) +#44 29.78 Downloading pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB) +#44 29.82 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 48.0 MB/s eta 0:00:00 +#44 29.84 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#44 29.85 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#44 29.86 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) +#44 29.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 98.5 MB/s eta 0:00:00 +#44 29.88 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) +#44 29.89 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) +#44 29.91 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) +#44 29.92 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) +#44 29.93 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) +#44 29.94 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) +#44 29.95 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) +#44 29.96 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) +#44 29.98 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#44 29.99 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#44 30.00 Downloading torch-2.6.0-cp310-cp310-manylinux1_x86_64.whl (766.7 MB) +#44 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 37.42 Selecting previously unselected package publicsuffix. +#49 37.45 Preparing to unpack .../219-publicsuffix_20230209.2326-1_all.deb ... +#49 37.57 Unpacking publicsuffix (20230209.2326-1) ... +#49 38.23 Selecting previously unselected package va-driver-all:amd64. +#49 38.23 Preparing to unpack .../220-va-driver-all_2.17.0-1_amd64.deb ... +#49 38.45 Unpacking va-driver-all:amd64 (2.17.0-1) ... +#49 39.06 Selecting previously unselected package vdpau-driver-all:amd64. +#49 39.06 Preparing to unpack .../221-vdpau-driver-all_1.5-2_amd64.deb ... +#49 39.15 Unpacking vdpau-driver-all:amd64 (1.5-2) ... +#49 39.60 Selecting previously unselected package xdg-user-dirs. +#49 39.62 Preparing to unpack .../222-xdg-user-dirs_0.18-1_amd64.deb ... +#49 39.67 Unpacking xdg-user-dirs (0.18-1) ... +#49 40.37 Setting up libgme0:amd64 (0.6.3-6) ... +#49 41.38 Setting up libssh-gcrypt-4:amd64 (0.10.6-0+deb12u1) ... +#49 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 25.93 Collecting sentence-transformers==3.2.1 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 25.94 Downloading sentence_transformers-3.2.1-py3-none-any.whl.metadata (10 kB) +#58 26.16 Collecting scikit-learn (from sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 26.17 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) +#58 26.33 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 26.35 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#58 26.53 Collecting psutil (from accelerate<0.34.0,>=0.33.0->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 26.54 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) +#58 26.64 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) +#58 26.65 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#58 26.86 Collecting httpcore==1.* (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) +#58 26.87 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#58 26.96 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 26.97 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#58 27.10 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) +#58 27.11 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#58 27.37 Collecting MarkupSafe>=2.0 (from jinja2->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 27.38 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#58 27.44 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 27.45 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) +#58 27.51 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 27.53 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) +#58 27.99 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) +#58 28.01 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) +#58 28.26 Collecting joblib>=1.2.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 28.27 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) +#58 28.32 Collecting threadpoolctl>=3.1.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) +#58 28.33 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) +#58 28.37 Downloading pydantic-2.7.2-py3-none-any.whl (409 kB) +#58 28.40 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#58 28.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 108.2 MB/s eta 0:00:00 +#58 28.44 Downloading datasets-3.2.0-py3-none-any.whl (480 kB) +#58 28.46 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#58 28.47 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#58 28.48 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) +#58 28.49 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) +#58 28.50 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) +#58 28.51 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) +#58 28.52 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) +#58 28.53 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) +#58 28.54 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) +#58 28.56 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) +#58 28.57 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) +#58 28.58 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#58 28.59 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#58 28.60 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#58 28.61 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#58 28.62 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#58 28.63 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) +#58 28.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 202.8 MB/s eta 0:00:00 +#58 28.84 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#58 28.85 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#58 28.86 Downloading dill-0.3.8-py3-none-any.whl (116 kB) +#58 28.87 Downloading fsspec-2024.9.0-py3-none-any.whl (179 kB) +#58 28.89 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) +#58 28.90 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 217.3 MB/s eta 0:00:00 +#58 28.91 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#58 28.92 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) +#58 28.94 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) +#58 28.95 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 257.9 MB/s eta 0:00:00 +#58 28.96 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) +#58 28.97 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) +#58 28.98 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#58 28.99 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 301.3 MB/s eta 0:00:00 +#58 29.00 Downloading multiprocess-0.70.16-py311-none-any.whl (143 kB) +#58 29.01 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#58 29.02 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#58 29.03 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#58 29.08 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 277.6 MB/s eta 0:00:00 +#58 29.09 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#58 29.11 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 244.7 MB/s eta 0:00:00 +#58 29.12 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#58 29.13 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) +#58 29.15 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) +#58 29.37 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 195.5 MB/s eta 0:00:00 +#58 29.38 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#58 29.38 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 235.4 MB/s eta 0:00:00 +#58 29.39 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#58 29.41 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#58 29.42 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#58 29.44 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) +#58 29.45 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl (766.7 MB) +#58 35.23 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 155.5 MB/s eta 0:00:00 +#58 35.24 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) +#58 ... + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 32.10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 369.6 MB/s eta 0:00:00 +#37 32.11 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) +#37 32.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 553.6 MB/s eta 0:00:00 +#37 32.50 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) +#37 32.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 569.9 MB/s eta 0:00:00 +#37 32.61 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) +#37 32.84 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 556.5 MB/s eta 0:00:00 +#37 32.85 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) +#37 33.23 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 553.7 MB/s eta 0:00:00 +#37 33.24 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) +#37 33.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 346.7 MB/s eta 0:00:00 +#37 33.68 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) +#37 34.03 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 546.1 MB/s eta 0:00:00 +#37 34.04 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) +#37 34.07 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 582.5 MB/s eta 0:00:00 +#37 34.08 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) +#37 34.09 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) +#37 34.10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 576.5 MB/s eta 0:00:00 +#37 34.11 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.2 MB) +#37 34.88 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.2/253.2 MB 329.8 MB/s eta 0:00:00 +#37 34.89 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#37 34.90 Downloading transformers-4.45.2-py3-none-any.whl (9.9 MB) +#37 34.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.9/9.9 MB 331.2 MB/s eta 0:00:00 +#37 34.95 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) +#37 34.95 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 544.2 MB/s eta 0:00:00 +#37 34.96 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) +#37 34.97 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#37 34.99 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#37 35.00 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#37 35.01 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#37 35.03 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#37 35.04 Downloading optimum-1.24.0-py3-none-any.whl (433 kB) +#37 35.05 Downloading optimum_habana-1.15.0-py3-none-any.whl (809 kB) +#37 35.06 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 809.9/809.9 kB 304.1 MB/s eta 0:00:00 +#37 35.07 Downloading sentence_transformers-3.2.1-py3-none-any.whl (255 kB) +#37 35.08 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) +#37 35.10 Downloading accelerate-0.33.0-py3-none-any.whl (315 kB) +#37 35.12 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) +#37 35.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 210.4 MB/s eta 0:00:00 +#37 35.22 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#37 35.23 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#37 35.27 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#37 35.28 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#37 35.29 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#37 35.35 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#37 35.36 Downloading diffusers-0.31.0-py3-none-any.whl (2.9 MB) +#37 35.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 538.0 MB/s eta 0:00:00 +#37 35.44 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) +#37 35.45 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#37 35.51 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#37 35.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 84.7 MB/s eta 0:00:00 +#37 35.59 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#37 35.61 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#37 35.68 Downloading idna-3.10-py3-none-any.whl (70 kB) +#37 35.74 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) +#37 36.73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 109.1 MB/s eta 0:00:00 +#37 36.74 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) +#37 36.75 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) +#37 36.80 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 507.1 MB/s eta 0:00:00 +#37 36.81 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) +#37 36.82 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#37 36.83 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) +#37 36.90 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 478.4 MB/s eta 0:00:00 +#37 36.91 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) +#37 36.93 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#37 36.94 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) +#37 36.95 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#37 36.97 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 199.9 MB/s eta 0:00:00 +#37 36.98 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#37 36.99 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) +#37 37.02 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) +#37 37.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 19.5 MB/s eta 0:00:00 +#37 37.07 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) +#37 37.08 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) +#37 37.10 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) +#37 37.41 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 130.8 MB/s eta 0:00:00 +#37 37.42 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#37 37.49 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 74.3 MB/s eta 0:00:00 +#37 37.50 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) +#37 37.52 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#37 37.53 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) +#37 37.56 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) +#37 37.59 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#37 37.60 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) +#37 37.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 172.8 MB/s eta 0:00:00 +#37 37.65 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) +#37 37.68 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) +#37 37.69 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) +#37 37.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 211.4 MB/s eta 0:00:00 +#37 37.82 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) +#37 37.83 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) +#37 37.86 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) +#37 37.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 71.5 MB/s eta 0:00:00 +#37 37.94 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#37 37.97 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 535.8 MB/s eta 0:00:00 +#37 37.98 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) +#37 37.99 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) +#37 38.02 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 10.3 MB/s eta 0:00:00 +#37 38.03 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) +#37 38.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 245.1 MB/s eta 0:00:00 +#37 38.06 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) +#37 38.09 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) +#37 38.10 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) +#37 38.11 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) +#37 38.14 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) +#37 38.15 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#37 38.16 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#37 38.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 16.5 MB/s eta 0:00:00 +#37 38.19 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) +#37 38.20 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) +#37 38.21 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#37 38.22 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#37 38.24 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287 kB) +#37 38.25 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) +#37 38.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 96.1 MB/s eta 0:00:00 +#37 38.44 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) +#37 38.46 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) +#37 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 38.00 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 143.1 MB/s eta 0:00:00 +#58 38.02 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) +#58 38.11 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 143.8 MB/s eta 0:00:00 +#58 38.12 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) +#58 38.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 61.3 MB/s eta 0:00:00 +#58 38.54 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) +#58 38.58 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 474.1 MB/s eta 0:00:00 +#58 38.59 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) +#58 ... + +#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ +#61 DONE 15.9s + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 42.44 Setting up media-types (10.0.0) ... +#49 43.43 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +#49 44.07 Setting up liblcms2-2:amd64 (2.14-2) ... +#49 44.43 Setting up libpixman-1-0:amd64 (0.42.2-1) ... +#49 45.22 Setting up libudfread0:amd64 (1.1.2-1) ... +#49 45.54 Setting up libwayland-server0:amd64 (1.21.0-1) ... +#49 45.94 Setting up libaom3:amd64 (3.6.0-1+deb12u1) ... +#49 46.19 Setting up libpciaccess0:amd64 (0.17-2) ... +#49 46.43 Setting up librabbitmq4:amd64 (0.11.0-1+b1) ... +#49 46.49 Setting up libxau6:amd64 (1:1.0.9-1) ... +#49 46.50 Setting up libraw1394-11:amd64 (2.1.2-2) ... +#49 46.50 Setting up libapparmor1:amd64 (3.0.8-3) ... +#49 46.50 Setting up libpsl5:amd64 (0.21.2-1) ... +#49 46.50 Setting up libcodec2-1.0:amd64 (1.0.5-1) ... +#49 46.51 Setting up libsodium23:amd64 (1.0.18-1) ... +#49 46.51 Setting up libicu72:amd64 (72.1-3) ... +#49 46.51 Setting up libmpg123-0:amd64 (1.31.2-1+deb12u1) ... +#49 46.52 Setting up libogg0:amd64 (1.3.5-3) ... +#49 46.52 Setting up liblerc4:amd64 (4.0.0+ds-2) ... +#49 46.52 Setting up libspeex1:amd64 (1.2.1-2) ... +#49 46.52 Setting up libshine3:amd64 (3.1.1-2) ... +#49 46.53 Setting up libx264-164:amd64 (2:0.164.3095+gitbaee400-3) ... +#49 46.53 Setting up libtwolame0:amd64 (0.4.0-2) ... +#49 46.53 Setting up libdatrie1:amd64 (0.2.13-2+b1) ... +#49 46.53 Setting up xdg-user-dirs (0.18-1) ... +#49 46.54 Setting up libgsm1:amd64 (1.0.22-1) ... +#49 46.54 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#49 46.55 No schema files found: doing nothing. +#49 46.55 Setting up libglvnd0:amd64 (1.6.0-1) ... +#49 46.56 Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#49 46.56 Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... +#49 46.56 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... +#49 46.56 Setting up libsasl2-modules:amd64 (2.1.28+dfsg-10) ... +#49 46.57 Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... +#49 46.57 Setting up libnorm1:amd64 (1.5.9+dfsg-2) ... +#49 46.57 Setting up libmysofa1:amd64 (1.3.1~dfsg0-1) ... +#49 46.58 Setting up x11-common (1:7.7+23) ... +#49 46.66 debconf: unable to initialize frontend: Dialog +#49 46.66 debconf: (TERM is not set, so the dialog frontend is not usable.) +#49 46.66 debconf: falling back to frontend: Readline +#49 46.66 debconf: unable to initialize frontend: Readline +#49 46.66 debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.36.0 /usr/local/share/perl/5.36.0 /usr/lib/x86_64-linux-gnu/perl5/5.36 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.36 /usr/share/perl/5.36 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) +#49 46.66 debconf: falling back to frontend: Teletype +#49 46.68 invoke-rc.d: could not determine current runlevel +#49 46.68 invoke-rc.d: policy-rc.d denied execution of restart. +#49 46.68 Setting up libsensors-config (1:3.6.0-7.1) ... +#49 46.69 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#49 46.71 Setting up libdeflate0:amd64 (1.14-1) ... +#49 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 38.11 Selecting previously unselected package g++. +#42 38.11 Preparing to unpack .../045-g++_4%3a12.2.0-3_amd64.deb ... +#42 38.32 Unpacking g++ (4:12.2.0-3) ... +#42 39.03 Selecting previously unselected package make. +#42 39.03 Preparing to unpack .../046-make_4.3-4.1_amd64.deb ... +#42 39.12 Unpacking make (4.3-4.1) ... +#42 39.91 Selecting previously unselected package libdpkg-perl. +#42 39.92 Preparing to unpack .../047-libdpkg-perl_1.21.22_all.deb ... +#42 40.01 Unpacking libdpkg-perl (1.21.22) ... +#42 40.44 Selecting previously unselected package patch. +#42 40.46 Preparing to unpack .../048-patch_2.7.6-7_amd64.deb ... +#42 40.52 Unpacking patch (2.7.6-7) ... +#42 40.98 Selecting previously unselected package dpkg-dev. +#42 40.98 Preparing to unpack .../049-dpkg-dev_1.21.22_all.deb ... +#42 41.14 Unpacking dpkg-dev (1.21.22) ... +#42 42.85 Selecting previously unselected package build-essential. +#42 42.86 Preparing to unpack .../050-build-essential_12.9_amd64.deb ... +#42 43.29 Unpacking build-essential (12.9) ... +#42 45.39 Selecting previously unselected package ca-certificates-java. +#42 45.39 Preparing to unpack .../051-ca-certificates-java_20230710~deb12u1_all.deb ... +#42 45.48 Unpacking ca-certificates-java (20230710~deb12u1) ... +#42 47.12 Selecting previously unselected package libblas3:amd64. +#42 47.13 Preparing to unpack .../052-libblas3_3.11.0-2_amd64.deb ... +#42 47.23 Unpacking libblas3:amd64 (3.11.0-2) ... +#42 47.54 Selecting previously unselected package libgfortran5:amd64. +#42 47.54 Preparing to unpack .../053-libgfortran5_12.2.0-14_amd64.deb ... +#42 47.54 Unpacking libgfortran5:amd64 (12.2.0-14) ... +#42 47.62 Selecting previously unselected package liblapack3:amd64. +#42 47.62 Preparing to unpack .../054-liblapack3_3.11.0-2_amd64.deb ... +#42 47.63 Unpacking liblapack3:amd64 (3.11.0-2) ... +#42 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 47.22 Setting up xkb-data (2.35.1-1) ... +#49 47.59 Setting up libhwy1:amd64 (1.0.3-3+deb12u1) ... +#49 ... + +#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt +#50 37.62 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) +#50 37.89 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#50 37.99 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#50 38.11 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#50 38.28 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) +#50 38.36 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345 kB) +#50 38.82 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) +#50 39.00 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) +#50 ... + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 47.44 Building wheels for collected packages: pycollada +#37 47.44 Building wheel for pycollada (setup.py): started +#37 48.05 Building wheel for pycollada (setup.py): finished with status 'done' +#37 48.07 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=132fc91ed8099d1df6f931c19fc6e7f09344f5c4f7b2aa3e4b3a92d116692805 +#37 48.07 Stored in directory: /tmp/pip-ephem-wheel-cache-t9jum4sv/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 +#37 48.08 Successfully built pycollada +#37 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 33.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 279.4 MB/s eta 0:00:00 +#44 33.82 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) +#44 35.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 257.7 MB/s eta 0:00:00 +#44 35.15 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) +#44 35.25 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 160.6 MB/s eta 0:00:00 +#44 35.27 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) +#44 35.40 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 214.2 MB/s eta 0:00:00 +#44 35.41 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) +#44 35.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 618.7 MB/s eta 0:00:00 +#44 35.45 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) +#44 38.17 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 243.7 MB/s eta 0:00:00 +#44 38.18 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) +#44 39.69 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 142.5 MB/s eta 0:00:00 +#44 39.71 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) +#44 40.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 162.5 MB/s eta 0:00:00 +#44 40.07 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) +#44 40.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 188.9 MB/s eta 0:00:00 +#44 40.76 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) +#44 41.86 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 189.0 MB/s eta 0:00:00 +#44 41.88 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) +#44 42.69 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 185.1 MB/s eta 0:00:00 +#44 42.70 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) +#44 43.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 172.2 MB/s eta 0:00:00 +#44 43.85 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) +#44 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 48.12 Setting up libigdgmm12:amd64 (22.3.3+ds1-1) ... +#49 48.43 Setting up libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... +#49 48.62 Setting up libgomp1:amd64 (12.2.0-14) ... +#49 48.79 Setting up libcdio19:amd64 (2.1.0-4) ... +#49 49.03 Setting up libcjson1:amd64 (1.7.15-1+deb12u2) ... +#49 49.55 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +#49 50.43 Setting up libldap-common (2.5.13+dfsg-5) ... +#49 51.46 Setting up libjbig0:amd64 (2.1-6.1) ... +#49 52.41 Setting up librav1e0:amd64 (0.5.1-6) ... +#49 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 43.98 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 164.1 MB/s eta 0:00:00 +#44 43.99 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) +#44 44.01 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) +#44 44.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 165.6 MB/s eta 0:00:00 +#44 44.06 Downloading triton-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.1 MB) +#44 45.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.1/253.1 MB 175.6 MB/s eta 0:00:00 +#44 45.53 Downloading torchvision-0.21.0-cp310-cp310-manylinux1_x86_64.whl (7.2 MB) +#44 45.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/7.2 MB 72.0 MB/s eta 0:00:00 +#44 45.64 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) +#44 45.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 526.6 MB/s eta 0:00:00 +#44 45.68 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#44 45.69 Downloading aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) +#44 45.70 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 567.5 MB/s eta 0:00:00 +#44 45.71 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#44 45.72 Downloading async_timeout-4.0.3-py3-none-any.whl (5.7 kB) +#44 45.77 Downloading av-14.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.7 MB) +#44 45.98 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.7/38.7 MB 184.9 MB/s eta 0:00:00 +#44 45.99 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#44 46.00 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#44 46.01 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) +#44 46.02 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#44 46.03 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) +#44 46.05 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) +#44 46.06 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 317.9 MB/s eta 0:00:00 +#44 46.07 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) +#44 46.08 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) +#44 46.13 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) +#44 46.14 Downloading lz4-4.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#44 46.15 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 230.6 MB/s eta 0:00:00 +#44 46.16 Downloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB) +#44 46.23 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.2/18.2 MB 297.3 MB/s eta 0:00:00 +#44 46.24 Downloading orjson-3.10.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#44 46.25 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#44 46.27 Downloading pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#44 46.30 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 481.2 MB/s eta 0:00:00 +#44 46.31 Downloading pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (4.5 MB) +#44 46.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 591.1 MB/s eta 0:00:00 +#44 46.35 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#44 46.36 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) +#44 46.41 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#44 46.42 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751 kB) +#44 46.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 751.2/751.2 kB 596.4 MB/s eta 0:00:00 +#44 46.43 Downloading regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (781 kB) +#44 46.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 781.7/781.7 kB 341.4 MB/s eta 0:00:00 +#44 46.45 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#44 46.49 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#44 46.50 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) +#44 46.51 Downloading SQLAlchemy-2.0.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB) +#44 46.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 479.3 MB/s eta 0:00:00 +#44 46.53 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#44 46.56 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) +#44 46.57 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#44 46.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 277.5 MB/s eta 0:00:00 +#44 46.60 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#44 46.61 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) +#44 46.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 606.3 MB/s eta 0:00:00 +#44 46.64 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) +#44 46.65 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#44 46.66 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#44 46.67 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#44 46.69 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#44 46.70 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#44 46.71 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) +#44 46.74 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#44 46.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 250.6 MB/s eta 0:00:00 +#44 46.76 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#44 46.77 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#44 46.78 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#44 46.79 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#44 46.86 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#44 46.87 Downloading charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146 kB) +#44 46.88 Downloading frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241 kB) +#44 46.89 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#44 46.91 Downloading greenlet-3.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (599 kB) +#44 46.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 599.5/599.5 kB 43.8 MB/s eta 0:00:00 +#44 46.94 Downloading grpcio-1.70.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#44 46.99 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 117.4 MB/s eta 0:00:00 +#44 47.00 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#44 47.04 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#44 47.05 Downloading idna-3.10-py3-none-any.whl (70 kB) +#44 47.06 Downloading jaxlib-0.5.0-cp310-cp310-manylinux2014_x86_64.whl (102.0 MB) +#44 47.62 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 183.9 MB/s eta 0:00:00 +#44 47.63 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) +#44 47.64 Downloading manifold3d-3.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) +#44 47.65 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 183.9 MB/s eta 0:00:00 +#44 47.66 Downloading mapbox_earcut-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95 kB) +#44 47.67 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#44 47.68 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) +#44 47.73 Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) +#44 47.76 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 583.9 MB/s eta 0:00:00 +#44 47.77 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#44 47.77 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 556.7 MB/s eta 0:00:00 +#44 47.78 Downloading multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124 kB) +#44 47.83 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#44 47.84 Downloading propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (205 kB) +#44 47.85 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#44 47.86 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 578.3 MB/s eta 0:00:00 +#44 47.87 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#44 47.88 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) +#44 47.89 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) +#44 47.91 Downloading scipy-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) +#44 48.08 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 241.1 MB/s eta 0:00:00 +#44 48.09 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) +#44 48.10 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#44 48.11 Downloading wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82 kB) +#44 48.15 Downloading yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319 kB) +#44 48.16 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#44 48.18 Downloading zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) +#44 48.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 180.2 MB/s eta 0:00:00 +#44 48.22 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) +#44 48.27 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) +#44 48.28 Downloading embreex-2.17.7.post6-cp310-cp310-manylinux_2_28_x86_64.whl (17.1 MB) +#44 48.40 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.1/17.1 MB 139.9 MB/s eta 0:00:00 +#44 48.41 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) +#44 48.43 Downloading lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (5.0 MB) +#44 48.48 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 96.7 MB/s eta 0:00:00 +#44 48.49 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) +#44 48.50 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) +#44 48.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 567.1 MB/s eta 0:00:00 +#44 48.51 Downloading shapely-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) +#44 48.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 296.7 MB/s eta 0:00:00 +#44 48.53 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) +#44 48.59 Downloading vhacdx-0.0.8.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211 kB) +#44 48.67 Downloading xatlas-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230 kB) +#44 48.68 Downloading xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) +#44 48.70 Downloading exceptiongroup-1.2.2-py3-none-any.whl (16 kB) +#44 48.71 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) +#44 48.72 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) +#44 48.73 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#44 48.80 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) +#44 48.81 Downloading rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) +#44 48.82 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#44 48.83 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#44 ... + +#62 [opea/multimodalqna-ui:latest 5/8] RUN mkdir -p /home/user +#62 DONE 7.7s + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 41.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 222.9 MB/s eta 0:00:00 +#58 41.65 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) +#58 42.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 169.9 MB/s eta 0:00:00 +#58 42.94 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) +#58 43.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 288.9 MB/s eta 0:00:00 +#58 43.15 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) +#58 43.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 262.9 MB/s eta 0:00:00 +#58 43.65 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) +#58 44.47 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 253.9 MB/s eta 0:00:00 +#58 44.48 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) +#58 45.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 289.8 MB/s eta 0:00:00 +#58 45.02 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) +#58 45.56 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 350.0 MB/s eta 0:00:00 +#58 45.57 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) +#58 45.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 359.6 MB/s eta 0:00:00 +#58 45.64 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) +#58 45.65 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) +#58 45.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 352.5 MB/s eta 0:00:00 +#58 45.68 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.2 MB) +#58 47.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.2/253.2 MB 165.1 MB/s eta 0:00:00 +#58 47.22 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#58 47.23 Downloading transformers-4.45.2-py3-none-any.whl (9.9 MB) +#58 47.26 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.9/9.9 MB 358.0 MB/s eta 0:00:00 +#58 47.28 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) +#58 47.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 529.6 MB/s eta 0:00:00 +#58 47.35 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) +#58 47.36 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#58 47.37 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#58 47.41 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#58 47.42 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#58 47.43 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#58 47.50 Downloading optimum-1.24.0-py3-none-any.whl (433 kB) +#58 47.51 Downloading optimum_habana-1.15.0-py3-none-any.whl (809 kB) +#58 47.56 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 809.9/809.9 kB 513.0 MB/s eta 0:00:00 +#58 47.57 Downloading sentence_transformers-3.2.1-py3-none-any.whl (255 kB) +#58 47.58 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) +#58 47.59 Downloading accelerate-0.33.0-py3-none-any.whl (315 kB) +#58 47.60 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) +#58 47.66 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 363.1 MB/s eta 0:00:00 +#58 47.67 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#58 47.75 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#58 47.76 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#58 47.76 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#58 47.78 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#58 47.78 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#58 47.80 Downloading diffusers-0.31.0-py3-none-any.whl (2.9 MB) +#58 47.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 38.7 MB/s eta 0:00:00 +#58 47.88 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) +#58 47.89 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#58 47.90 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#58 47.92 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 291.7 MB/s eta 0:00:00 +#58 47.93 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#58 47.95 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#58 47.96 Downloading idna-3.10-py3-none-any.whl (70 kB) +#58 47.97 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) +#58 48.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 162.9 MB/s eta 0:00:00 +#58 48.61 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) +#58 48.63 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) +#58 48.65 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 631.4 MB/s eta 0:00:00 +#58 48.66 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) +#58 48.67 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#58 48.69 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) +#58 48.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 586.3 MB/s eta 0:00:00 +#58 48.75 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) +#58 48.81 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#58 48.82 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) +#58 48.83 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#58 48.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 580.8 MB/s eta 0:00:00 +#58 48.88 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#58 48.89 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) +#58 48.91 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) +#58 48.91 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 320.7 MB/s eta 0:00:00 +#58 48.92 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) +#58 48.94 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) +#58 48.96 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) +#58 49.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 245.0 MB/s eta 0:00:00 +#58 49.16 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#58 49.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 167.9 MB/s eta 0:00:00 +#58 49.19 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) +#58 49.20 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#58 49.25 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) +#58 49.26 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) +#58 49.31 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#58 49.32 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) +#58 49.38 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 96.2 MB/s eta 0:00:00 +#58 49.39 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) +#58 49.43 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) +#58 49.45 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) +#58 49.56 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 176.9 MB/s eta 0:00:00 +#58 49.57 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) +#58 49.58 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) +#58 49.59 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) +#58 49.62 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 238.8 MB/s eta 0:00:00 +#58 49.63 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#58 49.68 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 403.9 MB/s eta 0:00:00 +#58 49.69 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) +#58 49.71 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) +#58 49.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 330.4 MB/s eta 0:00:00 +#58 49.76 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) +#58 49.77 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 266.5 MB/s eta 0:00:00 +#58 49.78 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) +#58 49.82 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) +#58 49.83 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) +#58 49.84 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) +#58 49.85 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) +#58 49.86 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#58 49.87 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#58 49.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 226.2 MB/s eta 0:00:00 +#58 49.88 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) +#58 49.89 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) +#58 49.95 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#58 49.96 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#58 50.02 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287 kB) +#58 50.05 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) +#58 50.12 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 247.6 MB/s eta 0:00:00 +#58 50.13 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) +#58 50.17 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) +#58 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 48.69 Selecting previously unselected package coinor-libcoinutils3v5:amd64. +#42 48.69 Preparing to unpack .../055-coinor-libcoinutils3v5_2.11.4+repack1-2_amd64.deb ... +#42 48.86 Unpacking coinor-libcoinutils3v5:amd64 (2.11.4+repack1-2) ... +#42 49.52 Selecting previously unselected package coinor-libosi1v5:amd64. +#42 49.52 Preparing to unpack .../056-coinor-libosi1v5_0.108.6+repack1-2_amd64.deb ... +#42 49.57 Unpacking coinor-libosi1v5:amd64 (0.108.6+repack1-2) ... +#42 50.06 Selecting previously unselected package coinor-libclp1:amd64. +#42 50.06 Preparing to unpack .../057-coinor-libclp1_1.17.6-3_amd64.deb ... +#42 50.07 Unpacking coinor-libclp1:amd64 (1.17.6-3) ... +#42 52.07 Selecting previously unselected package coinor-libcgl1:amd64. +#42 52.07 Preparing to unpack .../058-coinor-libcgl1_0.60.3+repack1-4_amd64.deb ... +#42 52.41 Unpacking coinor-libcgl1:amd64 (0.60.3+repack1-4) ... +#42 54.48 Selecting previously unselected package coinor-libcbc3:amd64. +#42 54.48 Preparing to unpack .../059-coinor-libcbc3_2.10.8+ds1-1_amd64.deb ... +#42 54.94 Unpacking coinor-libcbc3:amd64 (2.10.8+ds1-1) ... +#42 55.23 Selecting previously unselected package coinor-libcoinmp1v5:amd64. +#42 55.24 Preparing to unpack .../060-coinor-libcoinmp1v5_1.8.3-3_amd64.deb ... +#42 55.48 Unpacking coinor-libcoinmp1v5:amd64 (1.8.3-3) ... +#42 56.78 Selecting previously unselected package java-common. +#42 56.78 Preparing to unpack .../061-java-common_0.74_all.deb ... +#42 57.00 Unpacking java-common (0.74) ... +#42 58.45 Selecting previously unselected package libasound2-data. +#42 58.45 Preparing to unpack .../062-libasound2-data_1.2.8-1_all.deb ... +#42 58.66 Unpacking libasound2-data (1.2.8-1) ... +#42 ... + +#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt +#50 51.28 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 1.3 MB/s eta 0:00:00 +#50 51.31 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#50 51.44 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#50 51.51 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#50 51.58 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) +#50 51.81 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) +#50 52.24 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#50 53.72 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 1.3 MB/s eta 0:00:00 +#50 53.76 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) +#50 54.20 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 1.9 MB/s eta 0:00:00 +#50 54.24 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#50 54.32 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#50 54.54 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) +#50 54.87 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#50 54.92 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#50 55.06 Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) +#50 55.13 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#50 57.07 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 1.6 MB/s eta 0:00:00 +#50 57.11 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl (766.7 MB) +#50 ... + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 48.61 Installing collected packages: triton, pytz, pydub, nvidia-cusparselt-cu12, mpmath, zstandard, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, threadpoolctl, tenacity, sympy, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, pygments, pyarrow, psutil, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, multidict, mdurl, MarkupSafe, lz4, lxml, jsonpointer, joblib, idna, h11, grpcio, fsspec, frozenlist, filelock, dill, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, multiprocess, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, jsonpatch, jinja2, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, starlette, scikit-learn, rich, requests-toolbelt, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, jsonschema-specifications, jaxlib, huggingface_hub, httpx, aiohttp, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, jsonschema, jax, fastapi, docarray, diffusers, transformers, opentelemetry-sdk, langchain-core, datasets, accelerate, sentence-transformers, optimum, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, optimum-habana, opentelemetry-exporter-otlp +#37 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 59.95 Selecting previously unselected package libasound2:amd64. +#42 59.95 Preparing to unpack .../063-libasound2_1.2.8-1+b1_amd64.deb ... +#42 60.19 Unpacking libasound2:amd64 (1.2.8-1+b1) ... +#42 61.18 Selecting previously unselected package libpcsclite1:amd64. +#42 ... + +#63 [opea/multimodalqna-ui:latest 6/8] COPY gradio /home/user/gradio +#63 DONE 6.0s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 61.19 Preparing to unpack .../064-libpcsclite1_1.9.9-2_amd64.deb ... +#42 61.25 Unpacking libpcsclite1:amd64 (1.9.9-2) ... +#42 61.28 Selecting previously unselected package openjdk-17-jre-headless:amd64. +#42 61.28 Preparing to unpack .../065-openjdk-17-jre-headless_17.0.14+7-1~deb12u1_amd64.deb ... +#42 61.28 Unpacking openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... +#42 62.35 Selecting previously unselected package default-jre-headless. +#42 62.35 Preparing to unpack .../066-default-jre-headless_2%3a1.17-74_amd64.deb ... +#42 62.35 Unpacking default-jre-headless (2:1.17-74) ... +#42 62.37 Selecting previously unselected package libgtk2.0-common. +#42 62.37 Preparing to unpack .../067-libgtk2.0-common_2.24.33-2+deb12u1_all.deb ... +#42 62.37 Unpacking libgtk2.0-common (2.24.33-2+deb12u1) ... +#42 62.59 Selecting previously unselected package libatk1.0-0:amd64. +#42 62.59 Preparing to unpack .../068-libatk1.0-0_2.46.0-5_amd64.deb ... +#42 62.59 Unpacking libatk1.0-0:amd64 (2.46.0-5) ... +#42 62.61 Selecting previously unselected package libfribidi0:amd64. +#42 62.61 Preparing to unpack .../069-libfribidi0_1.0.8-2.1_amd64.deb ... +#42 62.61 Unpacking libfribidi0:amd64 (1.0.8-2.1) ... +#42 62.63 Selecting previously unselected package libthai-data. +#42 62.63 Preparing to unpack .../070-libthai-data_0.1.29-1_all.deb ... +#42 62.63 Unpacking libthai-data (0.1.29-1) ... +#42 62.66 Selecting previously unselected package libdatrie1:amd64. +#42 62.66 Preparing to unpack .../071-libdatrie1_0.2.13-2+b1_amd64.deb ... +#42 62.67 Unpacking libdatrie1:amd64 (0.2.13-2+b1) ... +#42 62.68 Selecting previously unselected package libthai0:amd64. +#42 62.68 Preparing to unpack .../072-libthai0_0.1.29-1_amd64.deb ... +#42 62.68 Unpacking libthai0:amd64 (0.1.29-1) ... +#42 62.70 Selecting previously unselected package libpango-1.0-0:amd64. +#42 62.70 Preparing to unpack .../073-libpango-1.0-0_1.50.12+ds-1_amd64.deb ... +#42 62.71 Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ... +#42 62.74 Selecting previously unselected package libpangoft2-1.0-0:amd64. +#42 62.74 Preparing to unpack .../074-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ... +#42 62.74 Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... +#42 62.76 Selecting previously unselected package libpangocairo-1.0-0:amd64. +#42 62.76 Preparing to unpack .../075-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ... +#42 62.76 Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... +#42 62.78 Selecting previously unselected package libxcomposite1:amd64. +#42 62.78 Preparing to unpack .../076-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +#42 62.78 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +#42 62.79 Selecting previously unselected package libxfixes3:amd64. +#42 62.80 Preparing to unpack .../077-libxfixes3_1%3a6.0.0-2_amd64.deb ... +#42 62.80 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... +#42 62.81 Selecting previously unselected package libxcursor1:amd64. +#42 62.81 Preparing to unpack .../078-libxcursor1_1%3a1.2.1-1_amd64.deb ... +#42 62.82 Unpacking libxcursor1:amd64 (1:1.2.1-1) ... +#42 62.83 Selecting previously unselected package libxdamage1:amd64. +#42 62.83 Preparing to unpack .../079-libxdamage1_1%3a1.1.6-1_amd64.deb ... +#42 62.83 Unpacking libxdamage1:amd64 (1:1.1.6-1) ... +#42 62.85 Selecting previously unselected package libxi6:amd64. +#42 62.85 Preparing to unpack .../080-libxi6_2%3a1.8-1+b1_amd64.deb ... +#42 62.85 Unpacking libxi6:amd64 (2:1.8-1+b1) ... +#42 62.87 Selecting previously unselected package libgtk2.0-0:amd64. +#42 62.88 Preparing to unpack .../081-libgtk2.0-0_2.24.33-2+deb12u1_amd64.deb ... +#42 62.88 Unpacking libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... +#42 63.02 Selecting previously unselected package libglvnd0:amd64. +#42 63.02 Preparing to unpack .../082-libglvnd0_1.6.0-1_amd64.deb ... +#42 63.02 Unpacking libglvnd0:amd64 (1.6.0-1) ... +#42 63.04 Selecting previously unselected package libdrm-common. +#42 63.04 Preparing to unpack .../083-libdrm-common_2.4.114-1_all.deb ... +#42 63.04 Unpacking libdrm-common (2.4.114-1) ... +#42 63.07 Selecting previously unselected package libdrm2:amd64. +#42 63.07 Preparing to unpack .../084-libdrm2_2.4.114-1+b1_amd64.deb ... +#42 63.07 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... +#42 63.09 Selecting previously unselected package libglapi-mesa:amd64. +#42 63.09 Preparing to unpack .../085-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... +#42 63.09 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#42 63.11 Selecting previously unselected package libxcb-dri2-0:amd64. +#42 63.11 Preparing to unpack .../086-libxcb-dri2-0_1.15-1_amd64.deb ... +#42 63.11 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... +#42 63.14 Selecting previously unselected package libxcb-dri3-0:amd64. +#42 63.14 Preparing to unpack .../087-libxcb-dri3-0_1.15-1_amd64.deb ... +#42 63.14 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... +#42 63.16 Selecting previously unselected package libxcb-glx0:amd64. +#42 63.16 Preparing to unpack .../088-libxcb-glx0_1.15-1_amd64.deb ... +#42 63.16 Unpacking libxcb-glx0:amd64 (1.15-1) ... +#42 63.19 Selecting previously unselected package libxcb-present0:amd64. +#42 63.19 Preparing to unpack .../089-libxcb-present0_1.15-1_amd64.deb ... +#42 63.19 Unpacking libxcb-present0:amd64 (1.15-1) ... +#42 63.21 Selecting previously unselected package libxcb-randr0:amd64. +#42 63.22 Preparing to unpack .../090-libxcb-randr0_1.15-1_amd64.deb ... +#42 63.22 Unpacking libxcb-randr0:amd64 (1.15-1) ... +#42 63.24 Selecting previously unselected package libxcb-sync1:amd64. +#42 63.24 Preparing to unpack .../091-libxcb-sync1_1.15-1_amd64.deb ... +#42 63.24 Unpacking libxcb-sync1:amd64 (1.15-1) ... +#42 63.26 Selecting previously unselected package libxcb-xfixes0:amd64. +#42 63.27 Preparing to unpack .../092-libxcb-xfixes0_1.15-1_amd64.deb ... +#42 63.27 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... +#42 63.29 Selecting previously unselected package libxshmfence1:amd64. +#42 63.29 Preparing to unpack .../093-libxshmfence1_1.3-1_amd64.deb ... +#42 63.29 Unpacking libxshmfence1:amd64 (1.3-1) ... +#42 63.31 Selecting previously unselected package libxxf86vm1:amd64. +#42 63.31 Preparing to unpack .../094-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +#42 63.31 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#42 63.33 Selecting previously unselected package libdrm-amdgpu1:amd64. +#42 63.33 Preparing to unpack .../095-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... +#42 63.33 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#42 63.35 Selecting previously unselected package libpciaccess0:amd64. +#42 63.35 Preparing to unpack .../096-libpciaccess0_0.17-2_amd64.deb ... +#42 63.35 Unpacking libpciaccess0:amd64 (0.17-2) ... +#42 63.37 Selecting previously unselected package libdrm-intel1:amd64. +#42 63.37 Preparing to unpack .../097-libdrm-intel1_2.4.114-1+b1_amd64.deb ... +#42 63.37 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... +#42 63.39 Selecting previously unselected package libdrm-nouveau2:amd64. +#42 63.39 Preparing to unpack .../098-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... +#42 63.39 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#42 63.41 Selecting previously unselected package libdrm-radeon1:amd64. +#42 63.41 Preparing to unpack .../099-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... +#42 63.41 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#42 63.43 Selecting previously unselected package libedit2:amd64. +#42 63.43 Preparing to unpack .../100-libedit2_3.1-20221030-2_amd64.deb ... +#42 63.43 Unpacking libedit2:amd64 (3.1-20221030-2) ... +#42 63.45 Selecting previously unselected package libz3-4:amd64. +#42 63.46 Preparing to unpack .../101-libz3-4_4.8.12-3.1_amd64.deb ... +#42 63.46 Unpacking libz3-4:amd64 (4.8.12-3.1) ... +#42 63.96 Selecting previously unselected package libllvm15:amd64. +#42 63.96 Preparing to unpack .../102-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... +#42 63.96 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... +#42 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 53.38 Setting up libsnappy1v5:amd64 (1.1.9-3) ... +#49 54.17 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#49 54.19 Setting up libasound2-data (1.2.8-1) ... +#49 54.19 Setting up libz3-4:amd64 (4.8.12-3.1) ... +#49 54.19 Setting up libblas3:amd64 (3.11.0-2) ... +#49 54.23 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode +#49 54.64 Setting up libglib2.0-data (2.74.6-2+deb12u5) ... +#49 55.16 Setting up libflac12:amd64 (1.4.2+ds-2) ... +#49 55.81 Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ... +#49 56.60 Setting up libslang2:amd64 (2.3.3-3) ... +#49 57.49 Setting up libva2:amd64 (2.17.0-1) ... +#49 58.10 Setting up libmbedcrypto7:amd64 (2.28.3-1) ... +#49 58.56 Setting up libx11-data (2:1.8.4-2+deb12u2) ... +#49 59.26 Setting up libepoxy0:amd64 (1.5.10-1) ... +#49 59.55 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#49 60.02 Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... +#49 60.22 Setting up libfribidi0:amd64 (1.0.8-2.1) ... +#49 60.23 Setting up libopus0:amd64 (1.3.1-3) ... +#49 60.23 Setting up libquadmath0:amd64 (12.2.0-14) ... +#49 60.23 Setting up intel-media-va-driver:amd64 (23.1.1+dfsg1-1) ... +#49 60.24 Setting up libpng16-16:amd64 (1.6.39-2) ... +#49 60.24 Setting up libvorbis0a:amd64 (1.3.7-1) ... +#49 60.24 Setting up fonts-dejavu-core (2.37-6) ... +#49 60.27 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... +#49 60.27 Setting up libaacs0:amd64 (0.11.1-2) ... +#49 60.27 Setting up libjxl0.7:amd64 (0.7.0-10) ... +#49 60.27 Setting up pocketsphinx-en-us (0.8+5prealpha+1-15) ... +#49 60.28 Setting up libdav1d6:amd64 (1.0.0-2+deb12u1) ... +#49 60.28 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#49 60.28 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#49 60.28 Setting up libgfortran5:amd64 (12.2.0-14) ... +#49 60.28 Setting up libvulkan1:amd64 (1.3.239.0-1) ... +#49 60.29 Setting up libwebp7:amd64 (1.2.4-0.2+deb12u1) ... +#49 60.29 Setting up librubberband2:amd64 (3.1.2+dfsg0-1) ... +#49 60.29 Setting up libbdplus0:amd64 (0.2.0-3) ... +#49 60.29 Setting up libnuma1:amd64 (2.0.16-1) ... +#49 60.29 Setting up libvidstab1.1:amd64 (1.1.0-2+b1) ... +#49 60.30 Setting up libsrt1.5-gnutls:amd64 (1.5.1-1+deb12u1) ... +#49 60.30 Setting up alsa-topology-conf (1.2.5.1-2) ... +#49 60.30 Setting up ocl-icd-libopencl1:amd64 (2.3.1-1) ... +#49 60.30 Setting up libasyncns0:amd64 (0.8-6+b3) ... +#49 60.32 Setting up libxshmfence1:amd64 (1.3-1) ... +#49 60.32 Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... +#49 60.32 Setting up libbs2b0:amd64 (3.1.0+dfsg-7) ... +#49 60.32 Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ... +#49 60.32 Setting up libasound2:amd64 (1.2.8-1+b1) ... +#49 60.32 Setting up libzimg2:amd64 (3.0.4+ds1-1) ... +#49 60.32 Setting up libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... +#49 60.32 Setting up libopenal-data (1:1.19.1-2) ... +#49 60.32 Setting up libthai-data (0.1.29-1) ... +#49 60.32 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... +#49 60.33 Setting up libvpx7:amd64 (1.12.0-1+deb12u3) ... +#49 60.33 Setting up libwayland-egl1:amd64 (1.21.0-1) ... +#49 60.33 Setting up libusb-1.0-0:amd64 (2:1.0.26-1) ... +#49 60.33 Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ... +#49 60.38 Setting up libmfx1:amd64 (22.5.4-1) ... +#49 60.39 Setting up libsamplerate0:amd64 (0.2.2-3) ... +#49 60.39 Setting up libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... +#49 60.39 Setting up libbsd0:amd64 (0.11.7-2) ... +#49 60.39 Setting up libdrm-common (2.4.114-1) ... +#49 60.39 Setting up libelf1:amd64 (0.188-2.1) ... +#49 60.40 Setting up publicsuffix (20230209.2326-1) ... +#49 60.40 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#49 60.40 Setting up dbus-bin (1.14.10-1~deb12u1) ... +#49 60.40 Setting up libzvbi-common (0.2.41-1) ... +#49 60.40 Setting up libmp3lame0:amd64 (3.100-6) ... +#49 60.41 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +#49 60.41 Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ... +#49 60.41 Setting up libiec61883-0:amd64 (1.2.0-6+b1) ... +#49 60.41 Setting up libserd-0-0:amd64 (0.30.16-1) ... +#49 60.41 Setting up libxkbcommon0:amd64 (1.5.0-1) ... +#49 60.42 Setting up libwayland-client0:amd64 (1.21.0-1) ... +#49 60.42 Setting up libavc1394-0:amd64 (0.5.4-5) ... +#49 60.42 Setting up libzvbi0:amd64 (0.2.41-1) ... +#49 60.42 Setting up python3.11 (3.11.2-6+deb12u5) ... +#49 61.10 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... +#49 61.10 Setting up liblapack3:amd64 (3.11.0-2) ... +#49 61.10 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode +#49 61.10 Setting up libxcb1:amd64 (1.15-1) ... +#49 61.11 Setting up libxcb-xfixes0:amd64 (1.15-1) ... +#49 61.11 Setting up libplacebo208:amd64 (4.208.0-3) ... +#49 61.11 Setting up libzmq5:amd64 (4.3.4-6) ... +#49 61.11 Setting up libcaca0:amd64 (0.99.beta20-3) ... +#49 61.11 Setting up alsa-ucm-conf (1.2.8-1) ... +#49 61.12 Setting up libxcb-render0:amd64 (1.15-1) ... +#49 61.12 Setting up libsoxr0:amd64 (0.1.3-4) ... +#49 61.12 Setting up libcdio-cdda2:amd64 (10.2+2.0.1-1) ... +#49 61.12 Setting up fontconfig-config (2.14.1-4) ... +#49 61.19 debconf: unable to initialize frontend: Dialog +#49 61.19 debconf: (TERM is not set, so the dialog frontend is not usable.) +#49 61.19 debconf: falling back to frontend: Readline +#49 61.19 debconf: unable to initialize frontend: Readline +#49 61.19 debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.36.0 /usr/local/share/perl/5.36.0 /usr/lib/x86_64-linux-gnu/perl5/5.36 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.36 /usr/share/perl/5.36 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) +#49 61.19 debconf: falling back to frontend: Teletype +#49 61.31 Setting up libcdio-paranoia2:amd64 (10.2+2.0.1-1) ... +#49 61.31 Setting up libxcb-glx0:amd64 (1.15-1) ... +#49 61.32 Setting up libedit2:amd64 (3.1-20221030-2) ... +#49 61.32 Setting up libxcb-shape0:amd64 (1.15-1) ... +#49 61.32 Setting up python3 (3.11.2-1+b1) ... +#49 61.33 running python rtupdate hooks for python3.11... +#49 61.33 running python post-rtupdate hooks for python3.11... +#49 61.41 Setting up libxcb-shm0:amd64 (1.15-1) ... +#49 61.42 Setting up dbus-daemon (1.14.10-1~deb12u1) ... +#49 61.42 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#49 61.42 Setting up librist4:amd64 (0.2.7+dfsg-1) ... +#49 61.43 Setting up libxcb-present0:amd64 (1.15-1) ... +#49 61.43 Setting up libthai0:amd64 (0.1.29-1) ... +#49 61.43 Setting up libvorbisfile3:amd64 (1.3.7-1) ... +#49 61.43 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#49 61.43 Setting up libxcb-sync1:amd64 (1.15-1) ... +#49 61.44 Setting up dbus (1.14.10-1~deb12u1) ... +#49 61.45 invoke-rc.d: could not determine current runlevel +#49 61.45 invoke-rc.d: policy-rc.d denied execution of start. +#49 61.46 Setting up shared-mime-info (2.2-1) ... +#49 62.01 Setting up libdc1394-25:amd64 (2.2.6-4) ... +#49 62.02 Setting up libx265-199:amd64 (3.5-2+b1) ... +#49 62.03 Setting up libsndio7.0:amd64 (1.9.0-0.3+b2) ... +#49 62.03 Setting up libxcb-dri2-0:amd64 (1.15-1) ... +#49 62.03 Setting up libjack-jackd2-0:amd64 (1.9.21~dfsg-3) ... +#49 62.03 Setting up libdrm2:amd64 (2.4.114-1+b1) ... +#49 62.03 Setting up libflite1:amd64 (2.2-5) ... +#49 62.04 Setting up libva-drm2:amd64 (2.17.0-1) ... +#49 62.04 Setting up libsord-0-0:amd64 (0.16.14+git221008-1) ... +#49 62.04 Setting up libwayland-cursor0:amd64 (1.21.0-1) ... +#49 62.04 Setting up libxcb-randr0:amd64 (1.15-1) ... +#49 62.05 Setting up libsratom-0-0:amd64 (0.6.14-1) ... +#49 62.05 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... +#49 62.05 Setting up libdecor-0-0:amd64 (0.1.1-2) ... +#49 62.05 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... +#49 62.05 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#49 62.06 Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... +#49 62.06 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... +#49 62.08 Setting up curl (7.88.1-10+deb12u8) ... +#49 62.08 Setting up libfontconfig1:amd64 (2.14.1-4) ... +#49 62.08 Setting up libsndfile1:amd64 (1.2.0-1) ... +#49 62.08 Setting up libbluray2:amd64 (1:1.3.4-1) ... +#49 62.08 Setting up liblilv-0-0:amd64 (0.24.14-1) ... +#49 62.09 Setting up libopenmpt0:amd64 (0.6.9-1) ... +#49 62.09 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#49 62.09 Setting up libxcb-dri3-0:amd64 (1.15-1) ... +#49 62.09 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#49 62.10 Setting up fontconfig (2.14.1-4) ... +#49 62.10 Regenerating fonts cache... +#49 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 64.87 Selecting previously unselected package libsensors-config. +#42 64.87 Preparing to unpack .../103-libsensors-config_1%3a3.6.0-7.1_all.deb ... +#42 64.88 Unpacking libsensors-config (1:3.6.0-7.1) ... +#42 64.92 Selecting previously unselected package libsensors5:amd64. +#42 64.93 Preparing to unpack .../104-libsensors5_1%3a3.6.0-7.1_amd64.deb ... +#42 64.96 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... +#42 65.65 Selecting previously unselected package libgl1-mesa-dri:amd64. +#42 65.65 Preparing to unpack .../105-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... +#42 65.78 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#42 ... + +#59 [opea/multimodalqna:latest comps-base 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/GenAIComps/requirements.txt +#59 50.74 Successfully installed Pillow-11.1.0 SQLAlchemy-2.0.37 aiofiles-24.1.0 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 cachetools-5.5.1 certifi-2025.1.31 charset-normalizer-3.4.1 click-8.1.8 dataclasses-json-0.6.7 deprecated-1.2.18 docarray-0.40.0 docx2txt-0.8 durationpy-0.9 fastapi-0.115.8 frozenlist-1.5.0 google-auth-2.38.0 googleapis-common-protos-1.66.0 greenlet-3.1.1 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 httpx-sse-0.4.0 idna-3.10 importlib-metadata-8.5.0 jsonpatch-1.33 jsonpointer-3.0.0 kubernetes-32.0.0 langchain-0.3.17 langchain-community-0.3.16 langchain-core-0.3.33 langchain-text-splitters-0.3.5 langsmith-0.3.4 markdown-it-py-3.0.0 marshmallow-3.26.1 mdurl-0.1.2 multidict-6.1.0 mypy-extensions-1.0.0 numpy-1.26.4 oauthlib-3.2.2 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 orjson-3.10.15 packaging-24.2 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pyasn1-0.6.1 pyasn1-modules-0.4.1 pydantic-2.10.6 pydantic-core-2.27.2 pydantic-settings-2.7.1 pygments-2.19.1 pypdf-5.2.0 python-dateutil-2.9.0.post0 python-dotenv-1.0.1 python-multipart-0.0.20 pyyaml-6.0.2 requests-2.32.3 requests-oauthlib-2.0.0 requests-toolbelt-1.0.0 rich-13.9.4 rsa-4.9 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 tenacity-9.0.0 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 urllib3-2.3.0 uvicorn-0.34.0 websocket-client-1.8.0 wrapt-1.17.2 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 +#59 50.74 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#59 DONE 52.7s + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 59.10 Building wheels for collected packages: pycollada +#58 59.10 Building wheel for pycollada (setup.py): started +#58 ... + +#64 [opea/multimodalqna:latest comps-base 5/5] WORKDIR /home/user +#64 DONE 0.4s + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 59.47 Building wheel for pycollada (setup.py): finished with status 'done' +#58 59.48 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=6bf8628e1ff788431052c26d72f5168711df49398f8a0c652dc9fadff33bd30e +#58 59.48 Stored in directory: /tmp/pip-ephem-wheel-cache-l77xglvn/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 +#58 59.48 Successfully built pycollada +#58 ... + +#65 [opea/multimodalqna:latest stage-3 1/1] COPY ./multimodalqna.py /home/user/multimodalqna.py +#65 DONE 0.1s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 66.37 Selecting previously unselected package libglx-mesa0:amd64. +#42 66.37 Preparing to unpack .../106-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... +#42 66.37 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#42 66.40 Selecting previously unselected package libglx0:amd64. +#42 66.40 Preparing to unpack .../107-libglx0_1.6.0-1_amd64.deb ... +#42 66.40 Unpacking libglx0:amd64 (1.6.0-1) ... +#42 66.43 Selecting previously unselected package libgl1:amd64. +#42 66.43 Preparing to unpack .../108-libgl1_1.6.0-1_amd64.deb ... +#42 66.43 Unpacking libgl1:amd64 (1.6.0-1) ... +#42 66.46 Selecting previously unselected package libgif7:amd64. +#42 66.46 Preparing to unpack .../109-libgif7_5.2.1-2.5_amd64.deb ... +#42 66.46 Unpacking libgif7:amd64 (5.2.1-2.5) ... +#42 66.48 Selecting previously unselected package libxtst6:amd64. +#42 66.48 Preparing to unpack .../110-libxtst6_2%3a1.2.3-1.1_amd64.deb ... +#42 66.49 Unpacking libxtst6:amd64 (2:1.2.3-1.1) ... +#42 66.50 Selecting previously unselected package openjdk-17-jre:amd64. +#42 66.51 Preparing to unpack .../111-openjdk-17-jre_17.0.14+7-1~deb12u1_amd64.deb ... +#42 66.51 Unpacking openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... +#42 66.54 Selecting previously unselected package default-jre. +#42 66.54 Preparing to unpack .../112-default-jre_2%3a1.17-74_amd64.deb ... +#42 66.55 Unpacking default-jre (2:1.17-74) ... +#42 66.56 Selecting previously unselected package libabw-0.1-1:amd64. +#42 66.57 Preparing to unpack .../113-libabw-0.1-1_0.1.3-1_amd64.deb ... +#42 66.57 Unpacking libabw-0.1-1:amd64 (0.1.3-1) ... +#42 66.59 Selecting previously unselected package libarchive13:amd64. +#42 66.60 Preparing to unpack .../114-libarchive13_3.6.2-1+deb12u2_amd64.deb ... +#42 66.65 Unpacking libarchive13:amd64 (3.6.2-1+deb12u2) ... +#42 66.81 Selecting previously unselected package libbox2d2:amd64. +#42 ... + +#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl +#49 62.10 Regenerating fonts cache... done. +#49 64.25 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#49 64.67 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... +#49 64.82 Setting up libgbm1:amd64 (22.3.6-1+deb12u1) ... +#49 64.83 Setting up libpulse0:amd64 (16.1+dfsg1-2+b1) ... +#49 64.88 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#49 65.12 Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ... +#49 65.19 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... +#49 65.19 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#49 65.25 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... +#49 65.31 Setting up libopenal1:amd64 (1:1.19.1-2) ... +#49 65.32 Setting up libcairo2:amd64 (1.16.0-7) ... +#49 65.32 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#49 65.33 Setting up libass9:amd64 (1:0.17.1-1) ... +#49 65.33 Setting up libxfixes3:amd64 (1:6.0.0-2) ... +#49 65.33 Setting up libxv1:amd64 (2:1.0.11-1.1) ... +#49 65.33 Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ... +#49 65.34 Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u1) ... +#49 65.34 Setting up libvdpau1:amd64 (1.5-2) ... +#49 65.34 Setting up libtheora0:amd64 (1.1.1+dfsg.1-16.1+b1) ... +#49 65.35 Setting up libcairo-gobject2:amd64 (1.16.0-7) ... +#49 65.35 Setting up libxss1:amd64 (1:1.2.3-1) ... +#49 65.35 Setting up mesa-va-drivers:amd64 (22.3.6-1+deb12u1) ... +#49 65.35 Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... +#49 65.36 Setting up libva-x11-2:amd64 (2.17.0-1) ... +#49 65.36 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +#49 65.36 Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... +#49 65.36 Setting up mesa-vulkan-drivers:amd64 (22.3.6-1+deb12u1) ... +#49 65.37 Setting up mesa-vdpau-drivers:amd64 (22.3.6-1+deb12u1) ... +#49 65.37 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#49 65.37 Setting up libxi6:amd64 (2:1.8-1+b1) ... +#49 65.37 Setting up libglx0:amd64 (1.6.0-1) ... +#49 65.38 Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-16) ... +#49 65.38 Setting up libxcursor1:amd64 (1:1.2.1-1) ... +#49 65.38 Setting up librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ... +#49 65.38 Setting up libpocketsphinx3:amd64 (0.8+5prealpha+1-15) ... +#49 65.38 Setting up libavutil57:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.39 Setting up libgl1:amd64 (1.6.0-1) ... +#49 65.39 Setting up libswresample4:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.39 Setting up va-driver-all:amd64 (2.17.0-1) ... +#49 65.39 Setting up libdecor-0-plugin-1-cairo:amd64 (0.1.1-2) ... +#49 65.39 Setting up librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ... +#49 65.40 Setting up libpostproc56:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.40 Setting up libavcodec59:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.41 Setting up libsdl2-2.0-0:amd64 (2.26.5+dfsg-1) ... +#49 65.41 Setting up libswscale6:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.41 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +#49 65.41 Setting up libchromaprint1:amd64 (1.5.1-2+b1) ... +#49 65.42 Setting up libavformat59:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.42 Setting up libavfilter8:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.42 Setting up libavdevice59:amd64 (7:5.1.6-0+deb12u1) ... +#49 65.42 Setting up vdpau-driver-all:amd64 (1.5-2) ... +#49 65.43 Setting up ffmpeg (7:5.1.6-0+deb12u1) ... +#49 65.43 Processing triggers for libc-bin (2.36-9+deb12u9) ... +#49 65.45 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... +#49 DONE 65.8s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 66.81 Preparing to unpack .../115-libbox2d2_2.4.1-3_amd64.deb ... +#42 66.81 Unpacking libbox2d2:amd64 (2.4.1-3) ... +#42 66.84 Selecting previously unselected package libcdr-0.1-1:amd64. +#42 66.84 Preparing to unpack .../116-libcdr-0.1-1_0.1.6-2+b2_amd64.deb ... +#42 66.84 Unpacking libcdr-0.1-1:amd64 (0.1.6-2+b2) ... +#42 66.89 Selecting previously unselected package libsuitesparseconfig5:amd64. +#42 66.89 Preparing to unpack .../117-libsuitesparseconfig5_1%3a5.12.0+dfsg-2_amd64.deb ... +#42 66.90 Unpacking libsuitesparseconfig5:amd64 (1:5.12.0+dfsg-2) ... +#42 66.91 Selecting previously unselected package libcolamd2:amd64. +#42 66.92 Preparing to unpack .../118-libcolamd2_1%3a5.12.0+dfsg-2_amd64.deb ... +#42 66.92 Unpacking libcolamd2:amd64 (1:5.12.0+dfsg-2) ... +#42 ... + +#66 [opea/whisper:latest 4/6] COPY --chown=user:user comps /home/user/comps +#66 DONE 0.4s + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 67.22 Selecting previously unselected package libcurl4:amd64. +#42 67.23 Preparing to unpack .../119-libcurl4_7.88.1-10+deb12u8_amd64.deb ... +#42 67.26 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... +#42 67.30 Selecting previously unselected package libe-book-0.1-1:amd64. +#42 67.30 Preparing to unpack .../120-libe-book-0.1-1_0.1.3-2+b2_amd64.deb ... +#42 67.30 Unpacking libe-book-0.1-1:amd64 (0.1.3-2+b2) ... +#42 67.34 Selecting previously unselected package libepubgen-0.1-1:amd64. +#42 67.34 Preparing to unpack .../121-libepubgen-0.1-1_0.1.1-1_amd64.deb ... +#42 67.34 Unpacking libepubgen-0.1-1:amd64 (0.1.1-1) ... +#42 67.37 Selecting previously unselected package libetonyek-0.1-1:amd64. +#42 67.37 Preparing to unpack .../122-libetonyek-0.1-1_0.1.10-3+b1_amd64.deb ... +#42 67.37 Unpacking libetonyek-0.1-1:amd64 (0.1.10-3+b1) ... +#42 67.44 Selecting previously unselected package libfreehand-0.1-1. +#42 67.45 Preparing to unpack .../123-libfreehand-0.1-1_0.1.2-3_amd64.deb ... +#42 67.45 Unpacking libfreehand-0.1-1 (0.1.2-3) ... +#42 67.48 Selecting previously unselected package libgl1-mesa-glx:amd64. +#42 67.48 Preparing to unpack .../124-libgl1-mesa-glx_22.3.6-1+deb12u1_amd64.deb ... +#42 67.49 Unpacking libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... +#42 67.50 Selecting previously unselected package libjemalloc2:amd64. +#42 67.50 Preparing to unpack .../125-libjemalloc2_5.3.0-1_amd64.deb ... +#42 67.50 Unpacking libjemalloc2:amd64 (5.3.0-1) ... +#42 67.54 Selecting previously unselected package libjemalloc-dev. +#42 67.54 Preparing to unpack .../126-libjemalloc-dev_5.3.0-1_amd64.deb ... +#42 67.54 Unpacking libjemalloc-dev (5.3.0-1) ... +#42 67.59 Selecting previously unselected package libwebpmux3:amd64. +#42 67.60 Preparing to unpack .../127-libwebpmux3_1.2.4-0.2+deb12u1_amd64.deb ... +#42 67.60 Unpacking libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... +#42 67.62 Selecting previously unselected package liblept5:amd64. +#42 67.62 Preparing to unpack .../128-liblept5_1.82.0-3+b3_amd64.deb ... +#42 67.62 Unpacking liblept5:amd64 (1.82.0-3+b3) ... +#42 67.71 Selecting previously unselected package libmspub-0.1-1:amd64. +#42 67.71 Preparing to unpack .../129-libmspub-0.1-1_0.1.4-3+b3_amd64.deb ... +#42 67.71 Unpacking libmspub-0.1-1:amd64 (0.1.4-3+b3) ... +#42 67.74 Selecting previously unselected package libmwaw-0.3-3:amd64. +#42 67.74 Preparing to unpack .../130-libmwaw-0.3-3_0.3.21-1_amd64.deb ... +#42 67.74 Unpacking libmwaw-0.3-3:amd64 (0.3.21-1) ... +#42 67.94 Selecting previously unselected package libodfgen-0.1-1:amd64. +#42 67.94 Preparing to unpack .../131-libodfgen-0.1-1_0.1.8-2_amd64.deb ... +#42 67.94 Unpacking libodfgen-0.1-1:amd64 (0.1.8-2) ... +#42 67.98 Selecting previously unselected package libpagemaker-0.0-0:amd64. +#42 67.98 Preparing to unpack .../132-libpagemaker-0.0-0_0.0.4-1_amd64.deb ... +#42 67.98 Unpacking libpagemaker-0.0-0:amd64 (0.0.4-1) ... +#42 68.00 Selecting previously unselected package libpq5:amd64. +#42 68.00 Preparing to unpack .../133-libpq5_15.10-0+deb12u1_amd64.deb ... +#42 68.00 Unpacking libpq5:amd64 (15.10-0+deb12u1) ... +#42 68.03 Selecting previously unselected package libssl-dev:amd64. +#42 68.04 Preparing to unpack .../134-libssl-dev_3.0.15-1~deb12u1_amd64.deb ... +#42 68.04 Unpacking libssl-dev:amd64 (3.0.15-1~deb12u1) ... +#42 68.21 Selecting previously unselected package libpq-dev. +#42 68.21 Preparing to unpack .../135-libpq-dev_15.10-0+deb12u1_amd64.deb ... +#42 68.21 Unpacking libpq-dev (15.10-0+deb12u1) ... +#42 68.24 Selecting previously unselected package libpython3.11:amd64. +#42 68.24 Preparing to unpack .../136-libpython3.11_3.11.2-6+deb12u5_amd64.deb ... +#42 68.24 Unpacking libpython3.11:amd64 (3.11.2-6+deb12u5) ... +#42 68.40 Selecting previously unselected package libqxp-0.0-0. +#42 68.40 Preparing to unpack .../137-libqxp-0.0-0_0.0.2-1+b3_amd64.deb ... +#42 68.40 Unpacking libqxp-0.0-0 (0.0.2-1+b3) ... +#42 68.43 Selecting previously unselected package lp-solve. +#42 68.43 Preparing to unpack .../138-lp-solve_5.5.2.5-2_amd64.deb ... +#42 68.43 Unpacking lp-solve (5.5.2.5-2) ... +#42 68.46 Selecting previously unselected package libstaroffice-0.0-0:amd64. +#42 68.47 Preparing to unpack .../139-libstaroffice-0.0-0_0.0.7-1_amd64.deb ... +#42 68.47 Unpacking libstaroffice-0.0-0:amd64 (0.0.7-1) ... +#42 68.54 Selecting previously unselected package libwps-0.4-4:amd64. +#42 68.54 Preparing to unpack .../140-libwps-0.4-4_0.4.13-1_amd64.deb ... +#42 68.54 Unpacking libwps-0.4-4:amd64 (0.4.13-1) ... +#42 68.62 Selecting previously unselected package libreoffice-calc. +#42 68.62 Preparing to unpack .../141-libreoffice-calc_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 68.62 Unpacking libreoffice-calc (4:7.4.7-1+deb12u6) ... +#42 ... + +#67 [opea/multimodalqna:latest] exporting to image +#67 exporting layers 2.4s done +#67 writing image sha256:969351029eafde09314f0019f51e51d41929ea6fc054a238e84eb0229c8b0ee3 done +#67 naming to docker.io/opea/multimodalqna:latest done +#67 DONE 2.4s + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 51.11 Successfully installed MarkupSafe-3.0.2 filelock-3.17.0 fsspec-2025.2.0 jinja2-3.1.5 mpmath-1.3.0 networkx-3.4.2 numpy-2.2.2 pillow-11.1.0 sympy-1.13.1 torch-2.6.0+cpu torchvision-0.21.0+cpu typing-extensions-4.12.2 +#54 51.11 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#54 52.09 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu +#54 52.41 Collecting bs4 (from -r /home/user/comps/retrievers/src/requirements.txt (line 1)) +#54 52.59 Downloading bs4-0.0.2-py2.py3-none-any.whl.metadata (411 bytes) +#54 52.83 Collecting cairosvg (from -r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 52.88 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +#54 52.99 Collecting docx2txt (from -r /home/user/comps/retrievers/src/requirements.txt (line 4)) +#54 53.04 Downloading docx2txt-0.8.tar.gz (2.8 kB) +#54 53.04 Preparing metadata (setup.py): started +#54 53.42 Preparing metadata (setup.py): finished with status 'done' +#54 53.51 Collecting easyocr (from -r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 53.55 Downloading easyocr-1.7.2-py3-none-any.whl.metadata (10 kB) +#54 53.72 Collecting fastapi (from -r /home/user/comps/retrievers/src/requirements.txt (line 6)) +#54 53.75 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#54 53.89 Collecting future (from -r /home/user/comps/retrievers/src/requirements.txt (line 7)) +#54 53.92 Downloading future-1.0.0-py3-none-any.whl.metadata (4.0 kB) +#54 54.18 Collecting graspologic (from -r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 54.22 Downloading graspologic-3.4.1-py3-none-any.whl.metadata (5.8 kB) +#54 54.54 Collecting haystack-ai==2.3.1 (from -r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 54.58 Downloading haystack_ai-2.3.1-py3-none-any.whl.metadata (13 kB) +#54 54.81 Collecting langchain-elasticsearch (from -r /home/user/comps/retrievers/src/requirements.txt (line 10)) +#54 54.85 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl.metadata (8.3 kB) +#54 55.08 Collecting langchain-pinecone (from -r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 55.12 Downloading langchain_pinecone-0.2.2-py3-none-any.whl.metadata (1.6 kB) +#54 55.38 Collecting langchain_community (from -r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 55.42 Downloading langchain_community-0.3.16-py3-none-any.whl.metadata (2.9 kB) +#54 55.64 Collecting langchain_huggingface (from -r /home/user/comps/retrievers/src/requirements.txt (line 13)) +#54 55.67 Downloading langchain_huggingface-0.1.2-py3-none-any.whl.metadata (1.3 kB) +#54 55.95 Collecting langchain_milvus (from -r /home/user/comps/retrievers/src/requirements.txt (line 14)) +#54 55.98 Downloading langchain_milvus-0.1.8-py3-none-any.whl.metadata (1.9 kB) +#54 56.23 Collecting llama-index-core (from -r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 56.27 Downloading llama_index_core-0.12.15-py3-none-any.whl.metadata (2.5 kB) +#54 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 69.18 Selecting previously unselected package libvisio-0.1-1:amd64. +#42 69.18 Preparing to unpack .../142-libvisio-0.1-1_0.1.7-1+b3_amd64.deb ... +#42 69.18 Unpacking libvisio-0.1-1:amd64 (0.1.7-1+b3) ... +#42 69.22 Selecting previously unselected package libwpd-0.10-10:amd64. +#42 69.22 Preparing to unpack .../143-libwpd-0.10-10_0.10.3-2+b1_amd64.deb ... +#42 69.22 Unpacking libwpd-0.10-10:amd64 (0.10.3-2+b1) ... +#42 69.25 Selecting previously unselected package libwpg-0.3-3:amd64. +#42 69.25 Preparing to unpack .../144-libwpg-0.3-3_0.3.3-1_amd64.deb ... +#42 69.25 Unpacking libwpg-0.3-3:amd64 (0.3.3-1) ... +#42 69.27 Selecting previously unselected package libzmf-0.0-0:amd64. +#42 69.27 Preparing to unpack .../145-libzmf-0.0-0_0.0.2-1+b5_amd64.deb ... +#42 69.27 Unpacking libzmf-0.0-0:amd64 (0.0.2-1+b5) ... +#42 69.29 Selecting previously unselected package libreoffice-draw. +#42 69.29 Preparing to unpack .../146-libreoffice-draw_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 69.30 Unpacking libreoffice-draw (4:7.4.7-1+deb12u6) ... +#42 69.52 Selecting previously unselected package libreoffice-impress. +#42 69.52 Preparing to unpack .../147-libreoffice-impress_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 69.53 Unpacking libreoffice-impress (4:7.4.7-1+deb12u6) ... +#42 69.64 Selecting previously unselected package libreoffice-math. +#42 69.64 Preparing to unpack .../148-libreoffice-math_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 69.65 Unpacking libreoffice-math (4:7.4.7-1+deb12u6) ... +#42 69.71 Selecting previously unselected package libreoffice-report-builder-bin. +#42 69.71 Preparing to unpack .../149-libreoffice-report-builder-bin_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 69.71 Unpacking libreoffice-report-builder-bin (4:7.4.7-1+deb12u6) ... +#42 69.79 Selecting previously unselected package libreoffice-writer. +#42 69.79 Preparing to unpack .../150-libreoffice-writer_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 69.80 Unpacking libreoffice-writer (4:7.4.7-1+deb12u6) ... +#42 70.43 Selecting previously unselected package python3-uno. +#42 70.43 Preparing to unpack .../151-python3-uno_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 70.43 Unpacking python3-uno (4:7.4.7-1+deb12u6) ... +#42 70.46 Selecting previously unselected package libreoffice. +#42 70.46 Preparing to unpack .../152-libreoffice_4%3a7.4.7-1+deb12u6_amd64.deb ... +#42 70.46 Unpacking libreoffice (4:7.4.7-1+deb12u6) ... +#42 70.48 Selecting previously unselected package libtesseract5:amd64. +#42 70.48 Preparing to unpack .../153-libtesseract5_5.3.0-2_amd64.deb ... +#42 70.48 Unpacking libtesseract5:amd64 (5.3.0-2) ... +#42 70.59 Selecting previously unselected package poppler-utils. +#42 70.59 Preparing to unpack .../154-poppler-utils_22.12.0-2+b1_amd64.deb ... +#42 70.59 Unpacking poppler-utils (22.12.0-2+b1) ... +#42 70.62 Selecting previously unselected package tesseract-ocr-eng. +#42 70.62 Preparing to unpack .../155-tesseract-ocr-eng_1%3a4.1.0-2_all.deb ... +#42 70.62 Unpacking tesseract-ocr-eng (1:4.1.0-2) ... +#42 70.75 Selecting previously unselected package tesseract-ocr-osd. +#42 70.75 Preparing to unpack .../156-tesseract-ocr-osd_1%3a4.1.0-2_all.deb ... +#42 70.75 Unpacking tesseract-ocr-osd (1:4.1.0-2) ... +#42 71.00 Selecting previously unselected package tesseract-ocr. +#42 71.01 Preparing to unpack .../157-tesseract-ocr_5.3.0-2_amd64.deb ... +#42 71.01 Unpacking tesseract-ocr (5.3.0-2) ... +#42 71.07 Setting up libksba8:amd64 (1.6.3-2) ... +#42 71.07 Setting up media-types (10.0.0) ... +#42 71.07 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +#42 71.07 Setting up liblcms2-2:amd64 (2.14-2) ... +#42 71.08 Setting up libpixman-1-0:amd64 (0.42.2-1) ... +#42 71.08 Setting up libpciaccess0:amd64 (0.17-2) ... +#42 71.08 Setting up libabsl20220623:amd64 (20220623.1-1) ... +#42 71.08 Setting up libxau6:amd64 (1:1.0.9-1) ... +#42 71.08 Setting up libpsl5:amd64 (0.21.2-1) ... +#42 71.08 Setting up libicu72:amd64 (72.1-3) ... +#42 71.09 Setting up liblerc4:amd64 (4.0.0+ds-2) ... +#42 71.09 Setting up wget (1.21.3-1+b2) ... +#42 71.09 Setting up hicolor-icon-theme (0.17-2) ... +#42 71.11 Setting up java-common (0.74) ... +#42 71.11 Setting up libhyphen0:amd64 (2.8.8-7) ... +#42 71.12 Setting up libdatrie1:amd64 (0.2.13-2+b1) ... +#42 71.12 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... +#42 71.12 No schema files found: doing nothing. +#42 71.12 Setting up libboost-iostreams1.74.0:amd64 (1.74.0+ds1-21) ... +#42 71.13 Setting up libglvnd0:amd64 (1.6.0-1) ... +#42 71.13 Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... +#42 71.13 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... +#42 71.13 Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... +#42 71.13 Setting up binutils-common:amd64 (2.40-2) ... +#42 71.14 Setting up libyajl2:amd64 (2.1.0-3+deb12u2) ... +#42 71.14 Setting up x11-common (1:7.7+23) ... +#42 71.21 debconf: unable to initialize frontend: Dialog +#42 71.21 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 71.21 debconf: falling back to frontend: Readline +#42 71.22 debconf: unable to initialize frontend: Readline +#42 71.22 debconf: (This frontend requires a controlling tty.) +#42 71.22 debconf: falling back to frontend: Teletype +#42 71.24 invoke-rc.d: could not determine current runlevel +#42 71.24 invoke-rc.d: policy-rc.d denied execution of restart. +#42 71.24 Setting up libsensors-config (1:3.6.0-7.1) ... +#42 71.25 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... +#42 71.25 Setting up libuno-sal3 (4:7.4.7-1+deb12u6) ... +#42 71.25 Setting up libdeflate0:amd64 (1.14-1) ... +#42 71.25 Setting up linux-libc-dev:amd64 (6.1.124-1) ... +#42 71.25 Setting up libctf-nobfd0:amd64 (2.40-2) ... +#42 71.26 Setting up tesseract-ocr-eng (1:4.1.0-2) ... +#42 71.26 Setting up libboost-filesystem1.74.0:amd64 (1.74.0+ds1-21) ... +#42 71.26 Setting up libnpth0:amd64 (1.6-3) ... +#42 71.26 Setting up libeot0:amd64 (0.01-5+b1) ... +#42 71.26 Setting up libjemalloc2:amd64 (5.3.0-1) ... +#42 71.26 Setting up libassuan0:amd64 (2.5.5-5) ... +#42 71.27 Setting up libgomp1:amd64 (12.2.0-14) ... +#42 71.27 Setting up bzip2 (1.0.8-5+b1) ... +#42 71.27 Setting up libunwind8:amd64 (1.6.2-3) ... +#42 71.27 Setting up libjbig0:amd64 (2.1-6.1) ... +#42 71.27 Setting up librevenge-0.0-0:amd64 (0.0.5-3) ... +#42 71.27 Setting up libjansson4:amd64 (2.14-2) ... +#42 71.28 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... +#42 71.28 Setting up libcap2-bin (1:2.66-4) ... +#42 71.28 Setting up libdconf1:amd64 (0.40.0-4) ... +#42 71.28 Setting up libasound2-data (1.2.8-1) ... +#42 71.28 Setting up libjemalloc-dev (5.3.0-1) ... +#42 71.28 Setting up libreoffice-style-colibre (4:7.4.7-1+deb12u6) ... +#42 71.29 Setting up perl-modules-5.36 (5.36.0-7+deb12u1) ... +#42 71.29 Setting up libz3-4:amd64 (4.8.12-3.1) ... +#42 71.30 Setting up liborcus-parser-0.17-0:amd64 (0.17.2-2+b2) ... +#42 71.30 Setting up libblas3:amd64 (3.11.0-2) ... +#42 71.30 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode +#42 71.30 Setting up libzxing2:amd64 (1.4.0-3+b1) ... +#42 71.30 Setting up libtirpc-dev:amd64 (1.3.3+ds-1) ... +#42 71.31 Setting up libnumbertext-data (1.0.11-1) ... +#42 71.31 Setting up rpcsvc-proto (1.4.3-1) ... +#42 71.31 Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ... +#42 71.31 Setting up libx11-data (2:1.8.4-2+deb12u2) ... +#42 ... + +#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt +#0 1.631 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#0 1.773 Collecting pip +#0 1.930 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#0 1.933 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#0 2.205 Collecting setuptools +#0 2.239 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#0 2.329 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#0 2.919 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 3.2 MB/s eta 0:00:00 +#0 2.961 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#0 3.238 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 4.5 MB/s eta 0:00:00 +#0 3.371 Installing collected packages: setuptools, pip +#0 3.371 Attempting uninstall: setuptools +#0 3.374 Found existing installation: setuptools 65.5.1 +#0 3.393 Uninstalling setuptools-65.5.1: +#0 3.533 Successfully uninstalled setuptools-65.5.1 +#0 4.744 Attempting uninstall: pip +#0 4.747 Found existing installation: pip 24.0 +#0 4.799 Uninstalling pip-24.0: +#0 5.100 Successfully uninstalled pip-24.0 +#0 6.223 Successfully installed pip-25.0 setuptools-75.8.0 +#0 6.224 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#0 7.292 Collecting gradio==5.5.0 (from -r /home/user/gradio/requirements.txt (line 1)) +#0 7.347 Downloading gradio-5.5.0-py3-none-any.whl.metadata (16 kB) +#0 7.466 Collecting gradio_pdf==0.0.19 (from -r /home/user/gradio/requirements.txt (line 2)) +#0 7.476 Downloading gradio_pdf-0.0.19-py3-none-any.whl.metadata (6.8 kB) +#0 7.525 Collecting moviepy==1.0.3 (from -r /home/user/gradio/requirements.txt (line 3)) +#0 7.537 Downloading moviepy-1.0.3.tar.gz (388 kB) +#0 7.620 Preparing metadata (setup.py): started +#0 7.823 Preparing metadata (setup.py): finished with status 'done' +#0 8.073 Collecting numpy==1.26.4 (from -r /home/user/gradio/requirements.txt (line 4)) +#0 8.081 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#0 8.211 Collecting opencv-python==4.10.0.82 (from -r /home/user/gradio/requirements.txt (line 5)) +#0 8.220 Downloading opencv_python-4.10.0.82-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) +#0 8.451 Collecting Pillow==10.3.0 (from -r /home/user/gradio/requirements.txt (line 6)) +#0 8.459 Downloading pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB) +#0 8.515 Collecting aiofiles<24.0,>=22.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 8.522 Downloading aiofiles-23.2.1-py3-none-any.whl.metadata (9.7 kB) +#0 8.584 Collecting anyio<5.0,>=3.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 8.592 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#0 8.692 Collecting fastapi<1.0,>=0.115.2 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 8.700 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#0 8.819 Collecting ffmpy (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 8.830 Downloading ffmpy-0.5.0-py3-none-any.whl.metadata (3.0 kB) +#0 8.979 Collecting gradio-client==1.4.2 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 8.989 Downloading gradio_client-1.4.2-py3-none-any.whl.metadata (7.1 kB) +#0 9.036 Collecting httpx>=0.24.1 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 9.044 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#0 9.109 Collecting huggingface-hub>=0.25.1 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 9.117 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#0 9.176 Collecting jinja2<4.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 9.184 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) +#0 9.303 Collecting markupsafe~=2.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 9.311 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) +#0 9.629 Collecting orjson~=3.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 9.639 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#0 9.687 Collecting packaging (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 9.697 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#0 9.843 Collecting pandas<3.0,>=1.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#0 9.851 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) +#68 10.09 Collecting pydantic>=2.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 10.10 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) +#68 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 71.31 Setting up make (4.3-4.1) ... +#42 71.31 Setting up libepoxy0:amd64 (1.5.10-1) ... +#42 71.32 Setting up libmpfr6:amd64 (4.2.0-1) ... +#42 71.32 Setting up libnspr4:amd64 (2:4.35-1) ... +#42 71.32 Setting up gnupg-l10n (2.2.40-1.1) ... +#42 71.32 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... +#42 71.32 Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ... +#42 71.32 Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... +#42 71.33 Setting up xz-utils (5.4.1-0.2) ... +#42 71.33 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist +#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist +#42 71.33 Setting up libfribidi0:amd64 (1.0.8-2.1) ... +#42 71.33 Setting up libquadmath0:amd64 (12.2.0-14) ... +#42 71.34 Setting up libssl-dev:amd64 (3.0.15-1~deb12u1) ... +#42 71.34 Setting up libpng16-16:amd64 (1.6.39-2) ... +#42 71.34 Setting up libmpc3:amd64 (1.3.1-1) ... +#42 71.34 Setting up libatomic1:amd64 (12.2.0-14) ... +#42 71.34 Setting up patch (2.7.6-7) ... +#42 71.34 Setting up liborc-0.4-0:amd64 (1:0.4.33-2) ... +#42 71.35 Setting up fonts-dejavu-core (2.37-6) ... +#42 71.37 Setting up libgdbm-compat4:amd64 (1.23-3) ... +#42 71.37 Setting up libfreehand-0.1-1 (0.1.2-3) ... +#42 71.37 Setting up libclucene-core1v5:amd64 (2.3.3.4+dfsg-1.1) ... +#42 71.37 Setting up libpcsclite1:amd64 (1.9.9-2) ... +#42 71.37 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... +#42 71.37 Setting up libltdl7:amd64 (2.4.7-7~deb12u1) ... +#42 71.38 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... +#42 71.38 Setting up libbox2d2:amd64 (2.4.1-3) ... +#42 71.38 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... +#42 71.38 Setting up libgfortran5:amd64 (12.2.0-14) ... +#42 71.38 Setting up libwebp7:amd64 (1.2.4-0.2+deb12u1) ... +#42 71.38 Setting up libmhash2:amd64 (0.9.9.9-9) ... +#42 71.39 Setting up libmythes-1.2-0:amd64 (2:1.2.5-1) ... +#42 71.39 Setting up libubsan1:amd64 (12.2.0-14) ... +#42 71.39 Setting up libgif7:amd64 (5.2.1-2.5) ... +#42 71.39 Setting up libnsl-dev:amd64 (1.3.0-2) ... +#42 71.39 Setting up sensible-utils (0.0.17+nmu1) ... +#42 71.39 Setting up libxshmfence1:amd64 (1.3-1) ... +#42 71.40 Setting up at-spi2-common (2.46.0-5) ... +#42 71.40 Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... +#42 71.40 Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... +#42 71.41 Setting up libasan8:amd64 (12.2.0-14) ... +#42 71.41 Setting up libexttextcat-data (3.4.5-1) ... +#42 71.41 Setting up libasound2:amd64 (1.2.8-1+b1) ... +#42 71.41 Setting up gpgconf (2.2.40-1.1) ... +#42 71.41 Setting up libepubgen-0.1-1:amd64 (0.1.1-1) ... +#42 71.41 Setting up libuno-salhelpergcc3-3 (4:7.4.7-1+deb12u6) ... +#42 71.42 Setting up libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... +#42 71.42 Setting up libthai-data (0.1.29-1) ... +#42 71.42 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... +#42 71.42 Setting up libgtk2.0-common (2.24.33-2+deb12u1) ... +#42 71.42 Setting up libatk1.0-0:amd64 (2.46.0-5) ... +#42 71.43 Setting up tesseract-ocr-osd (1:4.1.0-2) ... +#42 71.43 Setting up liblangtag-common (0.6.4-2) ... +#42 71.43 Setting up libtsan2:amd64 (12.2.0-14) ... +#42 71.43 Setting up ca-certificates-java (20230710~deb12u1) ... +#42 71.44 No JRE found. Skipping Java certificates setup. +#42 71.44 Setting up libhunspell-1.7-0:amd64 (1.7.1-1) ... +#42 71.45 Setting up libbinutils:amd64 (2.40-2) ... +#42 71.45 Setting up libisl23:amd64 (0.25-1.1) ... +#42 71.45 Setting up libc-dev-bin (2.36-9+deb12u9) ... +#42 71.45 Setting up libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... +#42 71.45 Setting up libbsd0:amd64 (0.11.7-2) ... +#42 71.45 Setting up libwpd-0.10-10:amd64 (0.10.3-2+b1) ... +#42 71.46 Setting up libdrm-common (2.4.114-1) ... +#42 71.46 Setting up libelf1:amd64 (0.188-2.1) ... +#42 71.46 Setting up libnumbertext-1.0-0:amd64 (1.0.11-1) ... +#42 71.46 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... +#42 71.46 Setting up libsuitesparseconfig5:amd64 (1:5.12.0+dfsg-2) ... +#42 71.46 Setting up libcc1-0:amd64 (12.2.0-14) ... +#42 71.47 Setting up libperl5.36:amd64 (5.36.0-7+deb12u1) ... +#42 71.47 Setting up iso-codes (4.15.0-1) ... +#42 71.47 Setting up gpg (2.2.40-1.1) ... +#42 71.47 Setting up liblsan0:amd64 (12.2.0-14) ... +#42 71.47 Setting up fonts-opensymbol (4:102.12+LibO7.4.7-1+deb12u6) ... +#42 71.48 Setting up libitm1:amd64 (12.2.0-14) ... +#42 71.48 Setting up libodfgen-0.1-1:amd64 (0.1.8-2) ... +#42 71.48 Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ... +#42 71.48 Setting up libvisio-0.1-1:amd64 (0.1.7-1+b3) ... +#42 71.48 Setting up libboost-thread1.74.0:amd64 (1.74.0+ds1-21) ... +#42 71.48 Setting up gnupg-utils (2.2.40-1.1) ... +#42 71.49 Setting up libctf0:amd64 (2.40-2) ... +#42 71.49 Setting up pinentry-curses (1.2.1-1) ... +#42 71.49 Setting up python3.11 (3.11.2-6+deb12u5) ... +#42 72.14 Setting up libice6:amd64 (2:1.0.10-1) ... +#42 72.14 Setting up libdw1:amd64 (0.188-2.1) ... +#42 72.14 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... +#42 72.15 Setting up liblapack3:amd64 (3.11.0-2) ... +#42 72.15 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode +#42 72.15 Setting up libstaroffice-0.0-0:amd64 (0.0.7-1) ... +#42 72.15 Setting up cpp-12 (12.2.0-14) ... +#42 72.16 Setting up libxcb1:amd64 (1.15-1) ... +#42 72.16 Setting up libxcb-xfixes0:amd64 (1.15-1) ... +#42 72.16 Setting up gpg-agent (2.2.40-1.1) ... +#42 72.62 Setting up libwps-0.4-4:amd64 (0.4.13-1) ... +#42 72.62 Setting up libcolamd2:amd64 (1:5.12.0+dfsg-2) ... +#42 72.62 Setting up libpython3.11:amd64 (3.11.2-6+deb12u5) ... +#42 72.63 Setting up libexttextcat-2.0-0:amd64 (3.4.5-1) ... +#42 72.63 Setting up libmspub-0.1-1:amd64 (0.1.4-3+b3) ... +#42 72.63 Setting up libarchive13:amd64 (3.6.2-1+deb12u2) ... +#42 72.63 Setting up libxcb-render0:amd64 (1.15-1) ... +#42 72.64 Setting up fontconfig-config (2.14.1-4) ... +#42 72.71 debconf: unable to initialize frontend: Dialog +#42 72.71 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 72.71 debconf: falling back to frontend: Readline +#42 72.72 debconf: unable to initialize frontend: Readline +#42 72.72 debconf: (This frontend requires a controlling tty.) +#42 72.72 debconf: falling back to frontend: Teletype +#42 72.84 Setting up libxcb-glx0:amd64 (1.15-1) ... +#42 72.85 Setting up libedit2:amd64 (3.1-20221030-2) ... +#42 72.85 Setting up gpgsm (2.2.40-1.1) ... +#42 72.85 Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ... +#42 72.85 Setting up lp-solve (5.5.2.5-2) ... +#42 72.85 Setting up python3 (3.11.2-1+b1) ... +#42 72.86 running python rtupdate hooks for python3.11... +#42 73.00 running python post-rtupdate hooks for python3.11... +#42 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 57.02 Building wheels for collected packages: pycollada +#44 57.02 Building wheel for pycollada (setup.py): started +#44 57.46 Building wheel for pycollada (setup.py): finished with status 'done' +#44 57.46 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127514 sha256=ecd8356affd525093b6d776305e47a67f6535ae12a295e25a4bf317971ff9b2c +#44 57.46 Stored in directory: /tmp/pip-ephem-wheel-cache-kuqdh4_i/wheels/11/92/79/6e8add42e1e207a97d435169cdc705e0a5dd6fb182f4368f3d +#44 57.47 Successfully built pycollada +#44 58.63 Installing collected packages: triton, pytz, pydub, nvidia-cusparselt-cu12, mpmath, zstandard, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, tenacity, sympy, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, pygments, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, mdurl, MarkupSafe, lz4, lxml, jsonpointer, idna, h11, grpcio, greenlet, fsspec, frozenlist, filelock, exceptiongroup, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, async-timeout, annotated-types, aiohappyeyeballs, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, SQLAlchemy, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, multidict, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, jsonpatch, jinja2, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, yarl, starlette, rich, requests-toolbelt, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, jsonschema-specifications, jaxlib, huggingface_hub, httpx, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, jsonschema, jax, fastapi, docarray, aiohttp, transformers, torchvision, opentelemetry-sdk, langchain-core, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, langchain-text-splitters, opentelemetry-exporter-otlp, langchain +#44 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 73.08 Setting up libpagemaker-0.0-0:amd64 (0.0.4-1) ... +#42 73.08 Setting up libnss3:amd64 (2:3.87.1-1+deb12u1) ... +#42 73.09 Setting up libxcb-shm0:amd64 (1.15-1) ... +#42 73.09 Setting up libmwaw-0.3-3:amd64 (0.3.21-1) ... +#42 73.09 Setting up libcdr-0.1-1:amd64 (0.1.6-2+b2) ... +#42 73.09 Setting up liblangtag1:amd64 (0.6.4-2) ... +#42 73.09 Setting up libzmf-0.0-0:amd64 (0.0.2-1+b5) ... +#42 73.09 Setting up libgpgme11:amd64 (1.18.0-3+b1) ... +#42 73.10 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... +#42 73.10 Setting up libqxp-0.0-0 (0.0.2-1+b3) ... +#42 73.10 Setting up liblept5:amd64 (1.82.0-3+b3) ... +#42 73.10 Setting up liborcus-0.17-0:amd64 (0.17.2-2+b2) ... +#42 73.10 Setting up libxcb-present0:amd64 (1.15-1) ... +#42 73.10 Setting up coinor-libcoinutils3v5:amd64 (2.11.4+repack1-2) ... +#42 73.11 Setting up dirmngr (2.2.40-1.1) ... +#42 73.23 Setting up libthai0:amd64 (0.1.29-1) ... +#42 73.23 Setting up perl (5.36.0-7+deb12u1) ... +#42 73.24 Setting up libgprofng0:amd64 (2.40-2) ... +#42 73.24 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... +#42 73.24 Setting up libxcb-sync1:amd64 (1.15-1) ... +#42 73.25 Setting up libuno-cppu3 (4:7.4.7-1+deb12u6) ... +#42 73.25 Setting up libgcc-12-dev:amd64 (12.2.0-14) ... +#42 73.25 Setting up shared-mime-info (2.2-1) ... +#42 73.80 Setting up libclucene-contribs1v5:amd64 (2.3.3.4+dfsg-1.1) ... +#42 73.80 Setting up ucf (3.0043+nmu1+deb12u1) ... +#42 73.87 debconf: unable to initialize frontend: Dialog +#42 73.87 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 73.87 debconf: falling back to frontend: Readline +#42 73.88 debconf: unable to initialize frontend: Readline +#42 73.88 debconf: (This frontend requires a controlling tty.) +#42 73.88 debconf: falling back to frontend: Teletype +#42 73.91 Setting up coinor-libosi1v5:amd64 (0.108.6+repack1-2) ... +#42 73.91 Setting up libdpkg-perl (1.21.22) ... +#42 73.91 Setting up libwpg-0.3-3:amd64 (0.3.3-1) ... +#42 73.91 Setting up gpg-wks-server (2.2.40-1.1) ... +#42 73.91 Setting up libxcb-dri2-0:amd64 (1.15-1) ... +#42 73.91 Setting up libdrm2:amd64 (2.4.114-1+b1) ... +#42 73.92 Setting up libxcb-randr0:amd64 (1.15-1) ... +#42 73.92 Setting up cpp (4:12.2.0-3) ... +#42 73.92 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... +#42 73.92 Setting up libabw-0.1-1:amd64 (0.1.3-1) ... +#42 73.92 Setting up libxslt1.1:amd64 (1.1.35-1) ... +#42 73.93 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... +#42 73.93 Setting up libc6-dev:amd64 (2.36-9+deb12u9) ... +#42 73.93 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... +#42 73.93 Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... +#42 73.93 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... +#42 73.95 Setting up libfontconfig1:amd64 (2.14.1-4) ... +#42 73.95 Setting up libxmlsec1:amd64 (1.2.37-2) ... +#42 73.95 Setting up libboost-locale1.74.0:amd64 (1.74.0+ds1-21) ... +#42 73.95 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +#42 73.95 Setting up libsm6:amd64 (2:1.2.3-1) ... +#42 73.95 Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ... +#42 73.96 Setting up libgstreamer1.0-0:amd64 (1.22.0-2+deb12u1) ... +#42 73.96 Setcap worked! gst-ptp-helper is not suid! +#42 73.96 Setting up binutils-x86-64-linux-gnu (2.40-2) ... +#42 73.96 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... +#42 73.96 Setting up libxcb-dri3-0:amd64 (1.15-1) ... +#42 73.97 Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ... +#42 73.97 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... +#42 73.97 Setting up libuno-purpenvhelpergcc3-3 (4:7.4.7-1+deb12u6) ... +#42 73.97 Setting up fontconfig (2.14.1-4) ... +#42 73.97 Regenerating fonts cache... done. +#42 75.99 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... +#42 75.99 Setting up libharfbuzz-icu0:amd64 (6.0.0+dfsg-3) ... +#42 75.99 Setting up libxdamage1:amd64 (1:1.1.6-1) ... +#42 75.99 Setting up uno-libs-private (4:7.4.7-1+deb12u6) ... +#42 76.00 Setting up gpg-wks-client (2.2.40-1.1) ... +#42 76.00 Setting up libgpgmepp6:amd64 (1.18.0-3+b1) ... +#42 76.00 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... +#42 76.00 Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... +#42 76.00 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... +#42 76.01 Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ... +#42 76.01 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... +#42 76.01 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... +#42 76.02 Setting up libpq5:amd64 (15.10-0+deb12u1) ... +#42 76.02 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... +#42 76.02 Setting up libetonyek-0.1-1:amd64 (0.1.10-3+b1) ... +#42 76.02 Setting up libgstreamer-plugins-base1.0-0:amd64 (1.22.0-3+deb12u4) ... +#42 76.02 Setting up libpq-dev (15.10-0+deb12u1) ... +#42 76.03 Setting up libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... +#42 76.03 Setting up binutils (2.40-2) ... +#42 76.03 Setting up libe-book-0.1-1:amd64 (0.1.3-2+b2) ... +#42 76.04 Setting up libcairo2:amd64 (1.16.0-7) ... +#42 76.04 Setting up dpkg-dev (1.21.22) ... +#42 76.05 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +#42 76.05 Setting up adwaita-icon-theme (43-1) ... +#42 76.10 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +#42 76.11 Setting up gcc-12 (12.2.0-14) ... +#42 76.11 Setting up libxfixes3:amd64 (1:6.0.0-2) ... +#42 76.11 Setting up coinor-libclp1:amd64 (1.17.6-3) ... +#42 76.11 Setting up libxinerama1:amd64 (2:1.1.4-3) ... +#42 76.11 Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ... +#42 76.11 Setting up libpoppler126:amd64 (22.12.0-2+b1) ... +#42 76.12 Setting up libcups2:amd64 (2.4.2-3+deb12u8) ... +#42 76.12 Setting up libxmlsec1-nss:amd64 (1.2.37-2) ... +#42 76.12 Setting up libtesseract5:amd64 (5.3.0-2) ... +#42 76.12 Setting up gnupg (2.2.40-1.1) ... +#42 76.12 Setting up poppler-utils (22.12.0-2+b1) ... +#42 76.13 Setting up coinor-libcgl1:amd64 (0.60.3+repack1-4) ... +#42 76.13 Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... +#42 76.13 Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... +#42 76.13 Setting up g++-12 (12.2.0-14) ... +#42 76.13 Setting up libuno-cppuhelpergcc3-3 (4:7.4.7-1+deb12u6) ... +#42 76.13 Setting up coinor-libcbc3:amd64 (2.10.8+ds1-1) ... +#42 76.14 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... +#42 76.14 Setting up libxi6:amd64 (2:1.8-1+b1) ... +#42 76.14 Setting up libglx0:amd64 (1.6.0-1) ... +#42 76.14 Setting up libxtst6:amd64 (2:1.2.3-1.1) ... +#42 76.14 Setting up libxcursor1:amd64 (1:1.2.1-1) ... +#42 76.14 Setting up libraptor2-0:amd64 (2.0.15-4) ... +#42 76.15 Setting up gcc (4:12.2.0-3) ... +#42 76.15 Setting up libgl1:amd64 (1.6.0-1) ... +#42 76.16 Setting up tesseract-ocr (5.3.0-2) ... +#42 76.16 Setting up coinor-libcoinmp1v5:amd64 (1.8.3-3) ... +#42 76.16 Setting up openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... +#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode +#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/jpackage to provide /usr/bin/jpackage (jpackage) in auto mode +#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode +#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode +#42 76.19 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode +#42 76.19 Setting up libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... +#42 76.19 Setting up g++ (4:12.2.0-3) ... +#42 76.20 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode +#42 76.20 Setting up ure (4:7.4.7-1+deb12u6) ... +#42 76.20 Setting up build-essential (12.9) ... +#42 76.20 Setting up libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... +#42 76.21 Setting up librasqal3:amd64 (0.9.33-2) ... +#42 76.21 Setting up libreoffice-common (4:7.4.7-1+deb12u6) ... +#42 76.31 debconf: unable to initialize frontend: Dialog +#42 76.31 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 76.31 debconf: falling back to frontend: Readline +#42 76.32 debconf: unable to initialize frontend: Readline +#42 76.32 debconf: (This frontend requires a controlling tty.) +#42 76.32 debconf: falling back to frontend: Teletype +#42 76.37 +#42 76.37 Creating config file /etc/libreoffice/registry/main.xcd with new version +#42 76.49 debconf: unable to initialize frontend: Dialog +#42 76.49 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 76.49 debconf: falling back to frontend: Readline +#42 76.50 debconf: unable to initialize frontend: Readline +#42 76.50 debconf: (This frontend requires a controlling tty.) +#42 76.50 debconf: falling back to frontend: Teletype +#42 76.54 +#42 76.54 Creating config file /etc/libreoffice/registry/pdfimport.xcd with new version +#42 76.67 debconf: unable to initialize frontend: Dialog +#42 76.67 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 76.67 debconf: falling back to frontend: Readline +#42 76.68 debconf: unable to initialize frontend: Readline +#42 76.68 debconf: (This frontend requires a controlling tty.) +#42 76.68 debconf: falling back to frontend: Teletype +#42 76.72 +#42 76.72 Creating config file /etc/libreoffice/registry/xsltfilter.xcd with new version +#42 76.85 debconf: unable to initialize frontend: Dialog +#42 76.85 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 76.85 debconf: falling back to frontend: Readline +#42 76.86 debconf: unable to initialize frontend: Readline +#42 76.86 debconf: (This frontend requires a controlling tty.) +#42 76.86 debconf: falling back to frontend: Teletype +#42 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 59.99 Installing collected packages: triton, pytz, pydub, nvidia-cusparselt-cu12, mpmath, zstandard, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, threadpoolctl, tenacity, sympy, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, pygments, pyarrow, psutil, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, multidict, mdurl, MarkupSafe, lz4, lxml, jsonpointer, joblib, idna, h11, grpcio, fsspec, frozenlist, filelock, dill, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, multiprocess, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, jsonpatch, jinja2, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, starlette, scikit-learn, rich, requests-toolbelt, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, jsonschema-specifications, jaxlib, huggingface_hub, httpx, aiohttp, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, jsonschema, jax, fastapi, docarray, diffusers, transformers, opentelemetry-sdk, langchain-core, datasets, accelerate, sentence-transformers, optimum, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, optimum-habana, opentelemetry-exporter-otlp +#58 ... + +#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt +#68 10.16 Collecting pydub (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 10.16 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) +#68 10.21 Collecting python-multipart==0.0.12 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 10.23 Downloading python_multipart-0.0.12-py3-none-any.whl.metadata (1.9 kB) +#68 10.32 Collecting pyyaml<7.0,>=5.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 10.33 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#68 10.82 Collecting ruff>=0.2.2 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 10.83 Downloading ruff-0.9.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (25 kB) +#68 10.87 Collecting safehttpx<1.0,>=0.1.1 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 10.88 Downloading safehttpx-0.1.6-py3-none-any.whl.metadata (4.2 kB) +#68 11.00 Collecting semantic-version~=2.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 11.00 Downloading semantic_version-2.10.0-py2.py3-none-any.whl.metadata (9.7 kB) +#68 11.07 Collecting starlette<1.0,>=0.40.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 11.08 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#68 11.13 Collecting tomlkit==0.12.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 11.14 Downloading tomlkit-0.12.0-py3-none-any.whl.metadata (2.7 kB) +#68 11.19 Collecting typer<1.0,>=0.12 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 11.20 Downloading typer-0.15.1-py3-none-any.whl.metadata (15 kB) +#68 11.26 Collecting typing-extensions~=4.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 11.27 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#68 11.34 Collecting uvicorn>=0.14.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 11.35 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#68 11.46 Collecting decorator<5.0,>=4.0.2 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 11.47 Downloading decorator-4.4.2-py2.py3-none-any.whl.metadata (4.2 kB) +#68 11.53 Collecting imageio<3.0,>=2.5 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 11.54 Downloading imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB) +#68 11.65 Collecting imageio_ffmpeg>=0.2.0 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 11.66 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#68 11.74 Collecting tqdm<5.0,>=4.11.2 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 11.75 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#68 11.84 Collecting requests<3.0,>=2.8.1 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 11.85 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#68 11.90 Collecting proglog<=1.0.0 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 11.91 Downloading proglog-0.1.10-py3-none-any.whl.metadata (639 bytes) +#68 11.99 Collecting fsspec (from gradio-client==1.4.2->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.00 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) +#68 12.19 Collecting websockets<13.0,>=10.0 (from gradio-client==1.4.2->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.20 Downloading websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#68 12.25 Collecting idna>=2.8 (from anyio<5.0,>=3.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.25 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#68 12.30 Collecting sniffio>=1.1 (from anyio<5.0,>=3.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.30 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#68 12.42 Collecting certifi (from httpx>=0.24.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.43 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#68 12.48 Collecting httpcore==1.* (from httpx>=0.24.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.49 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#68 12.52 Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx>=0.24.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.53 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#68 12.58 Collecting filelock (from huggingface-hub>=0.25.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.59 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#68 12.71 Collecting python-dateutil>=2.8.2 (from pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.72 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#68 12.78 Collecting pytz>=2020.1 (from pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.79 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) +#68 12.83 Collecting tzdata>=2022.7 (from pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.84 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) +#68 12.87 Collecting annotated-types>=0.6.0 (from pydantic>=2.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 12.88 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#68 13.55 Collecting pydantic-core==2.27.2 (from pydantic>=2.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 13.56 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#68 13.68 Collecting charset-normalizer<4,>=2 (from requests<3.0,>=2.8.1->moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 13.68 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#68 13.76 Collecting urllib3<3,>=1.21.1 (from requests<3.0,>=2.8.1->moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) +#68 13.76 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#68 13.84 Collecting click>=8.0.0 (from typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 13.85 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#68 13.89 Collecting shellingham>=1.3.0 (from typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 13.90 Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB) +#68 13.97 Collecting rich>=10.11.0 (from typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 13.98 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#68 14.05 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 14.06 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#68 14.10 Collecting markdown-it-py>=2.2.0 (from rich>=10.11.0->typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 14.11 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#68 14.16 Collecting pygments<3.0.0,>=2.13.0 (from rich>=10.11.0->typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 14.17 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#68 14.22 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=10.11.0->typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) +#68 14.23 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#68 14.25 Downloading gradio-5.5.0-py3-none-any.whl (56.7 MB) +#68 14.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.7/56.7 MB 120.6 MB/s eta 0:00:00 +#68 14.75 Downloading gradio_pdf-0.0.19-py3-none-any.whl (1.4 MB) +#68 14.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 234.4 MB/s eta 0:00:00 +#68 14.76 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) +#68 14.82 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 330.0 MB/s eta 0:00:00 +#68 14.83 Downloading opencv_python-4.10.0.82-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (62.5 MB) +#68 15.16 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.5/62.5 MB 190.2 MB/s eta 0:00:00 +#68 15.17 Downloading pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#68 15.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 391.9 MB/s eta 0:00:00 +#68 15.19 Downloading gradio_client-1.4.2-py3-none-any.whl (319 kB) +#68 15.20 Downloading python_multipart-0.0.12-py3-none-any.whl (23 kB) +#68 15.21 Downloading tomlkit-0.12.0-py3-none-any.whl (37 kB) +#68 15.22 Downloading aiofiles-23.2.1-py3-none-any.whl (15 kB) +#68 15.23 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#68 15.24 Downloading decorator-4.4.2-py2.py3-none-any.whl (9.2 kB) +#68 15.25 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#68 15.25 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#68 15.26 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#68 15.27 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#68 15.28 Downloading imageio-2.37.0-py3-none-any.whl (315 kB) +#68 15.29 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl (29.5 MB) +#68 15.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 29.5/29.5 MB 207.3 MB/s eta 0:00:00 +#68 15.44 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) +#68 15.45 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB) +#68 15.46 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#68 15.47 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#68 15.48 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#68 15.51 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 417.8 MB/s eta 0:00:00 +#68 15.52 Downloading proglog-0.1.10-py3-none-any.whl (6.1 kB) +#68 15.52 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) +#68 15.53 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#68 15.54 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 433.8 MB/s eta 0:00:00 +#68 15.55 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#68 15.55 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 329.4 MB/s eta 0:00:00 +#68 15.56 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#68 15.57 Downloading ruff-0.9.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB) +#68 15.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.4/12.4 MB 216.8 MB/s eta 0:00:00 +#68 15.64 Downloading safehttpx-0.1.6-py3-none-any.whl (8.7 kB) +#68 15.64 Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB) +#68 15.65 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#68 15.66 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#68 15.67 Downloading typer-0.15.1-py3-none-any.whl (44 kB) +#68 15.68 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#68 15.69 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#68 15.70 Downloading ffmpy-0.5.0-py3-none-any.whl (6.0 kB) +#68 15.71 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#68 15.71 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#68 15.72 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#68 15.73 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#68 15.74 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#68 15.74 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) +#68 15.75 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#68 15.76 Downloading idna-3.10-py3-none-any.whl (70 kB) +#68 15.77 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#68 15.78 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) +#68 15.79 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#68 15.80 Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB) +#68 15.81 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#68 15.82 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) +#68 15.82 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#68 15.83 Downloading websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#68 15.84 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#68 15.85 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#68 15.86 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#68 15.86 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 420.8 MB/s eta 0:00:00 +#68 15.87 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#68 15.88 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#68 ... + +#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi +#0 1.611 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#0 1.850 Collecting pip +#0 1.907 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#0 1.910 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#0 2.242 Collecting setuptools +#0 2.251 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#0 2.309 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#0 2.427 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 16.1 MB/s eta 0:00:00 +#0 2.439 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#0 2.484 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 28.2 MB/s eta 0:00:00 +#0 2.616 Installing collected packages: setuptools, pip +#0 2.616 Attempting uninstall: setuptools +#0 2.619 Found existing installation: setuptools 65.5.1 +#0 2.638 Uninstalling setuptools-65.5.1: +#0 2.687 Successfully uninstalled setuptools-65.5.1 +#0 3.341 Attempting uninstall: pip +#0 3.344 Found existing installation: pip 24.0 +#0 3.395 Uninstalling pip-24.0: +#0 3.553 Successfully uninstalled pip-24.0 +#0 4.363 Successfully installed pip-25.0 setuptools-75.8.0 +#0 4.363 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#0 5.083 Collecting datasets (from -r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 5.143 Downloading datasets-3.2.0-py3-none-any.whl.metadata (20 kB) +#0 5.252 Collecting fastapi (from -r /home/user/comps/asr/src/requirements.txt (line 3)) +#0 5.262 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#0 5.296 Collecting opentelemetry-api (from -r /home/user/comps/asr/src/requirements.txt (line 4)) +#0 5.306 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) +#0 5.332 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/asr/src/requirements.txt (line 5)) +#0 5.342 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#0 5.367 Collecting opentelemetry-sdk (from -r /home/user/comps/asr/src/requirements.txt (line 6)) +#0 5.377 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) +#0 5.400 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/asr/src/requirements.txt (line 7)) +#0 5.411 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#0 5.541 Collecting pydantic==2.7.2 (from -r /home/user/comps/asr/src/requirements.txt (line 8)) +#0 5.553 Downloading pydantic-2.7.2-py3-none-any.whl.metadata (108 kB) +#0 5.591 Collecting pydub (from -r /home/user/comps/asr/src/requirements.txt (line 9)) +#0 5.601 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) +#0 5.618 Collecting python-multipart (from -r /home/user/comps/asr/src/requirements.txt (line 10)) +#0 5.628 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) +#0 5.647 Collecting shortuuid (from -r /home/user/comps/asr/src/requirements.txt (line 11)) +#0 5.659 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#0 5.706 Collecting transformers (from -r /home/user/comps/asr/src/requirements.txt (line 12)) +#0 5.717 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) +#0 5.865 Collecting uvicorn (from -r /home/user/comps/asr/src/requirements.txt (line 13)) +#0 5.875 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#0 5.957 Collecting zhconv (from -r /home/user/comps/asr/src/requirements.txt (line 14)) +#0 5.968 Downloading zhconv-1.4.3.tar.gz (211 kB) +#0 5.989 Preparing metadata (setup.py): started +#0 6.183 Preparing metadata (setup.py): finished with status 'done' +#0 6.270 Collecting docarray[full] (from -r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 6.283 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#0 6.308 Collecting annotated-types>=0.4.0 (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) +#0 6.319 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#0 6.940 Collecting pydantic-core==2.18.3 (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) +#0 6.955 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) +#0 6.978 Collecting typing-extensions>=4.6.1 (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) +#0 6.988 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#0 7.025 Collecting filelock (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.035 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#0 7.247 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.257 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#0 7.376 Collecting pyarrow>=15.0.0 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.389 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) +#0 7.412 Collecting dill<0.3.9,>=0.3.0 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.422 Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB) +#0 7.548 Collecting pandas (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.580 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) +#0 7.672 Collecting requests>=2.32.2 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.682 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#0 7.725 Collecting tqdm>=4.66.3 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.734 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#0 7.828 Collecting xxhash (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.837 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) +#0 7.865 Collecting multiprocess<0.70.17 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.875 Downloading multiprocess-0.70.16-py311-none-any.whl.metadata (7.2 kB) +#0 7.905 Collecting fsspec<=2024.9.0,>=2023.1.0 (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 7.915 Downloading fsspec-2024.9.0-py3-none-any.whl.metadata (11 kB) +#0 8.408 Collecting aiohttp (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 8.418 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#0 8.460 Collecting huggingface-hub>=0.23.0 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 8.470 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#0 8.509 Collecting packaging (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 8.519 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#0 8.560 Collecting pyyaml>=5.1 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#0 8.569 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#0 8.630 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 8.644 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) +#0 8.678 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 8.689 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) +#0 8.767 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 8.778 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#0 9.089 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.100 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#0 9.293 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.303 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#0 9.504 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.514 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#0 9.618 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.629 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#0 9.766 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.777 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) +#0 9.822 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.834 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) +#0 9.874 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.884 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#0 9.900 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#0 9.910 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) +#0 9.953 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) +#0 9.963 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#0 10.01 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) +#0 10.02 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#69 10.06 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) +#69 10.08 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) +#69 10.11 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) +#69 10.12 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#69 10.14 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) +#69 10.15 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#69 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 76.90 +#42 76.90 Creating config file /etc/libreoffice/registry/lingucomponent.xcd with new version +#42 77.03 debconf: unable to initialize frontend: Dialog +#42 77.03 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 77.03 debconf: falling back to frontend: Readline +#42 77.04 debconf: unable to initialize frontend: Readline +#42 77.04 debconf: (This frontend requires a controlling tty.) +#42 77.04 debconf: falling back to frontend: Teletype +#42 77.08 +#42 77.08 Creating config file /etc/libreoffice/registry/Langpack-en-US.xcd with new version +#42 77.22 debconf: unable to initialize frontend: Dialog +#42 77.22 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 77.22 debconf: falling back to frontend: Readline +#42 77.22 debconf: unable to initialize frontend: Readline +#42 77.22 debconf: (This frontend requires a controlling tty.) +#42 77.22 debconf: falling back to frontend: Teletype +#42 77.26 +#42 77.26 Creating config file /etc/libreoffice/registry/res/fcfg_langpack_en-US.xcd with new version +#42 77.38 Setting up librdf0:amd64 (1.0.17-3) ... +#42 77.42 Setting up libreoffice-core (4:7.4.7-1+deb12u6) ... +#42 77.43 Setting up libreoffice-math (4:7.4.7-1+deb12u6) ... +#42 77.52 debconf: unable to initialize frontend: Dialog +#42 77.52 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 77.52 debconf: falling back to frontend: Readline +#42 77.53 debconf: unable to initialize frontend: Readline +#42 77.53 debconf: (This frontend requires a controlling tty.) +#42 77.53 debconf: falling back to frontend: Teletype +#42 77.58 +#42 77.58 Creating config file /etc/libreoffice/registry/math.xcd with new version +#42 77.63 Setting up libreoffice-draw (4:7.4.7-1+deb12u6) ... +#42 77.72 debconf: unable to initialize frontend: Dialog +#42 77.72 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 77.72 debconf: falling back to frontend: Readline +#42 77.73 debconf: unable to initialize frontend: Readline +#42 77.73 debconf: (This frontend requires a controlling tty.) +#42 77.73 debconf: falling back to frontend: Teletype +#42 77.77 +#42 77.77 Creating config file /etc/libreoffice/registry/draw.xcd with new version +#42 77.91 debconf: unable to initialize frontend: Dialog +#42 77.91 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 77.91 debconf: falling back to frontend: Readline +#42 77.92 debconf: unable to initialize frontend: Readline +#42 77.92 debconf: (This frontend requires a controlling tty.) +#42 77.92 debconf: falling back to frontend: Teletype +#42 77.97 +#42 77.97 Creating config file /etc/libreoffice/registry/graphicfilter.xcd with new version +#42 78.02 Setting up libreoffice-base-drivers (4:7.4.7-1+deb12u6) ... +#42 78.02 Setting up libreoffice-impress (4:7.4.7-1+deb12u6) ... +#42 78.12 debconf: unable to initialize frontend: Dialog +#42 78.12 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 78.12 debconf: falling back to frontend: Readline +#42 78.12 debconf: unable to initialize frontend: Readline +#42 78.12 debconf: (This frontend requires a controlling tty.) +#42 78.12 debconf: falling back to frontend: Teletype +#42 78.17 +#42 78.17 Creating config file /etc/libreoffice/registry/impress.xcd with new version +#42 78.31 debconf: unable to initialize frontend: Dialog +#42 78.31 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 78.31 debconf: falling back to frontend: Readline +#42 78.31 debconf: unable to initialize frontend: Readline +#42 78.31 debconf: (This frontend requires a controlling tty.) +#42 78.31 debconf: falling back to frontend: Teletype +#42 78.36 +#42 78.36 Creating config file /etc/libreoffice/registry/ogltrans.xcd with new version +#42 78.41 Setting up libreoffice-base-core (4:7.4.7-1+deb12u6) ... +#42 78.42 Setting up python3-uno (4:7.4.7-1+deb12u6) ... +#42 78.51 debconf: unable to initialize frontend: Dialog +#42 78.51 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 78.51 debconf: falling back to frontend: Readline +#42 78.52 debconf: unable to initialize frontend: Readline +#42 78.52 debconf: (This frontend requires a controlling tty.) +#42 78.52 debconf: falling back to frontend: Teletype +#42 78.57 +#42 78.57 Creating config file /etc/libreoffice/registry/pyuno.xcd with new version +#42 78.81 Setting up libreoffice-calc (4:7.4.7-1+deb12u6) ... +#42 78.91 debconf: unable to initialize frontend: Dialog +#42 78.91 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 78.91 debconf: falling back to frontend: Readline +#42 78.91 debconf: unable to initialize frontend: Readline +#42 78.91 debconf: (This frontend requires a controlling tty.) +#42 78.91 debconf: falling back to frontend: Teletype +#42 78.96 +#42 78.96 Creating config file /etc/libreoffice/registry/calc.xcd with new version +#42 79.01 Setting up libreoffice-base (4:7.4.7-1+deb12u6) ... +#42 79.11 debconf: unable to initialize frontend: Dialog +#42 79.11 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 79.11 debconf: falling back to frontend: Readline +#42 79.12 debconf: unable to initialize frontend: Readline +#42 79.12 debconf: (This frontend requires a controlling tty.) +#42 79.12 debconf: falling back to frontend: Teletype +#42 79.16 +#42 79.16 Creating config file /etc/libreoffice/registry/base.xcd with new version +#42 79.21 Setting up libreoffice-writer (4:7.4.7-1+deb12u6) ... +#42 79.31 debconf: unable to initialize frontend: Dialog +#42 79.31 debconf: (TERM is not set, so the dialog frontend is not usable.) +#42 79.31 debconf: falling back to frontend: Readline +#42 79.32 debconf: unable to initialize frontend: Readline +#42 79.32 debconf: (This frontend requires a controlling tty.) +#42 79.32 debconf: falling back to frontend: Teletype +#42 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 56.49 Collecting llama-index-embeddings-openai (from -r /home/user/comps/retrievers/src/requirements.txt (line 16)) +#54 56.53 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl.metadata (684 bytes) +#54 56.83 Collecting llama-index-embeddings-text-embeddings-inference (from -r /home/user/comps/retrievers/src/requirements.txt (line 17)) +#54 56.86 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl.metadata (803 bytes) +#54 57.09 Collecting llama-index-llms-openai (from -r /home/user/comps/retrievers/src/requirements.txt (line 18)) +#54 57.13 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl.metadata (3.3 kB) +#54 57.35 Collecting llama-index-llms-openai-like (from -r /home/user/comps/retrievers/src/requirements.txt (line 19)) +#54 57.39 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl.metadata (751 bytes) +#54 57.67 Collecting llama-index-llms-text-generation-inference (from -r /home/user/comps/retrievers/src/requirements.txt (line 20)) +#54 57.72 Downloading llama_index_llms_text_generation_inference-0.3.1-py3-none-any.whl.metadata (1.3 kB) +#54 57.96 Collecting llama_index_graph_stores_neo4j (from -r /home/user/comps/retrievers/src/requirements.txt (line 21)) +#54 57.99 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl.metadata (694 bytes) +#54 58.22 Collecting neo4j (from -r /home/user/comps/retrievers/src/requirements.txt (line 22)) +#54 58.25 Downloading neo4j-5.27.0-py3-none-any.whl.metadata (5.9 kB) +#54 58.26 Requirement already satisfied: numpy in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/retrievers/src/requirements.txt (line 23)) (2.2.2) +#54 58.50 Collecting opensearch-py (from -r /home/user/comps/retrievers/src/requirements.txt (line 24)) +#54 58.54 Downloading opensearch_py-2.8.0-py3-none-any.whl.metadata (6.9 kB) +#54 58.85 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 58.89 Downloading pathway-0.17.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB) +#54 59.20 Collecting pgvector (from -r /home/user/comps/retrievers/src/requirements.txt (line 26)) +#54 59.24 Downloading pgvector-0.3.6-py3-none-any.whl.metadata (13 kB) +#54 59.35 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/retrievers/src/requirements.txt (line 27)) +#54 59.39 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#54 59.67 Collecting protobuf==4.24.2 (from -r /home/user/comps/retrievers/src/requirements.txt (line 28)) +#54 59.71 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl.metadata (540 bytes) +#54 60.01 Collecting psycopg2-binary (from -r /home/user/comps/retrievers/src/requirements.txt (line 29)) +#54 60.05 Downloading psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#54 60.26 Collecting pydantic (from -r /home/user/comps/retrievers/src/requirements.txt (line 30)) +#54 60.29 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) +#54 60.60 Collecting pymupdf (from -r /home/user/comps/retrievers/src/requirements.txt (line 31)) +#54 60.63 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (3.4 kB) +#54 60.73 Collecting pytesseract (from -r /home/user/comps/retrievers/src/requirements.txt (line 32)) +#54 60.76 Downloading pytesseract-0.3.13-py3-none-any.whl.metadata (11 kB) +#54 61.01 Collecting python-docx (from -r /home/user/comps/retrievers/src/requirements.txt (line 33)) +#54 61.05 Downloading python_docx-1.1.2-py3-none-any.whl.metadata (2.0 kB) +#54 61.32 Collecting python-multipart (from -r /home/user/comps/retrievers/src/requirements.txt (line 34)) +#54 61.35 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) +#54 61.60 Collecting python-pptx (from -r /home/user/comps/retrievers/src/requirements.txt (line 35)) +#54 61.64 Downloading python_pptx-1.0.2-py3-none-any.whl.metadata (2.5 kB) +#54 61.94 Collecting qdrant-haystack (from -r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 61.98 Downloading qdrant_haystack-7.0.0-py3-none-any.whl.metadata (1.9 kB) +#54 62.26 Collecting redis (from -r /home/user/comps/retrievers/src/requirements.txt (line 37)) +#54 62.30 Downloading redis-5.2.1-py3-none-any.whl.metadata (9.1 kB) +#54 62.57 Collecting sentence_transformers (from -r /home/user/comps/retrievers/src/requirements.txt (line 38)) +#54 62.61 Downloading sentence_transformers-3.4.1-py3-none-any.whl.metadata (10 kB) +#54 62.72 Collecting shortuuid (from -r /home/user/comps/retrievers/src/requirements.txt (line 39)) +#54 62.77 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#54 63.04 Collecting tiktoken (from -r /home/user/comps/retrievers/src/requirements.txt (line 40)) +#54 63.08 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#54 63.36 Collecting uvicorn (from -r /home/user/comps/retrievers/src/requirements.txt (line 41)) +#54 63.39 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#54 63.69 Collecting vdms==0.0.21 (from -r /home/user/comps/retrievers/src/requirements.txt (line 42)) +#54 63.72 Downloading vdms-0.0.21-py3-none-any.whl.metadata (600 bytes) +#54 64.06 Collecting docarray[full] (from -r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 64.10 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#54 64.43 Collecting haystack-experimental (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 64.47 Downloading haystack_experimental-0.5.0-py3-none-any.whl.metadata (15 kB) +#54 64.48 Requirement already satisfied: jinja2 in /usr/local/lib/python3.11/site-packages (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (3.1.5) +#54 64.70 Collecting lazy-imports (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 64.75 Downloading lazy_imports-0.4.0-py3-none-any.whl.metadata (10 kB) +#54 65.00 Collecting more-itertools (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 65.05 Downloading more_itertools-10.6.0-py3-none-any.whl.metadata (37 kB) +#54 65.07 Requirement already satisfied: networkx in /usr/local/lib/python3.11/site-packages (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (3.4.2) +#54 65.54 Collecting numpy (from -r /home/user/comps/retrievers/src/requirements.txt (line 23)) +#54 65.57 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#54 65.76 Collecting openai>=1.1.0 (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 65.79 Downloading openai-1.61.0-py3-none-any.whl.metadata (27 kB) +#54 66.03 Collecting pandas (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 66.06 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) +#54 66.25 Collecting posthog (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 66.27 Downloading posthog-3.11.0-py2.py3-none-any.whl.metadata (2.9 kB) +#54 66.38 Collecting python-dateutil (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 66.40 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#54 66.52 Collecting pyyaml (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 66.56 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#54 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 79.36 +#42 79.36 Creating config file /etc/libreoffice/registry/writer.xcd with new version +#42 79.42 Setting up libreoffice-report-builder-bin (4:7.4.7-1+deb12u6) ... +#42 79.42 Setting up libreoffice (4:7.4.7-1+deb12u6) ... +#42 79.43 Processing triggers for libc-bin (2.36-9+deb12u9) ... +#42 79.45 Processing triggers for ca-certificates-java (20230710~deb12u1) ... +#42 79.65 Adding debian:ACCVRAIZ1.pem +#42 79.65 Adding debian:AC_RAIZ_FNMT-RCM.pem +#42 79.66 Adding debian:AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem +#42 79.67 Adding debian:ANF_Secure_Server_Root_CA.pem +#42 79.67 Adding debian:Actalis_Authentication_Root_CA.pem +#42 79.67 Adding debian:AffirmTrust_Commercial.pem +#42 79.67 Adding debian:AffirmTrust_Networking.pem +#42 79.67 Adding debian:AffirmTrust_Premium.pem +#42 79.67 Adding debian:AffirmTrust_Premium_ECC.pem +#42 79.68 Adding debian:Amazon_Root_CA_1.pem +#42 79.68 Adding debian:Amazon_Root_CA_2.pem +#42 79.68 Adding debian:Amazon_Root_CA_3.pem +#42 79.68 Adding debian:Amazon_Root_CA_4.pem +#42 79.68 Adding debian:Atos_TrustedRoot_2011.pem +#42 79.68 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem +#42 79.69 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068_2.pem +#42 79.69 Adding debian:Baltimore_CyberTrust_Root.pem +#42 79.69 Adding debian:Buypass_Class_2_Root_CA.pem +#42 79.70 Adding debian:Buypass_Class_3_Root_CA.pem +#42 79.70 Adding debian:CA_Disig_Root_R2.pem +#42 79.70 Adding debian:CFCA_EV_ROOT.pem +#42 79.70 Adding debian:COMODO_Certification_Authority.pem +#42 79.70 Adding debian:COMODO_ECC_Certification_Authority.pem +#42 79.71 Adding debian:COMODO_RSA_Certification_Authority.pem +#42 79.71 Adding debian:Certainly_Root_E1.pem +#42 79.71 Adding debian:Certainly_Root_R1.pem +#42 79.71 Adding debian:Certigna.pem +#42 79.71 Adding debian:Certigna_Root_CA.pem +#42 79.71 Adding debian:Certum_EC-384_CA.pem +#42 79.72 Adding debian:Certum_Trusted_Network_CA.pem +#42 79.72 Adding debian:Certum_Trusted_Network_CA_2.pem +#42 79.72 Adding debian:Certum_Trusted_Root_CA.pem +#42 79.72 Adding debian:Comodo_AAA_Services_root.pem +#42 79.72 Adding debian:D-TRUST_BR_Root_CA_1_2020.pem +#42 79.73 Adding debian:D-TRUST_EV_Root_CA_1_2020.pem +#42 79.73 Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem +#42 79.73 Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem +#42 79.73 Adding debian:DigiCert_Assured_ID_Root_CA.pem +#42 79.73 Adding debian:DigiCert_Assured_ID_Root_G2.pem +#42 79.73 Adding debian:DigiCert_Assured_ID_Root_G3.pem +#42 79.73 Adding debian:DigiCert_Global_Root_CA.pem +#42 79.74 Adding debian:DigiCert_Global_Root_G2.pem +#42 79.74 Adding debian:DigiCert_Global_Root_G3.pem +#42 79.74 Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem +#42 79.74 Adding debian:DigiCert_TLS_ECC_P384_Root_G5.pem +#42 79.74 Adding debian:DigiCert_TLS_RSA4096_Root_G5.pem +#42 79.74 Adding debian:DigiCert_Trusted_Root_G4.pem +#42 79.75 Adding debian:E-Tugra_Certification_Authority.pem +#42 79.75 Adding debian:E-Tugra_Global_Root_CA_ECC_v3.pem +#42 79.75 Adding debian:E-Tugra_Global_Root_CA_RSA_v3.pem +#42 79.75 Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem +#42 79.75 Adding debian:Entrust_Root_Certification_Authority.pem +#42 79.75 Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem +#42 79.75 Adding debian:Entrust_Root_Certification_Authority_-_G2.pem +#42 79.76 Adding debian:Entrust_Root_Certification_Authority_-_G4.pem +#42 79.76 Adding debian:GDCA_TrustAUTH_R5_ROOT.pem +#42 79.76 Adding debian:GLOBALTRUST_2020.pem +#42 79.76 Adding debian:GTS_Root_R1.pem +#42 79.76 Adding debian:GTS_Root_R2.pem +#42 79.76 Adding debian:GTS_Root_R3.pem +#42 79.77 Adding debian:GTS_Root_R4.pem +#42 79.77 Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem +#42 79.77 Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem +#42 79.77 Adding debian:GlobalSign_Root_CA.pem +#42 79.77 Adding debian:GlobalSign_Root_CA_-_R3.pem +#42 79.77 Adding debian:GlobalSign_Root_CA_-_R6.pem +#42 79.77 Adding debian:GlobalSign_Root_E46.pem +#42 79.78 Adding debian:GlobalSign_Root_R46.pem +#42 79.78 Adding debian:Go_Daddy_Class_2_CA.pem +#42 79.78 Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem +#42 79.78 Adding debian:HARICA_TLS_ECC_Root_CA_2021.pem +#42 79.78 Adding debian:HARICA_TLS_RSA_Root_CA_2021.pem +#42 79.78 Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem +#42 79.78 Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem +#42 79.79 Adding debian:HiPKI_Root_CA_-_G1.pem +#42 79.79 Adding debian:Hongkong_Post_Root_CA_1.pem +#42 79.79 Adding debian:Hongkong_Post_Root_CA_3.pem +#42 79.79 Adding debian:ISRG_Root_X1.pem +#42 79.79 Adding debian:ISRG_Root_X2.pem +#42 79.79 Adding debian:IdenTrust_Commercial_Root_CA_1.pem +#42 79.80 Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem +#42 79.80 Adding debian:Izenpe.com.pem +#42 79.80 Adding debian:Microsec_e-Szigno_Root_CA_2009.pem +#42 79.80 Adding debian:Microsoft_ECC_Root_Certificate_Authority_2017.pem +#42 79.80 Adding debian:Microsoft_RSA_Root_Certificate_Authority_2017.pem +#42 79.80 Adding debian:NAVER_Global_Root_Certification_Authority.pem +#42 79.81 Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem +#42 79.81 Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem +#42 79.81 Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem +#42 79.81 Adding debian:QuoVadis_Root_CA_1_G3.pem +#42 79.81 Adding debian:QuoVadis_Root_CA_2.pem +#42 79.81 Adding debian:QuoVadis_Root_CA_2_G3.pem +#42 79.82 Adding debian:QuoVadis_Root_CA_3.pem +#42 79.82 Adding debian:QuoVadis_Root_CA_3_G3.pem +#42 79.82 Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem +#42 79.82 Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem +#42 79.82 Adding debian:SSL.com_Root_Certification_Authority_ECC.pem +#42 79.82 Adding debian:SSL.com_Root_Certification_Authority_RSA.pem +#42 79.83 Adding debian:SZAFIR_ROOT_CA2.pem +#42 79.83 Adding debian:SecureSign_RootCA11.pem +#42 79.83 Adding debian:SecureTrust_CA.pem +#42 79.83 Adding debian:Secure_Global_CA.pem +#42 79.83 Adding debian:Security_Communication_ECC_RootCA1.pem +#42 79.83 Adding debian:Security_Communication_RootCA2.pem +#42 79.83 Adding debian:Security_Communication_RootCA3.pem +#42 79.83 Adding debian:Security_Communication_Root_CA.pem +#42 79.84 Adding debian:Starfield_Class_2_CA.pem +#42 79.84 Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem +#42 79.84 Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem +#42 79.84 Adding debian:SwissSign_Gold_CA_-_G2.pem +#42 79.84 Adding debian:SwissSign_Silver_CA_-_G2.pem +#42 79.84 Adding debian:T-TeleSec_GlobalRoot_Class_2.pem +#42 79.85 Adding debian:T-TeleSec_GlobalRoot_Class_3.pem +#42 79.85 Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem +#42 79.85 Adding debian:TWCA_Global_Root_CA.pem +#42 79.85 Adding debian:TWCA_Root_Certification_Authority.pem +#42 79.85 Adding debian:TeliaSonera_Root_CA_v1.pem +#42 79.85 Adding debian:Telia_Root_CA_v2.pem +#42 79.85 Adding debian:TrustCor_ECA-1.pem +#42 79.86 Adding debian:TrustCor_RootCert_CA-1.pem +#42 79.86 Adding debian:TrustCor_RootCert_CA-2.pem +#42 79.86 Adding debian:Trustwave_Global_Certification_Authority.pem +#42 79.86 Adding debian:Trustwave_Global_ECC_P256_Certification_Authority.pem +#42 79.86 Adding debian:Trustwave_Global_ECC_P384_Certification_Authority.pem +#42 79.86 Adding debian:TunTrust_Root_CA.pem +#42 79.86 Adding debian:UCA_Extended_Validation_Root.pem +#42 79.87 Adding debian:UCA_Global_G2_Root.pem +#42 79.87 Adding debian:USERTrust_ECC_Certification_Authority.pem +#42 79.87 Adding debian:USERTrust_RSA_Certification_Authority.pem +#42 79.87 Adding debian:XRamp_Global_CA_Root.pem +#42 79.87 Adding debian:certSIGN_ROOT_CA.pem +#42 79.87 Adding debian:certSIGN_Root_CA_G2.pem +#42 79.87 Adding debian:e-Szigno_Root_CA_2017.pem +#42 79.88 Adding debian:ePKI_Root_Certification_Authority.pem +#42 79.88 Adding debian:emSign_ECC_Root_CA_-_C3.pem +#42 79.88 Adding debian:emSign_ECC_Root_CA_-_G3.pem +#42 79.88 Adding debian:emSign_Root_CA_-_C1.pem +#42 79.88 Adding debian:emSign_Root_CA_-_G1.pem +#42 79.88 Adding debian:vTrus_ECC_Root_CA.pem +#42 79.88 Adding debian:vTrus_Root_CA.pem +#42 79.90 done. +#42 79.91 Setting up default-jre-headless (2:1.17-74) ... +#42 79.91 Setting up openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... +#42 79.92 Setting up default-jre (2:1.17-74) ... +#42 ... + +#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi +#69 10.18 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) +#69 10.19 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#69 10.80 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) +#69 10.82 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#69 10.84 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) +#69 10.85 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) +#69 10.87 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) +#69 10.88 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#69 10.96 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/asr/src/requirements.txt (line 6)) +#69 10.97 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) +#69 11.00 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/asr/src/requirements.txt (line 7)) +#69 11.01 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#69 11.46 Collecting regex!=2019.12.17 (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) +#69 11.48 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#69 11.66 Collecting tokenizers<0.22,>=0.21 (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) +#69 11.67 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) +#69 11.80 Collecting safetensors>=0.4.1 (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) +#69 11.81 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#69 11.86 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) +#69 11.87 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#69 11.88 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) +#69 11.89 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#69 12.00 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) +#69 12.02 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#69 12.08 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 12.09 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#69 12.10 Collecting aiosignal>=1.1.2 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 12.11 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#69 12.13 Collecting attrs>=17.3.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 12.15 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#69 12.21 Collecting frozenlist>=1.1.1 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 12.22 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#69 12.39 Collecting multidict<7.0,>=4.5 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 12.40 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#69 12.43 Collecting propcache>=0.2.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 12.44 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#69 12.77 Collecting yarl<2.0,>=1.17.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 12.78 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#69 12.86 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) +#69 12.87 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#69 12.92 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 12.93 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) +#69 12.96 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 12.97 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) +#69 13.01 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 13.02 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) +#69 13.17 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 13.18 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#69 13.25 Collecting python-dateutil>=2.8.2 (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 13.27 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#69 13.32 Collecting pytz>=2020.1 (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 13.33 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) +#69 13.38 Collecting tzdata>=2022.7 (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 13.39 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) +#69 13.49 Collecting charset-normalizer<4,>=2 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 13.50 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#69 13.53 Collecting idna<4,>=2.5 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 13.56 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#69 13.60 Collecting urllib3<3,>=1.21.1 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 13.61 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#69 13.68 Collecting certifi>=2017.4.17 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 13.69 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#69 13.71 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 13.75 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#69 13.79 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 13.79 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#69 13.83 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) +#69 13.84 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#69 13.91 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 13.94 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) +#69 13.98 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.01 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) +#69 14.03 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.08 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) +#69 14.31 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.32 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#69 14.36 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.37 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) +#69 14.40 Collecting networkx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.42 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#69 14.44 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.46 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) +#69 14.48 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.49 Downloading pycollada-0.8.tar.gz (108 kB) +#69 14.52 Preparing metadata (setup.py): started +#69 14.70 Preparing metadata (setup.py): finished with status 'done' +#69 14.71 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (75.8.0) +#69 14.81 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.82 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) +#69 14.87 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.88 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) +#69 14.91 Collecting httpx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.92 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#69 14.94 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 14.96 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) +#69 15.05 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.06 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#69 15.18 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.20 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) +#69 15.23 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.24 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) +#69 15.29 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.30 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) +#69 15.34 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) +#69 15.35 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#69 15.47 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.48 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#69 15.56 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) +#69 15.57 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#69 15.67 Collecting httpcore==1.* (from httpx->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.70 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#69 15.73 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.75 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) +#69 15.83 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 15.84 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) +#69 16.09 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) +#69 16.10 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) +#69 16.23 Downloading pydantic-2.7.2-py3-none-any.whl (409 kB) +#69 16.29 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#69 16.31 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 120.8 MB/s eta 0:00:00 +#69 16.32 Downloading datasets-3.2.0-py3-none-any.whl (480 kB) +#69 16.33 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#69 16.34 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) +#69 16.39 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) +#69 16.40 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) +#69 16.41 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) +#69 16.42 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) +#69 16.43 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) +#69 16.44 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) +#69 16.47 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) +#69 16.48 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#69 16.49 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#69 16.50 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) +#69 16.51 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#69 16.52 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) +#69 16.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 174.9 MB/s eta 0:00:00 +#69 16.60 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#69 16.63 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#69 16.64 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) +#69 16.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 142.4 MB/s eta 0:00:00 +#69 16.94 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#69 16.96 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#69 16.98 Downloading dill-0.3.8-py3-none-any.whl (116 kB) +#69 16.99 Downloading fsspec-2024.9.0-py3-none-any.whl (179 kB) +#69 17.00 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) +#69 17.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 276.7 MB/s eta 0:00:00 +#69 17.02 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#69 17.03 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#69 17.04 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) +#69 17.08 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) +#69 17.12 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 542.0 MB/s eta 0:00:00 +#69 17.14 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#69 17.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 281.0 MB/s eta 0:00:00 +#69 17.15 Downloading multiprocess-0.70.16-py311-none-any.whl (143 kB) +#69 17.16 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) +#69 17.26 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 198.7 MB/s eta 0:00:00 +#69 17.27 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#69 17.32 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#69 17.33 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#69 17.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 177.9 MB/s eta 0:00:00 +#69 17.43 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#69 17.46 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 289.1 MB/s eta 0:00:00 +#69 17.47 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#69 17.48 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) +#69 17.49 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) +#69 17.71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 193.0 MB/s eta 0:00:00 +#69 17.72 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#69 17.73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 248.8 MB/s eta 0:00:00 +#69 17.74 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) +#69 17.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 243.7 MB/s eta 0:00:00 +#69 17.75 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#69 17.76 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#69 17.77 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) +#69 17.79 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#69 17.82 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#69 17.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 265.7 MB/s eta 0:00:00 +#69 17.84 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#69 17.85 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) +#69 17.85 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 252.4 MB/s eta 0:00:00 +#69 17.87 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) +#69 17.90 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#69 17.91 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#69 17.92 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#69 17.93 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#69 17.94 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#69 17.95 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) +#69 17.97 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#69 17.98 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#69 17.99 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#69 18.00 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#69 18.01 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#69 18.02 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#69 18.03 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) +#69 18.10 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#69 18.11 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#69 18.13 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 257.2 MB/s eta 0:00:00 +#69 18.14 Downloading idna-3.10-py3-none-any.whl (70 kB) +#69 18.18 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) +#69 18.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 182.6 MB/s eta 0:00:00 +#69 18.75 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) +#69 18.76 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 170.4 MB/s eta 0:00:00 +#69 18.77 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) +#69 18.79 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#69 18.80 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) +#69 18.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 227.4 MB/s eta 0:00:00 +#69 18.84 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) +#69 18.85 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#69 18.88 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) +#69 18.92 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#69 18.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 334.6 MB/s eta 0:00:00 +#69 18.94 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#69 18.95 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) +#69 18.96 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) +#69 19.12 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 287.6 MB/s eta 0:00:00 +#69 19.13 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) +#69 19.14 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#69 19.18 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) +#69 19.19 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) +#69 19.20 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#69 19.21 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) +#69 19.22 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) +#69 19.23 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) +#69 19.32 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 247.8 MB/s eta 0:00:00 +#69 19.33 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#69 19.34 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#69 19.35 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) +#69 19.36 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) +#69 19.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 160.2 MB/s eta 0:00:00 +#69 19.43 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#69 19.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 340.1 MB/s eta 0:00:00 +#69 19.45 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) +#69 19.46 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) +#69 19.47 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 438.2 MB/s eta 0:00:00 +#69 19.48 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) +#69 19.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 298.8 MB/s eta 0:00:00 +#69 19.51 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) +#69 19.53 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) +#69 19.54 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) +#69 19.55 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) +#69 19.56 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#69 19.57 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) +#69 19.61 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) +#69 19.62 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#69 19.63 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#69 ... + +#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt +#68 16.50 Building wheels for collected packages: moviepy +#68 16.50 Building wheel for moviepy (setup.py): started +#68 16.78 Building wheel for moviepy (setup.py): finished with status 'done' +#68 16.78 Created wheel for moviepy: filename=moviepy-1.0.3-py3-none-any.whl size=110763 sha256=f1664dd4bdd99bcc12337800ca1a33cbf8e3b0fa95d5f4b6ed41c72e74801869 +#68 16.78 Stored in directory: /tmp/pip-ephem-wheel-cache-3d5pskqw/wheels/83/b1/d9/119ef7c144b44d591ec0a9a140465133c23ea95d2a161184ba +#68 16.78 Successfully built moviepy +#68 16.98 Installing collected packages: pytz, pydub, websockets, urllib3, tzdata, typing-extensions, tqdm, tomlkit, sniffio, six, shellingham, semantic-version, ruff, pyyaml, python-multipart, pygments, Pillow, packaging, orjson, numpy, mdurl, markupsafe, imageio_ffmpeg, idna, h11, fsspec, filelock, ffmpy, decorator, click, charset-normalizer, certifi, annotated-types, aiofiles, uvicorn, requests, python-dateutil, pydantic-core, proglog, opencv-python, markdown-it-py, jinja2, imageio, httpcore, anyio, starlette, rich, pydantic, pandas, moviepy, huggingface-hub, httpx, typer, safehttpx, gradio-client, fastapi, gradio, gradio_pdf +#68 ... + +#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi +#69 20.60 Building wheels for collected packages: zhconv, pycollada +#69 20.67 Building wheel for zhconv (setup.py): started +#69 21.16 Building wheel for zhconv (setup.py): finished with status 'done' +#69 21.16 Created wheel for zhconv: filename=zhconv-1.4.3-py2.py3-none-any.whl size=208906 sha256=883a6f67a6066853210459ea277a51c97a8e3b2797a8dca1893f8205a8bd457d +#69 21.16 Stored in directory: /tmp/pip-ephem-wheel-cache-208saor6/wheels/05/60/2e/e39305cdeb1fb3b4083913e6f7edc635c0a47f88dacf214dba +#69 21.17 Building wheel for pycollada (setup.py): started +#69 21.52 Building wheel for pycollada (setup.py): finished with status 'done' +#69 21.52 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=3cff043f52fb93e52b3286f2d89d1404fce39c2e80091bae20c5ddcca299f8e7 +#69 21.52 Stored in directory: /tmp/pip-ephem-wheel-cache-208saor6/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 +#69 21.53 Successfully built zhconv pycollada +#69 21.84 Installing collected packages: zhconv, pytz, pydub, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, python-multipart, pygments, pyarrow, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, numpy, networkx, mypy-extensions, multidict, mdurl, lz4, lxml, idna, h11, grpcio, fsspec, frozenlist, filelock, dill, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, multiprocess, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, starlette, rich, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, jsonschema-specifications, jaxlib, huggingface-hub, httpx, aiohttp, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, jsonschema, jax, fastapi, docarray, transformers, opentelemetry-sdk, datasets, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp +#69 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 66.70 Collecting requests (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 66.74 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#54 67.00 Collecting tenacity!=8.4.0 (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 67.04 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) +#54 67.32 Collecting tqdm (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 67.36 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#54 67.39 Requirement already satisfied: typing-extensions>=4.7 in /usr/local/lib/python3.11/site-packages (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (4.12.2) +#54 67.63 Collecting beautifulsoup4 (from bs4->-r /home/user/comps/retrievers/src/requirements.txt (line 1)) +#54 67.67 Downloading beautifulsoup4-4.13.1-py3-none-any.whl.metadata (3.8 kB) +#54 67.92 Collecting cairocffi (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 67.96 Downloading cairocffi-1.7.1-py3-none-any.whl.metadata (3.3 kB) +#54 68.22 Collecting cssselect2 (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 68.26 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +#54 68.50 Collecting defusedxml (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 68.53 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB) +#54 68.55 Requirement already satisfied: pillow in /usr/local/lib/python3.11/site-packages (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) (11.1.0) +#54 68.81 Collecting tinycss2 (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 68.85 Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB) +#54 69.16 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 69.20 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) +#54 69.46 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 69.50 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) +#54 69.84 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 69.87 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#54 70.41 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 70.46 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#54 70.65 Collecting pydub<0.26.0,>=0.25.1 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 70.70 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) +#54 70.83 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 70.87 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#54 71.25 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 71.28 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) +#54 71.57 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 71.61 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) +#54 71.74 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 71.78 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#54 72.03 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 72.04 Downloading https://download.pytorch.org/whl/typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#54 72.04 Requirement already satisfied: torch in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (2.6.0+cpu) +#54 72.05 Requirement already satisfied: torchvision>=0.5 in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (0.21.0+cpu) +#54 72.35 Collecting opencv-python-headless (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 72.39 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) +#54 72.73 Collecting scipy (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 72.78 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#54 72.97 Collecting scikit-image (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 73.01 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (14 kB) +#54 73.21 Collecting python-bidi (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 73.27 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#54 73.55 Collecting Shapely (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 73.58 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) +#54 73.74 Collecting pyclipper (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 73.79 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.0 kB) +#54 73.94 Collecting ninja (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 73.97 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.metadata (5.3 kB) +#54 74.24 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/retrievers/src/requirements.txt (line 6)) +#54 74.29 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#54 74.59 Collecting POT<0.10,>=0.9 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 74.68 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) +#54 74.95 Collecting anytree<3.0.0,>=2.12.1 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 74.98 Downloading anytree-2.12.1-py3-none-any.whl.metadata (8.1 kB) +#54 75.22 Collecting beartype<0.19.0,>=0.18.5 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 75.30 Downloading beartype-0.18.5-py3-none-any.whl.metadata (30 kB) +#54 75.58 Collecting gensim<5.0.0,>=4.3.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 75.61 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB) +#54 75.88 Collecting graspologic-native<2.0.0,>=1.2.1 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 75.91 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.6 kB) +#54 76.14 Collecting hyppo<0.5.0,>=0.4.0 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 76.20 Downloading hyppo-0.4.0-py3-none-any.whl.metadata (1.7 kB) +#54 76.37 Collecting joblib<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 76.40 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) +#54 76.78 Collecting matplotlib<4.0.0,>=3.8.4 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 76.84 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB) +#54 77.19 Collecting scikit-learn<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 77.23 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) +#54 77.34 Collecting scipy (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 77.38 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB) +#54 77.70 Collecting seaborn<0.14.0,>=0.13.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 77.75 Downloading seaborn-0.13.2-py3-none-any.whl.metadata (5.4 kB) +#54 77.91 Collecting statsmodels<0.15.0,>=0.14.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 77.95 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#54 78.19 Collecting umap-learn<0.6.0,>=0.5.6 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 78.25 Downloading umap_learn-0.5.7-py3-none-any.whl.metadata (21 kB) +#54 78.53 Collecting elasticsearch<9.0.0,>=8.13.1 (from elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) +#54 78.56 Downloading elasticsearch-8.17.1-py3-none-any.whl.metadata (8.8 kB) +#54 78.86 Collecting langchain-core<0.4.0,>=0.3.0 (from langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) +#54 78.91 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) +#54 79.47 Collecting aiohttp<3.11,>=3.10 (from langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 79.51 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#54 79.78 Collecting langchain-tests<0.4.0,>=0.3.7 (from langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 79.81 Downloading langchain_tests-0.3.10-py3-none-any.whl.metadata (3.6 kB) +#54 80.06 Collecting pinecone<6.0.0,>=5.4.0 (from langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 ... + +#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget +#42 DONE 93.0s + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 80.10 Downloading pinecone-5.4.2-py3-none-any.whl.metadata (19 kB) +#54 ... + +#70 [opea/dataprep:latest 3/8] RUN cd /root && wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ +#70 0.192 --2025-02-03 22:04:48-- https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz +#70 0.201 Resolving proxy-dmz.intel.com (proxy-dmz.intel.com)... 10.7.211.16 +#70 0.203 Connecting to proxy-dmz.intel.com (proxy-dmz.intel.com)|10.7.211.16|:911... connected. +#70 0.427 Proxy request sent, awaiting response... 200 OK +#70 0.503 Length: 41964060 (40M) [application/x-xz] +#70 0.503 Saving to: ‘ffmpeg-git-amd64-static.tar.xz’ +#70 0.503 +#70 0.503 0K .......... .......... .......... .......... .......... 0% 357K 1m55s +#70 0.643 50K .......... .......... .......... .......... .......... 0% 726K 85s +#70 0.712 100K .......... .......... .......... .......... .......... 0% 27.8M 57s +#70 0.714 150K .......... .......... .......... .......... .......... 0% 726K 57s +#70 0.783 200K .......... .......... .......... .......... .......... 0% 67.4M 46s +#70 0.783 250K .......... .......... .......... .......... .......... 0% 85.9M 38s +#70 0.784 300K .......... .......... .......... .......... .......... 0% 752K 40s +#70 0.851 350K .......... .......... .......... .......... .......... 0% 26.3M 35s +#70 0.852 400K .......... .......... .......... .......... .......... 1% 65.3M 32s +#70 0.853 450K .......... .......... .......... .......... .......... 1% 52.3M 28s +#70 0.854 500K .......... .......... .......... .......... .......... 1% 106M 26s +#70 0.855 550K .......... .......... .......... .......... .......... 1% 77.6M 24s +#70 0.855 600K .......... .......... .......... .......... .......... 1% 57.1M 22s +#70 0.856 650K .......... .......... .......... .......... .......... 1% 67.6M 20s +#70 0.857 700K .......... .......... .......... .......... .......... 1% 780K 22s +#70 0.921 750K .......... .......... .......... .......... .......... 1% 58.9M 21s +#70 0.922 800K .......... .......... .......... .......... .......... 2% 28.0M 20s +#70 0.923 850K .......... .......... .......... .......... .......... 2% 52.5M 19s +#70 0.924 900K .......... .......... .......... .......... .......... 2% 189M 18s +#70 0.925 950K .......... .......... .......... .......... .......... 2% 40.4M 17s +#70 0.926 1000K .......... .......... .......... .......... .......... 2% 108M 16s +#70 0.926 1050K .......... .......... .......... .......... .......... 2% 76.3M 15s +#70 0.927 1100K .......... .......... .......... .......... .......... 2% 49.1M 15s +#70 0.928 1150K .......... .......... .......... .......... .......... 2% 144M 14s +#70 0.928 1200K .......... .......... .......... .......... .......... 3% 46.5M 14s +#70 0.929 1250K .......... .......... .......... .......... .......... 3% 113M 13s +#70 0.930 1300K .......... .......... .......... .......... .......... 3% 110M 13s +#70 0.930 1350K .......... .......... .......... .......... .......... 3% 44.0M 12s +#70 0.931 1400K .......... .......... .......... .......... .......... 3% 852K 13s +#70 0.990 1450K .......... .......... .......... .......... .......... 3% 87.5M 13s +#70 0.991 1500K .......... .......... .......... .......... .......... 3% 43.5M 12s +#70 0.992 1550K .......... .......... .......... .......... .......... 3% 79.9M 12s +#70 0.992 1600K .......... .......... .......... .......... .......... 4% 260M 12s +#70 0.992 1650K .......... .......... .......... .......... .......... 4% 43.6M 11s +#70 0.994 1700K .......... .......... .......... .......... .......... 4% 81.5M 11s +#70 0.994 1750K .......... .......... .......... .......... .......... 4% 53.3M 11s +#70 0.995 1800K .......... .......... .......... .......... .......... 4% 66.2M 10s +#70 0.996 1850K .......... .......... .......... .......... .......... 4% 155M 10s +#70 0.996 1900K .......... .......... .......... .......... .......... 4% 48.0M 10s +#70 0.997 1950K .......... .......... .......... .......... .......... 4% 83.1M 10s +#70 0.998 2000K .......... .......... .......... .......... .......... 5% 61.8M 9s +#70 0.999 2050K .......... .......... .......... .......... .......... 5% 57.8M 9s +#70 0.999 2100K .......... .......... .......... .......... .......... 5% 146M 9s +#70 1.000 2150K .......... .......... .......... .......... .......... 5% 50.5M 9s +#70 1.001 2200K .......... .......... .......... .......... .......... 5% 157M 9s +#70 1.001 2250K .......... .......... .......... .......... .......... 5% 321M 8s +#70 1.001 2300K .......... .......... .......... .......... .......... 5% 163M 8s +#70 1.001 2350K .......... .......... .......... .......... .......... 5% 45.4M 8s +#70 1.002 2400K .......... .......... .......... .......... .......... 5% 158M 8s +#70 1.003 2450K .......... .......... .......... .......... .......... 6% 283M 8s +#70 1.003 2500K .......... .......... .......... .......... .......... 6% 156M 8s +#70 1.003 2550K .......... .......... .......... .......... .......... 6% 51.2M 7s +#70 1.004 2600K .......... .......... .......... .......... .......... 6% 117M 7s +#70 1.005 2650K .......... .......... .......... .......... .......... 6% 332M 7s +#70 1.005 2700K .......... .......... .......... .......... .......... 6% 911K 8s +#70 1.060 2750K .......... .......... .......... .......... .......... 6% 45.8M 8s +#70 1.061 2800K .......... .......... .......... .......... .......... 6% 304M 7s +#70 1.061 2850K .......... .......... .......... .......... .......... 7% 257M 7s +#70 1.061 2900K .......... .......... .......... .......... .......... 7% 158M 7s +#70 1.061 2950K .......... .......... .......... .......... .......... 7% 41.9M 7s +#70 1.063 3000K .......... .......... .......... .......... .......... 7% 311M 7s +#70 1.063 3050K .......... .......... .......... .......... .......... 7% 77.6M 7s +#70 1.063 3100K .......... .......... .......... .......... .......... 7% 27.4M 7s +#70 1.065 3150K .......... .......... .......... .......... .......... 7% 319M 7s +#70 1.065 3200K .......... .......... .......... .......... .......... 7% 271M 7s +#70 1.065 3250K .......... .......... .......... .......... .......... 8% 113M 6s +#70 1.066 3300K .......... .......... .......... .......... .......... 8% 46.4M 6s +#70 1.067 3350K .......... .......... .......... .......... .......... 8% 225M 6s +#70 1.067 3400K .......... .......... .......... .......... .......... 8% 292M 6s +#70 1.067 3450K .......... .......... .......... .......... .......... 8% 117M 6s +#70 1.068 3500K .......... .......... .......... .......... .......... 8% 49.1M 6s +#70 1.069 3550K .......... .......... .......... .......... .......... 8% 230M 6s +#70 1.069 3600K .......... .......... .......... .......... .......... 8% 262M 6s +#70 1.069 3650K .......... .......... .......... .......... .......... 9% 129M 6s +#70 1.070 3700K .......... .......... .......... .......... .......... 9% 48.6M 6s +#70 1.071 3750K .......... .......... .......... .......... .......... 9% 177M 6s +#70 1.071 3800K .......... .......... .......... .......... .......... 9% 302M 5s +#70 1.071 3850K .......... .......... .......... .......... .......... 9% 130M 5s +#70 1.071 3900K .......... .......... .......... .......... .......... 9% 61.1M 5s +#70 1.072 3950K .......... .......... .......... .......... .......... 9% 103M 5s +#70 1.073 4000K .......... .......... .......... .......... .......... 9% 308M 5s +#70 1.073 4050K .......... .......... .......... .......... .......... 10% 135M 5s +#70 1.073 4100K .......... .......... .......... .......... .......... 10% 59.2M 5s +#70 1.074 4150K .......... .......... .......... .......... .......... 10% 116M 5s +#70 1.074 4200K .......... .......... .......... .......... .......... 10% 247M 5s +#70 1.075 4250K .......... .......... .......... .......... .......... 10% 214M 5s +#70 1.075 4300K .......... .......... .......... .......... .......... 10% 226M 5s +#70 1.075 4350K .......... .......... .......... .......... .......... 10% 73.5M 5s +#70 1.076 4400K .......... .......... .......... .......... .......... 10% 90.1M 5s +#70 1.076 4450K .......... .......... .......... .......... .......... 10% 263M 5s +#70 1.076 4500K .......... .......... .......... .......... .......... 11% 243M 5s +#70 1.077 4550K .......... .......... .......... .......... .......... 11% 189M 5s +#70 1.077 4600K .......... .......... .......... .......... .......... 11% 81.1M 4s +#70 1.077 4650K .......... .......... .......... .......... .......... 11% 93.8M 4s +#70 1.078 4700K .......... .......... .......... .......... .......... 11% 213M 4s +#70 1.078 4750K .......... .......... .......... .......... .......... 11% 205M 4s +#70 1.078 4800K .......... .......... .......... .......... .......... 11% 207M 4s +#70 1.079 4850K .......... .......... .......... .......... .......... 11% 71.2M 4s +#70 1.079 4900K .......... .......... .......... .......... .......... 12% 101M 4s +#70 1.080 4950K .......... .......... .......... .......... .......... 12% 190M 4s +#70 1.080 5000K .......... .......... .......... .......... .......... 12% 331M 4s +#70 1.080 5050K .......... .......... .......... .......... .......... 12% 165M 4s +#70 1.081 5100K .......... .......... .......... .......... .......... 12% 95.4M 4s +#70 1.081 5150K .......... .......... .......... .......... .......... 12% 71.9M 4s +#70 1.082 5200K .......... .......... .......... .......... .......... 12% 178M 4s +#70 1.082 5250K .......... .......... .......... .......... .......... 12% 332M 4s +#70 1.082 5300K .......... .......... .......... .......... .......... 13% 271M 4s +#70 1.082 5350K .......... .......... .......... .......... .......... 13% 109M 4s +#70 1.083 5400K .......... .......... .......... .......... .......... 13% 60.5M 4s +#70 1.084 5450K .......... .......... .......... .......... .......... 13% 1.07M 4s +#70 1.129 5500K .......... .......... .......... .......... .......... 13% 49.0M 4s +#70 1.130 5550K .......... .......... .......... .......... .......... 13% 224M 4s +#70 1.131 5600K .......... .......... .......... .......... .......... 13% 256M 4s +#70 1.131 5650K .......... .......... .......... .......... .......... 13% 68.2M 4s +#70 1.131 5700K .......... .......... .......... .......... .......... 14% 262M 4s +#70 1.132 5750K .......... .......... .......... .......... .......... 14% 97.6M 4s +#70 1.132 5800K .......... .......... .......... .......... .......... 14% 217M 4s +#70 1.132 5850K .......... .......... .......... .......... .......... 14% 271M 4s +#70 1.133 5900K .......... .......... .......... .......... .......... 14% 63.9M 4s +#70 1.133 5950K .......... .......... .......... .......... .......... 14% 256M 4s +#70 1.134 6000K .......... .......... .......... .......... .......... 14% 115M 4s +#70 1.134 6050K .......... .......... .......... .......... .......... 14% 175M 4s +#70 1.134 6100K .......... .......... .......... .......... .......... 15% 213M 4s +#70 1.134 6150K .......... .......... .......... .......... .......... 15% 74.7M 4s +#70 1.135 6200K .......... .......... .......... .......... .......... 15% 159M 4s +#70 1.135 6250K .......... .......... .......... .......... .......... 15% 125M 3s +#70 1.136 6300K .......... .......... .......... .......... .......... 15% 183M 3s +#70 1.136 6350K .......... .......... .......... .......... .......... 15% 262M 3s +#70 1.136 6400K .......... .......... .......... .......... .......... 15% 74.9M 3s +#70 1.137 6450K .......... .......... .......... .......... .......... 15% 148M 3s +#70 1.137 6500K .......... .......... .......... .......... .......... 15% 119M 3s +#70 1.138 6550K .......... .......... .......... .......... .......... 16% 201M 3s +#70 1.138 6600K .......... .......... .......... .......... .......... 16% 268M 3s +#70 1.138 6650K .......... .......... .......... .......... .......... 16% 81.4M 3s +#70 1.139 6700K .......... .......... .......... .......... .......... 16% 136M 3s +#70 1.139 6750K .......... .......... .......... .......... .......... 16% 162M 3s +#70 1.139 6800K .......... .......... .......... .......... .......... 16% 149M 3s +#70 1.140 6850K .......... .......... .......... .......... .......... 16% 220M 3s +#70 1.140 6900K .......... .......... .......... .......... .......... 16% 97.5M 3s +#70 1.140 6950K .......... .......... .......... .......... .......... 17% 94.5M 3s +#70 1.141 7000K .......... .......... .......... .......... .......... 17% 194M 3s +#70 1.141 7050K .......... .......... .......... .......... .......... 17% 263M 3s +#70 1.141 7100K .......... .......... .......... .......... .......... 17% 285M 3s +#70 1.142 7150K .......... .......... .......... .......... .......... 17% 339M 3s +#70 1.142 7200K .......... .......... .......... .......... .......... 17% 91.8M 3s +#70 1.142 7250K .......... .......... .......... .......... .......... 17% 117M 3s +#70 1.143 7300K .......... .......... .......... .......... .......... 17% 188M 3s +#70 1.143 7350K .......... .......... .......... .......... .......... 18% 175M 3s +#70 1.143 7400K .......... .......... .......... .......... .......... 18% 323M 3s +#70 1.143 7450K .......... .......... .......... .......... .......... 18% 276M 3s +#70 1.143 7500K .......... .......... .......... .......... .......... 18% 84.3M 3s +#70 1.144 7550K .......... .......... .......... .......... .......... 18% 179M 3s +#70 1.144 7600K .......... .......... .......... .......... .......... 18% 163M 3s +#70 1.145 7650K .......... .......... .......... .......... .......... 18% 183M 3s +#70 1.145 7700K .......... .......... .......... .......... .......... 18% 189M 3s +#70 1.145 7750K .......... .......... .......... .......... .......... 19% 291M 3s +#70 1.145 7800K .......... .......... .......... .......... .......... 19% 95.8M 3s +#70 1.146 7850K .......... .......... .......... .......... .......... 19% 263M 3s +#70 1.146 7900K .......... .......... .......... .......... .......... 19% 149M 3s +#70 1.146 7950K .......... .......... .......... .......... .......... 19% 165M 3s +#70 1.147 8000K .......... .......... .......... .......... .......... 19% 159M 3s +#70 1.147 8050K .......... .......... .......... .......... .......... 19% 302M 3s +#70 1.147 8100K .......... .......... .......... .......... .......... 19% 140M 3s +#70 1.147 8150K .......... .......... .......... .......... .......... 20% 157M 3s +#70 1.148 8200K .......... .......... .......... .......... .......... 20% 113M 3s +#70 1.148 8250K .......... .......... .......... .......... .......... 20% 273M 3s +#70 1.148 8300K .......... .......... .......... .......... .......... 20% 189M 3s +#70 1.149 8350K .......... .......... .......... .......... .......... 20% 188M 3s +#70 1.149 8400K .......... .......... .......... .......... .......... 20% 131M 2s +#70 1.149 8450K .......... .......... .......... .......... .......... 20% 129M 2s +#70 1.150 8500K .......... .......... .......... .......... .......... 20% 144M 2s +#70 1.150 8550K .......... .......... .......... .......... .......... 20% 251M 2s +#70 1.150 8600K .......... .......... .......... .......... .......... 21% 151M 2s +#70 1.151 8650K .......... .......... .......... .......... .......... 21% 193M 2s +#70 1.151 8700K .......... .......... .......... .......... .......... 21% 247M 2s +#70 1.151 8750K .......... .......... .......... .......... .......... 21% 318M 2s +#70 1.151 8800K .......... .......... .......... .......... .......... 21% 345M 2s +#70 1.151 8850K .......... .......... .......... .......... .......... 21% 266M 2s +#70 1.151 8900K .......... .......... .......... .......... .......... 21% 162M 2s +#70 1.152 8950K .......... .......... .......... .......... .......... 21% 161M 2s +#70 1.152 9000K .......... .......... .......... .......... .......... 22% 194M 2s +#70 1.152 9050K .......... .......... .......... .......... .......... 22% 207M 2s +#70 1.153 9100K .......... .......... .......... .......... .......... 22% 141M 2s +#70 1.153 9150K .......... .......... .......... .......... .......... 22% 328M 2s +#70 1.153 9200K .......... .......... .......... .......... .......... 22% 271M 2s +#70 1.153 9250K .......... .......... .......... .......... .......... 22% 326M 2s +#70 1.153 9300K .......... .......... .......... .......... .......... 22% 299M 2s +#70 1.154 9350K .......... .......... .......... .......... .......... 22% 117M 2s +#70 1.154 9400K .......... .......... .......... .......... .......... 23% 311M 2s +#70 1.154 9450K .......... .......... .......... .......... .......... 23% 185M 2s +#70 1.154 9500K .......... .......... .......... .......... .......... 23% 211M 2s +#70 1.155 9550K .......... .......... .......... .......... .......... 23% 259M 2s +#70 1.155 9600K .......... .......... .......... .......... .......... 23% 280M 2s +#70 1.155 9650K .......... .......... .......... .......... .......... 23% 332M 2s +#70 1.155 9700K .......... .......... .......... .......... .......... 23% 149M 2s +#70 1.155 9750K .......... .......... .......... .......... .......... 23% 173M 2s +#70 1.156 9800K .......... .......... .......... .......... .......... 24% 243M 2s +#70 1.156 9850K .......... .......... .......... .......... .......... 24% 236M 2s +#70 1.156 9900K .......... .......... .......... .......... .......... 24% 181M 2s +#70 1.156 9950K .......... .......... .......... .......... .......... 24% 265M 2s +#70 1.157 10000K .......... .......... .......... .......... .......... 24% 308M 2s +#70 1.157 10050K .......... .......... .......... .......... .......... 24% 299M 2s +#70 1.157 10100K .......... .......... .......... .......... .......... 24% 189M 2s +#70 1.157 10150K .......... .......... .......... .......... .......... 24% 128M 2s +#70 1.158 10200K .......... .......... .......... .......... .......... 25% 177M 2s +#70 1.158 10250K .......... .......... .......... .......... .......... 25% 300M 2s +#70 1.158 10300K .......... .......... .......... .......... .......... 25% 220M 2s +#70 1.158 10350K .......... .......... .......... .......... .......... 25% 255M 2s +#70 1.158 10400K .......... .......... .......... .......... .......... 25% 273M 2s +#70 1.159 10450K .......... .......... .......... .......... .......... 25% 287M 2s +#70 1.159 10500K .......... .......... .......... .......... .......... 25% 152M 2s +#70 1.159 10550K .......... .......... .......... .......... .......... 25% 203M 2s +#70 1.159 10600K .......... .......... .......... .......... .......... 25% 177M 2s +#70 1.160 10650K .......... .......... .......... .......... .......... 26% 180M 2s +#70 1.160 10700K .......... .......... .......... .......... .......... 26% 231M 2s +#70 1.160 10750K .......... .......... .......... .......... .......... 26% 262M 2s +#70 1.160 10800K .......... .......... .......... .......... .......... 26% 337M 2s +#70 1.160 10850K .......... .......... .......... .......... .......... 26% 163M 2s +#70 1.161 10900K .......... .......... .......... .......... .......... 26% 308M 2s +#70 1.161 10950K .......... .......... .......... .......... .......... 26% 1.27M 2s +#70 1.199 11000K .......... .......... .......... .......... .......... 26% 238M 2s +#70 1.199 11050K .......... .......... .......... .......... .......... 27% 49.7M 2s +#70 1.200 11100K .......... .......... .......... .......... .......... 27% 140M 2s +#70 1.201 11150K .......... .......... .......... .......... .......... 27% 309M 2s +#70 1.201 11200K .......... .......... .......... .......... .......... 27% 148M 2s +#70 1.201 11250K .......... .......... .......... .......... .......... 27% 289M 2s +#70 1.201 11300K .......... .......... .......... .......... .......... 27% 309M 2s +#70 1.202 11350K .......... .......... .......... .......... .......... 27% 268M 2s +#70 1.202 11400K .......... .......... .......... .......... .......... 27% 336M 2s +#70 1.202 11450K .......... .......... .......... .......... .......... 28% 295M 2s +#70 1.202 11500K .......... .......... .......... .......... .......... 28% 325M 2s +#70 1.202 11550K .......... .......... .......... .......... .......... 28% 213M 2s +#70 1.202 11600K .......... .......... .......... .......... .......... 28% 121M 2s +#70 1.203 11650K .......... .......... .......... .......... .......... 28% 315M 2s +#70 1.203 11700K .......... .......... .......... .......... .......... 28% 238M 2s +#70 1.203 11750K .......... .......... .......... .......... .......... 28% 317M 2s +#70 1.203 11800K .......... .......... .......... .......... .......... 28% 300M 2s +#70 1.203 11850K .......... .......... .......... .......... .......... 29% 243M 2s +#70 1.204 11900K .......... .......... .......... .......... .......... 29% 308M 2s +#70 1.204 11950K .......... .......... .......... .......... .......... 29% 301M 2s +#70 1.204 12000K .......... .......... .......... .......... .......... 29% 345M 2s +#70 1.204 12050K .......... .......... .......... .......... .......... 29% 285M 2s +#70 1.204 12100K .......... .......... .......... .......... .......... 29% 104M 2s +#70 1.205 12150K .......... .......... .......... .......... .......... 29% 243M 2s +#70 1.205 12200K .......... .......... .......... .......... .......... 29% 251M 2s +#70 1.205 12250K .......... .......... .......... .......... .......... 30% 271M 2s +#70 1.205 12300K .......... .......... .......... .......... .......... 30% 302M 2s +#70 1.206 12350K .......... .......... .......... .......... .......... 30% 247M 2s +#70 1.206 12400K .......... .......... .......... .......... .......... 30% 324M 2s +#70 1.206 12450K .......... .......... .......... .......... .......... 30% 299M 2s +#70 1.206 12500K .......... .......... .......... .......... .......... 30% 341M 2s +#70 1.206 12550K .......... .......... .......... .......... .......... 30% 204M 2s +#70 1.206 12600K .......... .......... .......... .......... .......... 30% 108M 2s +#70 1.207 12650K .......... .......... .......... .......... .......... 30% 290M 2s +#70 1.207 12700K .......... .......... .......... .......... .......... 31% 151M 2s +#70 1.207 12750K .......... .......... .......... .......... .......... 31% 306M 2s +#70 1.208 12800K .......... .......... .......... .......... .......... 31% 289M 2s +#70 1.208 12850K .......... .......... .......... .......... .......... 31% 242M 2s +#70 1.208 12900K .......... .......... .......... .......... .......... 31% 332M 2s +#70 1.208 12950K .......... .......... .......... .......... .......... 31% 296M 2s +#70 1.208 13000K .......... .......... .......... .......... .......... 31% 328M 2s +#70 1.208 13050K .......... .......... .......... .......... .......... 31% 331M 2s +#70 1.209 13100K .......... .......... .......... .......... .......... 32% 91.3M 1s +#70 1.209 13150K .......... .......... .......... .......... .......... 32% 342M 1s +#70 1.209 13200K .......... .......... .......... .......... .......... 32% 148M 1s +#70 1.210 13250K .......... .......... .......... .......... .......... 32% 322M 1s +#70 1.210 13300K .......... .......... .......... .......... .......... 32% 319M 1s +#70 1.210 13350K .......... .......... .......... .......... .......... 32% 233M 1s +#70 1.210 13400K .......... .......... .......... .......... .......... 32% 306M 1s +#70 1.210 13450K .......... .......... .......... .......... .......... 32% 7.40M 1s +#70 1.217 13500K .......... .......... .......... .......... .......... 33% 283M 1s +#70 1.217 13550K .......... .......... .......... .......... .......... 33% 279M 1s +#70 1.217 13600K .......... .......... .......... .......... .......... 33% 271M 1s +#70 1.217 13650K .......... .......... .......... .......... .......... 33% 333M 1s +#70 1.217 13700K .......... .......... .......... .......... .......... 33% 285M 1s +#70 1.218 13750K .......... .......... .......... .......... .......... 33% 328M 1s +#70 1.218 13800K .......... .......... .......... .......... .......... 33% 346M 1s +#70 1.218 13850K .......... .......... .......... .......... .......... 33% 277M 1s +#70 1.218 13900K .......... .......... .......... .......... .......... 34% 343M 1s +#70 1.218 13950K .......... .......... .......... .......... .......... 34% 23.8M 1s +#70 1.220 14000K .......... .......... .......... .......... .......... 34% 267M 1s +#70 1.220 14050K .......... .......... .......... .......... .......... 34% 287M 1s +#70 1.221 14100K .......... .......... .......... .......... .......... 34% 253M 1s +#70 1.221 14150K .......... .......... .......... .......... .......... 34% 339M 1s +#70 1.221 14200K .......... .......... .......... .......... .......... 34% 288M 1s +#70 1.221 14250K .......... .......... .......... .......... .......... 34% 344M 1s +#70 1.221 14300K .......... .......... .......... .......... .......... 35% 347M 1s +#70 1.221 14350K .......... .......... .......... .......... .......... 35% 295M 1s +#70 1.222 14400K .......... .......... .......... .......... .......... 35% 331M 1s +#70 1.222 14450K .......... .......... .......... .......... .......... 35% 129M 1s +#70 1.222 14500K .......... .......... .......... .......... .......... 35% 314M 1s +#70 1.222 14550K .......... .......... .......... .......... .......... 35% 303M 1s +#70 1.222 14600K .......... .......... .......... .......... .......... 35% 265M 1s +#70 1.223 14650K .......... .......... .......... .......... .......... 35% 332M 1s +#70 1.223 14700K .......... .......... .......... .......... .......... 35% 278M 1s +#70 1.223 14750K .......... .......... .......... .......... .......... 36% 320M 1s +#70 1.223 14800K .......... .......... .......... .......... .......... 36% 338M 1s +#70 1.223 14850K .......... .......... .......... .......... .......... 36% 296M 1s +#70 1.223 14900K .......... .......... .......... .......... .......... 36% 336M 1s +#70 1.224 14950K .......... .......... .......... .......... .......... 36% 138M 1s +#70 1.224 15000K .......... .......... .......... .......... .......... 36% 313M 1s +#70 1.224 15050K .......... .......... .......... .......... .......... 36% 264M 1s +#70 1.224 15100K .......... .......... .......... .......... .......... 36% 232M 1s +#70 1.224 15150K .......... .......... .......... .......... .......... 37% 312M 1s +#70 1.225 15200K .......... .......... .......... .......... .......... 37% 275M 1s +#70 1.225 15250K .......... .......... .......... .......... .......... 37% 339M 1s +#70 1.225 15300K .......... .......... .......... .......... .......... 37% 356M 1s +#70 1.225 15350K .......... .......... .......... .......... .......... 37% 298M 1s +#70 1.225 15400K .......... .......... .......... .......... .......... 37% 318M 1s +#70 1.225 15450K .......... .......... .......... .......... .......... 37% 126M 1s +#70 1.226 15500K .......... .......... .......... .......... .......... 37% 335M 1s +#70 1.226 15550K .......... .......... .......... .......... .......... 38% 295M 1s +#70 1.226 15600K .......... .......... .......... .......... .......... 38% 271M 1s +#70 1.226 15650K .......... .......... .......... .......... .......... 38% 303M 1s +#70 1.226 15700K .......... .......... .......... .......... .......... 38% 255M 1s +#70 1.227 15750K .......... .......... .......... .......... .......... 38% 329M 1s +#70 1.227 15800K .......... .......... .......... .......... .......... 38% 346M 1s +#70 1.227 15850K .......... .......... .......... .......... .......... 38% 295M 1s +#70 1.227 15900K .......... .......... .......... .......... .......... 38% 324M 1s +#70 1.227 15950K .......... .......... .......... .......... .......... 39% 113M 1s +#70 1.228 16000K .......... .......... .......... .......... .......... 39% 294M 1s +#70 1.228 16050K .......... .......... .......... .......... .......... 39% 161M 1s +#70 1.228 16100K .......... .......... .......... .......... .......... 39% 271M 1s +#70 1.228 16150K .......... .......... .......... .......... .......... 39% 327M 1s +#70 1.228 16200K .......... .......... .......... .......... .......... 39% 265M 1s +#70 1.229 16250K .......... .......... .......... .......... .......... 39% 313M 1s +#70 1.229 16300K .......... .......... .......... .......... .......... 39% 329M 1s +#70 1.229 16350K .......... .......... .......... .......... .......... 40% 263M 1s +#70 1.229 16400K .......... .......... .......... .......... .......... 40% 145M 1s +#70 1.229 16450K .......... .......... .......... .......... .......... 40% 286M 1s +#70 1.230 16500K .......... .......... .......... .......... .......... 40% 326M 1s +#70 1.230 16550K .......... .......... .......... .......... .......... 40% 150M 1s +#70 1.230 16600K .......... .......... .......... .......... .......... 40% 255M 1s +#70 1.230 16650K .......... .......... .......... .......... .......... 40% 314M 1s +#70 1.230 16700K .......... .......... .......... .......... .......... 40% 284M 1s +#70 1.231 16750K .......... .......... .......... .......... .......... 40% 332M 1s +#70 1.231 16800K .......... .......... .......... .......... .......... 41% 328M 1s +#70 1.231 16850K .......... .......... .......... .......... .......... 41% 290M 1s +#70 1.231 16900K .......... .......... .......... .......... .......... 41% 328M 1s +#70 1.231 16950K .......... .......... .......... .......... .......... 41% 283M 1s +#70 1.231 17000K .......... .......... .......... .......... .......... 41% 318M 1s +#70 1.232 17050K .......... .......... .......... .......... .......... 41% 121M 1s +#70 1.232 17100K .......... .......... .......... .......... .......... 41% 278M 1s +#70 1.232 17150K .......... .......... .......... .......... .......... 41% 338M 1s +#70 1.232 17200K .......... .......... .......... .......... .......... 42% 250M 1s +#70 1.233 17250K .......... .......... .......... .......... .......... 42% 315M 1s +#70 1.233 17300K .......... .......... .......... .......... .......... 42% 323M 1s +#70 1.233 17350K .......... .......... .......... .......... .......... 42% 275M 1s +#70 1.233 17400K .......... .......... .......... .......... .......... 42% 298M 1s +#70 1.233 17450K .......... .......... .......... .......... .......... 42% 270M 1s +#70 1.233 17500K .......... .......... .......... .......... .......... 42% 158M 1s +#70 1.234 17550K .......... .......... .......... .......... .......... 42% 205M 1s +#70 1.234 17600K .......... .......... .......... .......... .......... 43% 254M 1s +#70 1.234 17650K .......... .......... .......... .......... .......... 43% 314M 1s +#70 1.234 17700K .......... .......... .......... .......... .......... 43% 267M 1s +#70 1.234 17750K .......... .......... .......... .......... .......... 43% 341M 1s +#70 1.235 17800K .......... .......... .......... .......... .......... 43% 352M 1s +#70 1.235 17850K .......... .......... .......... .......... .......... 43% 281M 1s +#70 1.235 17900K .......... .......... .......... .......... .......... 43% 186M 1s +#70 1.235 17950K .......... .......... .......... .......... .......... 43% 274M 1s +#70 1.235 18000K .......... .......... .......... .......... .......... 44% 235M 1s +#70 1.236 18050K .......... .......... .......... .......... .......... 44% 146M 1s +#70 1.236 18100K .......... .......... .......... .......... .......... 44% 275M 1s +#70 1.236 18150K .......... .......... .......... .......... .......... 44% 295M 1s +#70 1.236 18200K .......... .......... .......... .......... .......... 44% 288M 1s +#70 1.236 18250K .......... .......... .......... .......... .......... 44% 337M 1s +#70 1.237 18300K .......... .......... .......... .......... .......... 44% 340M 1s +#70 1.237 18350K .......... .......... .......... .......... .......... 44% 282M 1s +#70 1.237 18400K .......... .......... .......... .......... .......... 45% 204M 1s +#70 1.237 18450K .......... .......... .......... .......... .......... 45% 274M 1s +#70 1.237 18500K .......... .......... .......... .......... .......... 45% 339M 1s +#70 1.237 18550K .......... .......... .......... .......... .......... 45% 155M 1s +#70 1.238 18600K .......... .......... .......... .......... .......... 45% 266M 1s +#70 1.238 18650K .......... .......... .......... .......... .......... 45% 1005K 1s +#70 1.288 18700K .......... .......... .......... .......... .......... 45% 198M 1s +#70 1.288 18750K .......... .......... .......... .......... .......... 45% 313M 1s +#70 1.288 18800K .......... .......... .......... .......... .......... 45% 301M 1s +#70 1.288 18850K .......... .......... .......... .......... .......... 46% 244M 1s +#70 1.288 18900K .......... .......... .......... .......... .......... 46% 294M 1s +#70 1.289 18950K .......... .......... .......... .......... .......... 46% 188M 1s +#70 1.289 19000K .......... .......... .......... .......... .......... 46% 179M 1s +#70 1.289 19050K .......... .......... .......... .......... .......... 46% 285M 1s +#70 1.289 19100K .......... .......... .......... .......... .......... 46% 265M 1s +#70 1.289 19150K .......... .......... .......... .......... .......... 46% 270M 1s +#70 1.290 19200K .......... .......... .......... .......... .......... 46% 283M 1s +#70 1.290 19250K .......... .......... .......... .......... .......... 47% 306M 1s +#70 1.290 19300K .......... .......... .......... .......... .......... 47% 323M 1s +#70 1.290 19350K .......... .......... .......... .......... .......... 47% 229M 1s +#70 1.290 19400K .......... .......... .......... .......... .......... 47% 58.4M 1s +#70 1.291 19450K .......... .......... .......... .......... .......... 47% 180M 1s +#70 1.291 19500K .......... .......... .......... .......... .......... 47% 117M 1s +#70 1.292 19550K .......... .......... .......... .......... .......... 47% 227M 1s +#70 1.292 19600K .......... .......... .......... .......... .......... 47% 176M 1s +#70 1.292 19650K .......... .......... .......... .......... .......... 48% 312M 1s +#70 1.292 19700K .......... .......... .......... .......... .......... 48% 209M 1s +#70 1.293 19750K .......... .......... .......... .......... .......... 48% 220M 1s +#70 1.293 19800K .......... .......... .......... .......... .......... 48% 276M 1s +#70 1.293 19850K .......... .......... .......... .......... .......... 48% 196M 1s +#70 1.293 19900K .......... .......... .......... .......... .......... 48% 203M 1s +#70 1.294 19950K .......... .......... .......... .......... .......... 48% 127M 1s +#70 1.294 20000K .......... .......... .......... .......... .......... 48% 160M 1s +#70 1.294 20050K .......... .......... .......... .......... .......... 49% 321M 1s +#70 1.294 20100K .......... .......... .......... .......... .......... 49% 233M 1s +#70 1.295 20150K .......... .......... .......... .......... .......... 49% 306M 1s +#70 1.295 20200K .......... .......... .......... .......... .......... 49% 275M 1s +#70 1.295 20250K .......... .......... .......... .......... .......... 49% 303M 1s +#70 1.295 20300K .......... .......... .......... .......... .......... 49% 308M 1s +#70 1.295 20350K .......... .......... .......... .......... .......... 49% 285M 1s +#70 1.295 20400K .......... .......... .......... .......... .......... 49% 74.4M 1s +#70 1.296 20450K .......... .......... .......... .......... .......... 50% 206M 1s +#70 1.296 20500K .......... .......... .......... .......... .......... 50% 229M 1s +#70 1.297 20550K .......... .......... .......... .......... .......... 50% 302M 1s +#70 1.297 20600K .......... .......... .......... .......... .......... 50% 260M 1s +#70 1.297 20650K .......... .......... .......... .......... .......... 50% 231M 1s +#70 1.297 20700K .......... .......... .......... .......... .......... 50% 134M 1s +#70 1.298 20750K .......... .......... .......... .......... .......... 50% 309M 1s +#70 1.298 20800K .......... .......... .......... .......... .......... 50% 220M 1s +#70 1.298 20850K .......... .......... .......... .......... .......... 50% 159M 1s +#70 1.298 20900K .......... .......... .......... .......... .......... 51% 312M 1s +#70 1.298 20950K .......... .......... .......... .......... .......... 51% 137M 1s +#70 1.299 21000K .......... .......... .......... .......... .......... 51% 319M 1s +#70 1.299 21050K .......... .......... .......... .......... .......... 51% 320M 1s +#70 1.299 21100K .......... .......... .......... .......... .......... 51% 260M 1s +#70 1.299 21150K .......... .......... .......... .......... .......... 51% 307M 1s +#70 1.299 21200K .......... .......... .......... .......... .......... 51% 277M 1s +#70 1.300 21250K .......... .......... .......... .......... .......... 51% 279M 1s +#70 1.300 21300K .......... .......... .......... .......... .......... 52% 329M 1s +#70 1.300 21350K .......... .......... .......... .......... .......... 52% 233M 1s +#70 1.300 21400K .......... .......... .......... .......... .......... 52% 149M 1s +#70 1.300 21450K .......... .......... .......... .......... .......... 52% 170M 1s +#70 1.301 21500K .......... .......... .......... .......... .......... 52% 172M 1s +#70 1.301 21550K .......... .......... .......... .......... .......... 52% 140M 1s +#70 1.301 21600K .......... .......... .......... .......... .......... 52% 270M 1s +#70 1.302 21650K .......... .......... .......... .......... .......... 52% 282M 1s +#70 1.302 21700K .......... .......... .......... .......... .......... 53% 208M 1s +#70 1.302 21750K .......... .......... .......... .......... .......... 53% 172M 1s +#70 1.302 21800K .......... .......... .......... .......... .......... 53% 233M 1s +#70 1.302 21850K .......... .......... .......... .......... .......... 53% 126M 1s +#70 1.303 21900K .......... .......... .......... .......... .......... 53% 319M 1s +#70 1.303 21950K .......... .......... .......... .......... .......... 53% 283M 1s +#70 1.303 22000K .......... .......... .......... .......... .......... 53% 322M 1s +#70 1.303 22050K .......... .......... .......... .......... .......... 53% 344M 1s +#70 1.303 22100K .......... .......... .......... .......... .......... 54% 268M 1s +#70 1.304 22150K .......... .......... .......... .......... .......... 54% 329M 1s +#70 1.304 22200K .......... .......... .......... .......... .......... 54% 175M 1s +#70 1.304 22250K .......... .......... .......... .......... .......... 54% 299M 1s +#70 1.304 22300K .......... .......... .......... .......... .......... 54% 145M 1s +#70 1.305 22350K .......... .......... .......... .......... .......... 54% 267M 1s +#70 1.305 22400K .......... .......... .......... .......... .......... 54% 323M 1s +#70 1.305 22450K .......... .......... .......... .......... .......... 54% 186M 1s +#70 1.305 22500K .......... .......... .......... .......... .......... 55% 318M 1s +#70 1.305 22550K .......... .......... .......... .......... .......... 55% 310M 1s +#70 1.305 22600K .......... .......... .......... .......... .......... 55% 285M 1s +#70 1.306 22650K .......... .......... .......... .......... .......... 55% 339M 1s +#70 1.306 22700K .......... .......... .......... .......... .......... 55% 234M 1s +#70 1.306 22750K .......... .......... .......... .......... .......... 55% 295M 1s +#70 1.306 22800K .......... .......... .......... .......... .......... 55% 219M 1s +#70 1.306 22850K .......... .......... .......... .......... .......... 55% 265M 1s +#70 1.307 22900K .......... .......... .......... .......... .......... 56% 326M 1s +#70 1.307 22950K .......... .......... .......... .......... .......... 56% 139M 1s +#70 1.307 23000K .......... .......... .......... .......... .......... 56% 301M 1s +#70 1.307 23050K .......... .......... .......... .......... .......... 56% 306M 1s +#70 1.307 23100K .......... .......... .......... .......... .......... 56% 296M 1s +#70 1.308 23150K .......... .......... .......... .......... .......... 56% 335M 1s +#70 1.308 23200K .......... .......... .......... .......... .......... 56% 178M 1s +#70 1.308 23250K .......... .......... .......... .......... .......... 56% 315M 1s +#70 1.308 23300K .......... .......... .......... .......... .......... 56% 320M 1s +#70 1.308 23350K .......... .......... .......... .......... .......... 57% 265M 1s +#70 1.308 23400K .......... .......... .......... .......... .......... 57% 306M 1s +#70 1.309 23450K .......... .......... .......... .......... .......... 57% 178M 1s +#70 1.309 23500K .......... .......... .......... .......... .......... 57% 287M 1s +#70 1.309 23550K .......... .......... .......... .......... .......... 57% 300M 1s +#70 1.309 23600K .......... .......... .......... .......... .......... 57% 296M 1s +#70 1.309 23650K .......... .......... .......... .......... .......... 57% 353M 1s +#70 1.310 23700K .......... .......... .......... .......... .......... 57% 191M 1s +#70 1.310 23750K .......... .......... .......... .......... .......... 58% 297M 1s +#70 1.310 23800K .......... .......... .......... .......... .......... 58% 161M 1s +#70 1.310 23850K .......... .......... .......... .......... .......... 58% 283M 1s +#70 1.310 23900K .......... .......... .......... .......... .......... 58% 298M 1s +#70 1.311 23950K .......... .......... .......... .......... .......... 58% 191M 1s +#70 1.311 24000K .......... .......... .......... .......... .......... 58% 290M 1s +#70 1.311 24050K .......... .......... .......... .......... .......... 58% 324M 1s +#70 1.311 24100K .......... .......... .......... .......... .......... 58% 262M 1s +#70 1.311 24150K .......... .......... .......... .......... .......... 59% 336M 1s +#70 1.311 24200K .......... .......... .......... .......... .......... 59% 289M 1s +#70 1.312 24250K .......... .......... .......... .......... .......... 59% 297M 1s +#70 1.312 24300K .......... .......... .......... .......... .......... 59% 157M 1s +#70 1.312 24350K .......... .......... .......... .......... .......... 59% 275M 1s +#70 1.312 24400K .......... .......... .......... .......... .......... 59% 319M 1s +#70 1.312 24450K .......... .......... .......... .......... .......... 59% 271M 1s +#70 1.313 24500K .......... .......... .......... .......... .......... 59% 282M 1s +#70 1.313 24550K .......... .......... .......... .......... .......... 60% 333M 1s +#70 1.313 24600K .......... .......... .......... .......... .......... 60% 165M 1s +#70 1.313 24650K .......... .......... .......... .......... .......... 60% 303M 1s +#70 1.313 24700K .......... .......... .......... .......... .......... 60% 280M 1s +#70 1.314 24750K .......... .......... .......... .......... .......... 60% 308M 1s +#70 1.314 24800K .......... .......... .......... .......... .......... 60% 898K 1s +#70 1.369 24850K .......... .......... .......... .......... .......... 60% 117M 1s +#70 1.370 24900K .......... .......... .......... .......... .......... 60% 278M 1s +#70 1.370 24950K .......... .......... .......... .......... .......... 61% 277M 1s +#70 1.370 25000K .......... .......... .......... .......... .......... 61% 309M 1s +#70 1.370 25050K .......... .......... .......... .......... .......... 61% 301M 1s +#70 1.370 25100K .......... .......... .......... .......... .......... 61% 266M 1s +#70 1.371 25150K .......... .......... .......... .......... .......... 61% 331M 1s +#70 1.371 25200K .......... .......... .......... .......... .......... 61% 254M 1s +#70 1.371 25250K .......... .......... .......... .......... .......... 61% 250M 1s +#70 1.371 25300K .......... .......... .......... .......... .......... 61% 331M 1s +#70 1.371 25350K .......... .......... .......... .......... .......... 61% 207M 1s +#70 1.372 25400K .......... .......... .......... .......... .......... 62% 302M 1s +#70 1.372 25450K .......... .......... .......... .......... .......... 62% 265M 1s +#70 1.372 25500K .......... .......... .......... .......... .......... 62% 303M 1s +#70 1.372 25550K .......... .......... .......... .......... .......... 62% 331M 1s +#70 1.372 25600K .......... .......... .......... .......... .......... 62% 266M 1s +#70 1.372 25650K .......... .......... .......... .......... .......... 62% 353M 1s +#70 1.373 25700K .......... .......... .......... .......... .......... 62% 91.4M 1s +#70 1.373 25750K .......... .......... .......... .......... .......... 62% 306M 1s +#70 1.373 25800K .......... .......... .......... .......... .......... 63% 326M 1s +#70 1.373 25850K .......... .......... .......... .......... .......... 63% 270M 1s +#70 1.374 25900K .......... .......... .......... .......... .......... 63% 272M 1s +#70 1.374 25950K .......... .......... .......... .......... .......... 63% 263M 1s +#70 1.374 26000K .......... .......... .......... .......... .......... 63% 302M 0s +#70 1.374 26050K .......... .......... .......... .......... .......... 63% 316M 0s +#70 1.374 26100K .......... .......... .......... .......... .......... 63% 295M 0s +#70 1.374 26150K .......... .......... .......... .......... .......... 63% 345M 0s +#70 1.375 26200K .......... .......... .......... .......... .......... 64% 133M 0s +#70 1.375 26250K .......... .......... .......... .......... .......... 64% 223M 0s +#70 1.375 26300K .......... .......... .......... .......... .......... 64% 315M 0s +#70 1.375 26350K .......... .......... .......... .......... .......... 64% 288M 0s +#70 1.375 26400K .......... .......... .......... .......... .......... 64% 138M 0s +#70 1.376 26450K .......... .......... .......... .......... .......... 64% 278M 0s +#70 1.376 26500K .......... .......... .......... .......... .......... 64% 292M 0s +#70 1.376 26550K .......... .......... .......... .......... .......... 64% 314M 0s +#70 1.376 26600K .......... .......... .......... .......... .......... 65% 282M 0s +#70 1.376 26650K .......... .......... .......... .......... .......... 65% 322M 0s +#70 1.377 26700K .......... .......... .......... .......... .......... 65% 269M 0s +#70 1.377 26750K .......... .......... .......... .......... .......... 65% 309M 0s +#70 1.377 26800K .......... .......... .......... .......... .......... 65% 338M 0s +#70 1.377 26850K .......... .......... .......... .......... .......... 65% 200M 0s +#70 1.377 26900K .......... .......... .......... .......... .......... 65% 148M 0s +#70 1.378 26950K .......... .......... .......... .......... .......... 65% 280M 0s +#70 1.378 27000K .......... .......... .......... .......... .......... 66% 332M 0s +#70 1.378 27050K .......... .......... .......... .......... .......... 66% 322M 0s +#70 1.378 27100K .......... .......... .......... .......... .......... 66% 268M 0s +#70 1.378 27150K .......... .......... .......... .......... .......... 66% 334M 0s +#70 1.379 27200K .......... .......... .......... .......... .......... 66% 262M 0s +#70 1.379 27250K .......... .......... .......... .......... .......... 66% 253M 0s +#70 1.379 27300K .......... .......... .......... .......... .......... 66% 330M 0s +#70 1.379 27350K .......... .......... .......... .......... .......... 66% 201M 0s +#70 1.379 27400K .......... .......... .......... .......... .......... 66% 153M 0s +#70 1.380 27450K .......... .......... .......... .......... .......... 67% 266M 0s +#70 1.380 27500K .......... .......... .......... .......... .......... 67% 302M 0s +#70 1.380 27550K .......... .......... .......... .......... .......... 67% 268M 0s +#70 1.380 27600K .......... .......... .......... .......... .......... 67% 296M 0s +#70 1.380 27650K .......... .......... .......... .......... .......... 67% 340M 0s +#70 1.380 27700K .......... .......... .......... .......... .......... 67% 279M 0s +#70 1.381 27750K .......... .......... .......... .......... .......... 67% 317M 0s +#70 1.381 27800K .......... .......... .......... .......... .......... 67% 342M 0s +#70 1.381 27850K .......... .......... .......... .......... .......... 68% 259M 0s +#70 1.381 27900K .......... .......... .......... .......... .......... 68% 110M 0s +#70 1.382 27950K .......... .......... .......... .......... .......... 68% 288M 0s +#70 1.382 28000K .......... .......... .......... .......... .......... 68% 321M 0s +#70 1.382 28050K .......... .......... .......... .......... .......... 68% 165M 0s +#70 1.382 28100K .......... .......... .......... .......... .......... 68% 280M 0s +#70 1.382 28150K .......... .......... .......... .......... .......... 68% 327M 0s +#70 1.382 28200K .......... .......... .......... .......... .......... 68% 275M 0s +#70 1.383 28250K .......... .......... .......... .......... .......... 69% 339M 0s +#70 1.383 28300K .......... .......... .......... .......... .......... 69% 2.89M 0s +#70 1.400 28350K .......... .......... .......... .......... .......... 69% 215M 0s +#70 1.400 28400K .......... .......... .......... .......... .......... 69% 297M 0s +#70 1.400 28450K .......... .......... .......... .......... .......... 69% 280M 0s +#70 1.400 28500K .......... .......... .......... .......... .......... 69% 297M 0s +#70 1.400 28550K .......... .......... .......... .......... .......... 69% 281M 0s +#70 1.401 28600K .......... .......... .......... .......... .......... 69% 277M 0s +#70 1.401 28650K .......... .......... .......... .......... .......... 70% 339M 0s +#70 1.401 28700K .......... .......... .......... .......... .......... 70% 284M 0s +#70 1.401 28750K .......... .......... .......... .......... .......... 70% 325M 0s +#70 1.401 28800K .......... .......... .......... .......... .......... 70% 212M 0s +#70 1.401 28850K .......... .......... .......... .......... .......... 70% 237M 0s +#70 1.402 28900K .......... .......... .......... .......... .......... 70% 295M 0s +#70 1.402 28950K .......... .......... .......... .......... .......... 70% 288M 0s +#70 1.402 29000K .......... .......... .......... .......... .......... 70% 305M 0s +#70 1.402 29050K .......... .......... .......... .......... .......... 71% 327M 0s +#70 1.402 29100K .......... .......... .......... .......... .......... 71% 295M 0s +#70 1.402 29150K .......... .......... .......... .......... .......... 71% 25.4M 0s +#70 1.404 29200K .......... .......... .......... .......... .......... 71% 180M 0s +#70 1.405 29250K .......... .......... .......... .......... .......... 71% 242M 0s +#70 1.405 29300K .......... .......... .......... .......... .......... 71% 304M 0s +#70 1.405 29350K .......... .......... .......... .......... .......... 71% 259M 0s +#70 1.405 29400K .......... .......... .......... .......... .......... 71% 278M 0s +#70 1.405 29450K .......... .......... .......... .......... .......... 71% 254M 0s +#70 1.406 29500K .......... .......... .......... .......... .......... 72% 305M 0s +#70 1.406 29550K .......... .......... .......... .......... .......... 72% 303M 0s +#70 1.406 29600K .......... .......... .......... .......... .......... 72% 278M 0s +#70 1.406 29650K .......... .......... .......... .......... .......... 72% 331M 0s +#70 1.406 29700K .......... .......... .......... .......... .......... 72% 124M 0s +#70 1.407 29750K .......... .......... .......... .......... .......... 72% 321M 0s +#70 1.407 29800K .......... .......... .......... .......... .......... 72% 313M 0s +#70 1.407 29850K .......... .......... .......... .......... .......... 72% 262M 0s +#70 1.407 29900K .......... .......... .......... .......... .......... 73% 232M 0s +#70 1.407 29950K .......... .......... .......... .......... .......... 73% 268M 0s +#70 1.408 30000K .......... .......... .......... .......... .......... 73% 314M 0s +#70 1.408 30050K .......... .......... .......... .......... .......... 73% 274M 0s +#70 1.408 30100K .......... .......... .......... .......... .......... 73% 281M 0s +#70 1.408 30150K .......... .......... .......... .......... .......... 73% 342M 0s +#70 1.408 30200K .......... .......... .......... .......... .......... 73% 185M 0s +#70 1.408 30250K .......... .......... .......... .......... .......... 73% 324M 0s +#70 1.409 30300K .......... .......... .......... .......... .......... 74% 247M 0s +#70 1.409 30350K .......... .......... .......... .......... .......... 74% 275M 0s +#70 1.409 30400K .......... .......... .......... .......... .......... 74% 227M 0s +#70 1.409 30450K .......... .......... .......... .......... .......... 74% 258M 0s +#70 1.409 30500K .......... .......... .......... .......... .......... 74% 303M 0s +#70 1.410 30550K .......... .......... .......... .......... .......... 74% 329M 0s +#70 1.410 30600K .......... .......... .......... .......... .......... 74% 280M 0s +#70 1.410 30650K .......... .......... .......... .......... .......... 74% 345M 0s +#70 1.410 30700K .......... .......... .......... .......... .......... 75% 179M 0s +#70 1.410 30750K .......... .......... .......... .......... .......... 75% 306M 0s +#70 1.410 30800K .......... .......... .......... .......... .......... 75% 230M 0s +#70 1.411 30850K .......... .......... .......... .......... .......... 75% 273M 0s +#70 1.411 30900K .......... .......... .......... .......... .......... 75% 140M 0s +#70 1.411 30950K .......... .......... .......... .......... .......... 75% 283M 0s +#70 1.411 31000K .......... .......... .......... .......... .......... 75% 320M 0s +#70 1.411 31050K .......... .......... .......... .......... .......... 75% 329M 0s +#70 1.412 31100K .......... .......... .......... .......... .......... 76% 269M 0s +#70 1.412 31150K .......... .......... .......... .......... .......... 76% 336M 0s +#70 1.412 31200K .......... .......... .......... .......... .......... 76% 253M 0s +#70 1.412 31250K .......... .......... .......... .......... .......... 76% 283M 0s +#70 1.412 31300K .......... .......... .......... .......... .......... 76% 308M 0s +#70 1.412 31350K .......... .......... .......... .......... .......... 76% 240M 0s +#70 1.413 31400K .......... .......... .......... .......... .......... 76% 134M 0s +#70 1.413 31450K .......... .......... .......... .......... .......... 76% 270M 0s +#70 1.413 31500K .......... .......... .......... .......... .......... 76% 319M 0s +#70 1.413 31550K .......... .......... .......... .......... .......... 77% 323M 0s +#70 1.414 31600K .......... .......... .......... .......... .......... 77% 285M 0s +#70 1.414 31650K .......... .......... .......... .......... .......... 77% 308M 0s +#70 1.414 31700K .......... .......... .......... .......... .......... 77% 224M 0s +#70 1.414 31750K .......... .......... .......... .......... .......... 77% 299M 0s +#70 1.414 31800K .......... .......... .......... .......... .......... 77% 344M 0s +#70 1.414 31850K .......... .......... .......... .......... .......... 77% 198M 0s +#70 1.415 31900K .......... .......... .......... .......... .......... 77% 171M 0s +#70 1.415 31950K .......... .......... .......... .......... .......... 78% 262M 0s +#70 1.415 32000K .......... .......... .......... .......... .......... 78% 310M 0s +#70 1.415 32050K .......... .......... .......... .......... .......... 78% 339M 0s +#70 1.415 32100K .......... .......... .......... .......... .......... 78% 283M 0s +#70 1.416 32150K .......... .......... .......... .......... .......... 78% 317M 0s +#70 1.416 32200K .......... .......... .......... .......... .......... 78% 275M 0s +#70 1.416 32250K .......... .......... .......... .......... .......... 78% 280M 0s +#70 1.416 32300K .......... .......... .......... .......... .......... 78% 337M 0s +#70 1.416 32350K .......... .......... .......... .......... .......... 79% 156M 0s +#70 1.417 32400K .......... .......... .......... .......... .......... 79% 210M 0s +#70 1.417 32450K .......... .......... .......... .......... .......... 79% 290M 0s +#70 1.417 32500K .......... .......... .......... .......... .......... 79% 1.08M 0s +#70 1.462 32550K .......... .......... .......... .......... .......... 79% 290M 0s +#70 1.462 32600K .......... .......... .......... .......... .......... 79% 28.7M 0s +#70 1.464 32650K .......... .......... .......... .......... .......... 79% 257M 0s +#70 1.464 32700K .......... .......... .......... .......... .......... 79% 274M 0s +#70 1.464 32750K .......... .......... .......... .......... .......... 80% 311M 0s +#70 1.465 32800K .......... .......... .......... .......... .......... 80% 195M 0s +#70 1.465 32850K .......... .......... .......... .......... .......... 80% 287M 0s +#70 1.465 32900K .......... .......... .......... .......... .......... 80% 336M 0s +#70 1.465 32950K .......... .......... .......... .......... .......... 80% 301M 0s +#70 1.465 33000K .......... .......... .......... .......... .......... 80% 323M 0s +#70 1.465 33050K .......... .......... .......... .......... .......... 80% 341M 0s +#70 1.466 33100K .......... .......... .......... .......... .......... 80% 202M 0s +#70 1.466 33150K .......... .......... .......... .......... .......... 81% 288M 0s +#70 1.466 33200K .......... .......... .......... .......... .......... 81% 264M 0s +#70 1.466 33250K .......... .......... .......... .......... .......... 81% 316M 0s +#70 1.466 33300K .......... .......... .......... .......... .......... 81% 348M 0s +#70 1.466 33350K .......... .......... .......... .......... .......... 81% 289M 0s +#70 1.467 33400K .......... .......... .......... .......... .......... 81% 336M 0s +#70 1.467 33450K .......... .......... .......... .......... .......... 81% 298M 0s +#70 1.467 33500K .......... .......... .......... .......... .......... 81% 326M 0s +#70 1.467 33550K .......... .......... .......... .......... .......... 81% 159M 0s +#70 1.467 33600K .......... .......... .......... .......... .......... 82% 196M 0s +#70 1.468 33650K .......... .......... .......... .......... .......... 82% 274M 0s +#70 1.468 33700K .......... .......... .......... .......... .......... 82% 252M 0s +#70 1.468 33750K .......... .......... .......... .......... .......... 82% 298M 0s +#70 1.468 33800K .......... .......... .......... .......... .......... 82% 342M 0s +#70 1.468 33850K .......... .......... .......... .......... .......... 82% 292M 0s +#70 1.468 33900K .......... .......... .......... .......... .......... 82% 339M 0s +#70 1.469 33950K .......... .......... .......... .......... .......... 82% 299M 0s +#70 1.469 34000K .......... .......... .......... .......... .......... 83% 332M 0s +#70 1.469 34050K .......... .......... .......... .......... .......... 83% 174M 0s +#70 1.469 34100K .......... .......... .......... .......... .......... 83% 164M 0s +#70 1.469 34150K .......... .......... .......... .......... .......... 83% 304M 0s +#70 1.470 34200K .......... .......... .......... .......... .......... 83% 294M 0s +#70 1.470 34250K .......... .......... .......... .......... .......... 83% 293M 0s +#70 1.470 34300K .......... .......... .......... .......... .......... 83% 323M 0s +#70 1.470 34350K .......... .......... .......... .......... .......... 83% 297M 0s +#70 1.470 34400K .......... .......... .......... .......... .......... 84% 339M 0s +#70 1.470 34450K .......... .......... .......... .......... .......... 84% 302M 0s +#70 1.471 34500K .......... .......... .......... .......... .......... 84% 180M 0s +#70 1.471 34550K .......... .......... .......... .......... .......... 84% 317M 0s +#70 1.471 34600K .......... .......... .......... .......... .......... 84% 207M 0s +#70 1.471 34650K .......... .......... .......... .......... .......... 84% 334M 0s +#70 1.471 34700K .......... .......... .......... .......... .......... 84% 103M 0s +#70 1.472 34750K .......... .......... .......... .......... .......... 84% 301M 0s +#70 1.472 34800K .......... .......... .......... .......... .......... 85% 335M 0s +#70 1.472 34850K .......... .......... .......... .......... .......... 85% 297M 0s +#70 1.472 34900K .......... .......... .......... .......... .......... 85% 111M 0s +#70 1.473 34950K .......... .......... .......... .......... .......... 85% 259M 0s +#70 1.473 35000K .......... .......... .......... .......... .......... 85% 331M 0s +#70 1.473 35050K .......... .......... .......... .......... .......... 85% 338M 0s +#70 1.473 35100K .......... .......... .......... .......... .......... 85% 112M 0s +#70 1.474 35150K .......... .......... .......... .......... .......... 85% 221M 0s +#70 1.474 35200K .......... .......... .......... .......... .......... 86% 262M 0s +#70 1.474 35250K .......... .......... .......... .......... .......... 86% 316M 0s +#70 1.474 35300K .......... .......... .......... .......... .......... 86% 338M 0s +#70 1.474 35350K .......... .......... .......... .......... .......... 86% 102M 0s +#70 1.475 35400K .......... .......... .......... .......... .......... 86% 290M 0s +#70 1.475 35450K .......... .......... .......... .......... .......... 86% 285M 0s +#70 1.475 35500K .......... .......... .......... .......... .......... 86% 339M 0s +#70 1.475 35550K .......... .......... .......... .......... .......... 86% 106M 0s +#70 1.476 35600K .......... .......... .......... .......... .......... 86% 265M 0s +#70 1.476 35650K .......... .......... .......... .......... .......... 87% 346M 0s +#70 1.476 35700K .......... .......... .......... .......... .......... 87% 297M 0s +#70 1.476 35750K .......... .......... .......... .......... .......... 87% 346M 0s +#70 1.476 35800K .......... .......... .......... .......... .......... 87% 246M 0s +#70 1.477 35850K .......... .......... .......... .......... .......... 87% 242M 0s +#70 1.477 35900K .......... .......... .......... .......... .......... 87% 317M 0s +#70 1.477 35950K .......... .......... .......... .......... .......... 87% 301M 0s +#70 1.477 36000K .......... .......... .......... .......... .......... 87% 342M 0s +#70 1.477 36050K .......... .......... .......... .......... .......... 88% 126M 0s +#70 1.478 36100K .......... .......... .......... .......... .......... 88% 272M 0s +#70 1.478 36150K .......... .......... .......... .......... .......... 88% 318M 0s +#70 1.478 36200K .......... .......... .......... .......... .......... 88% 283M 0s +#70 1.478 36250K .......... .......... .......... .......... .......... 88% 315M 0s +#70 1.478 36300K .......... .......... .......... .......... .......... 88% 330M 0s +#70 1.479 36350K .......... .......... .......... .......... .......... 88% 273M 0s +#70 1.479 36400K .......... .......... .......... .......... .......... 88% 298M 0s +#70 1.479 36450K .......... .......... .......... .......... .......... 89% 289M 0s +#70 1.479 36500K .......... .......... .......... .......... .......... 89% 3.36M 0s +#70 1.494 36550K .......... .......... .......... .......... .......... 89% 290M 0s +#70 1.494 36600K .......... .......... .......... .......... .......... 89% 203M 0s +#70 1.494 36650K .......... .......... .......... .......... .......... 89% 297M 0s +#70 1.494 36700K .......... .......... .......... .......... .......... 89% 103M 0s +#70 1.495 36750K .......... .......... .......... .......... .......... 89% 297M 0s +#70 1.495 36800K .......... .......... .......... .......... .......... 89% 310M 0s +#70 1.495 36850K .......... .......... .......... .......... .......... 90% 271M 0s +#70 1.495 36900K .......... .......... .......... .......... .......... 90% 306M 0s +#70 1.495 36950K .......... .......... .......... .......... .......... 90% 265M 0s +#70 1.495 37000K .......... .......... .......... .......... .......... 90% 309M 0s +#70 1.496 37050K .......... .......... .......... .......... .......... 90% 256M 0s +#70 1.496 37100K .......... .......... .......... .......... .......... 90% 153M 0s +#70 1.496 37150K .......... .......... .......... .......... .......... 90% 193M 0s +#70 1.496 37200K .......... .......... .......... .......... .......... 90% 292M 0s +#70 1.497 37250K .......... .......... .......... .......... .......... 91% 300M 0s +#70 1.497 37300K .......... .......... .......... .......... .......... 91% 317M 0s +#70 1.497 37350K .......... .......... .......... .......... .......... 91% 270M 0s +#70 1.497 37400K .......... .......... .......... .......... .......... 91% 324M 0s +#70 1.497 37450K .......... .......... .......... .......... .......... 91% 285M 0s +#70 1.497 37500K .......... .......... .......... .......... .......... 91% 339M 0s +#70 1.498 37550K .......... .......... .......... .......... .......... 91% 310M 0s +#70 1.498 37600K .......... .......... .......... .......... .......... 91% 105M 0s +#70 1.498 37650K .......... .......... .......... .......... .......... 91% 256M 0s +#70 1.498 37700K .......... .......... .......... .......... .......... 92% 286M 0s +#70 1.499 37750K .......... .......... .......... .......... .......... 92% 331M 0s +#70 1.499 37800K .......... .......... .......... .......... .......... 92% 324M 0s +#70 1.499 37850K .......... .......... .......... .......... .......... 92% 274M 0s +#70 1.499 37900K .......... .......... .......... .......... .......... 92% 197M 0s +#70 1.499 37950K .......... .......... .......... .......... .......... 92% 272M 0s +#70 1.499 38000K .......... .......... .......... .......... .......... 92% 314M 0s +#70 1.500 38050K .......... .......... .......... .......... .......... 92% 315M 0s +#70 1.500 38100K .......... .......... .......... .......... .......... 93% 145M 0s +#70 1.500 38150K .......... .......... .......... .......... .......... 93% 336M 0s +#70 1.500 38200K .......... .......... .......... .......... .......... 93% 200M 0s +#70 1.500 38250K .......... .......... .......... .......... .......... 93% 321M 0s +#70 1.501 38300K .......... .......... .......... .......... .......... 93% 328M 0s +#70 1.501 38350K .......... .......... .......... .......... .......... 93% 283M 0s +#70 1.501 38400K .......... .......... .......... .......... .......... 93% 252M 0s +#70 1.501 38450K .......... .......... .......... .......... .......... 93% 257M 0s +#70 1.501 38500K .......... .......... .......... .......... .......... 94% 310M 0s +#70 1.501 38550K .......... .......... .......... .......... .......... 94% 319M 0s +#70 1.502 38600K .......... .......... .......... .......... .......... 94% 187M 0s +#70 1.502 38650K .......... .......... .......... .......... .......... 94% 175M 0s +#70 1.502 38700K .......... .......... .......... .......... .......... 94% 268M 0s +#70 1.502 38750K .......... .......... .......... .......... .......... 94% 328M 0s +#70 1.503 38800K .......... .......... .......... .......... .......... 94% 327M 0s +#70 1.503 38850K .......... .......... .......... .......... .......... 94% 293M 0s +#70 1.503 38900K .......... .......... .......... .......... .......... 95% 283M 0s +#70 1.503 38950K .......... .......... .......... .......... .......... 95% 281M 0s +#70 1.503 39000K .......... .......... .......... .......... .......... 95% 322M 0s +#70 1.503 39050K .......... .......... .......... .......... .......... 95% 335M 0s +#70 1.503 39100K .......... .......... .......... .......... .......... 95% 137M 0s +#70 1.504 39150K .......... .......... .......... .......... .......... 95% 142M 0s +#70 1.504 39200K .......... .......... .......... .......... .......... 95% 296M 0s +#70 1.504 39250K .......... .......... .......... .......... .......... 95% 334M 0s +#70 1.504 39300K .......... .......... .......... .......... .......... 96% 105M 0s +#70 1.505 39350K .......... .......... .......... .......... .......... 96% 282M 0s +#70 1.505 39400K .......... .......... .......... .......... .......... 96% 304M 0s +#70 1.505 39450K .......... .......... .......... .......... .......... 96% 287M 0s +#70 1.505 39500K .......... .......... .......... .......... .......... 96% 113M 0s +#70 1.506 39550K .......... .......... .......... .......... .......... 96% 217M 0s +#70 1.506 39600K .......... .......... .......... .......... .......... 96% 294M 0s +#70 1.506 39650K .......... .......... .......... .......... .......... 96% 352M 0s +#70 1.506 39700K .......... .......... .......... .......... .......... 96% 140M 0s +#70 1.507 39750K .......... .......... .......... .......... .......... 97% 287M 0s +#70 1.507 39800K .......... .......... .......... .......... .......... 97% 329M 0s +#70 1.507 39850K .......... .......... .......... .......... .......... 97% 296M 0s +#70 1.507 39900K .......... .......... .......... .......... .......... 97% 163M 0s +#70 1.508 39950K .......... .......... .......... .......... .......... 97% 150M 0s +#70 1.508 40000K .......... .......... .......... .......... .......... 97% 335M 0s +#70 1.508 40050K .......... .......... .......... .......... .......... 97% 1.10M 0s +#70 1.553 40100K .......... .......... .......... .......... .......... 97% 235M 0s +#70 1.553 40150K .......... .......... .......... .......... .......... 98% 300M 0s +#70 1.553 40200K .......... .......... .......... .......... .......... 98% 264M 0s +#70 1.553 40250K .......... .......... .......... .......... .......... 98% 299M 0s +#70 1.553 40300K .......... .......... .......... .......... .......... 98% 306M 0s +#70 1.553 40350K .......... .......... .......... .......... .......... 98% 263M 0s +#70 1.554 40400K .......... .......... .......... .......... .......... 98% 312M 0s +#70 1.554 40450K .......... .......... .......... .......... .......... 98% 228M 0s +#70 1.554 40500K .......... .......... .......... .......... .......... 98% 319M 0s +#70 1.554 40550K .......... .......... .......... .......... .......... 99% 314M 0s +#70 1.554 40600K .......... .......... .......... .......... .......... 99% 189M 0s +#70 1.554 40650K .......... .......... .......... .......... .......... 99% 298M 0s +#70 1.555 40700K .......... .......... .......... .......... .......... 99% 273M 0s +#70 1.555 40750K .......... .......... .......... .......... .......... 99% 66.1M 0s +#70 1.556 40800K .......... .......... .......... .......... .......... 99% 206M 0s +#70 1.556 40850K .......... .......... .......... .......... .......... 99% 169M 0s +#70 1.556 40900K .......... .......... .......... .......... .......... 99% 226M 0s +#70 1.556 40950K .......... .......... .......... 100% 276M=1.1s +#70 1.556 +#70 1.556 2025-02-03 22:04:50 (38.0 MB/s) - ‘ffmpeg-git-amd64-static.tar.xz’ saved [41964060/41964060] +#70 1.556 +#70 1.562 ffmpeg-git-20240629-amd64-static/GPLv3.txt +#70 1.562 ffmpeg-git-20240629-amd64-static/manpages/ +#70 1.562 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-all.txt +#70 1.582 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-scaler.txt +#70 1.582 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-resampler.txt +#70 1.582 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-filters.txt +#70 1.583 ffmpeg-git-20240629-amd64-static/manpages/ffprobe.txt +#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-devices.txt +#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-utils.txt +#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-protocols.txt +#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-codecs.txt +#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-bitstream-filters.txt +#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg.txt +#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-formats.txt +#70 1.585 ffmpeg-git-20240629-amd64-static/ffprobe +#70 2.975 ffmpeg-git-20240629-amd64-static/qt-faststart +#70 2.978 ffmpeg-git-20240629-amd64-static/model/ +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_v0.6.1.json +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/ +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020.model +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005 +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015 +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016.model +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.model +#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011.model +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008 +#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010 +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018 +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002.model +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012.model +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003.model +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019 +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014.model +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018.model +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.json +#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1.json +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/ +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008.model +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018 +#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002 +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002.model +#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.json +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014 +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017.model +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019 +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009.model +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013 +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007.model +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016.model +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010 +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016 +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl.model +#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3.json +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1neg.json +#70 2.984 ffmpeg-git-20240629-amd64-static/model/000-PLEASE-README.TXT +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_float_4k_v0.6.1.json +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/ +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008.model +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012 +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002.model +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007.model +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011.model +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019 +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017.model +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017 +#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008 +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004.model +#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.json +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006 +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001.model +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016.model +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.model +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015 +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003.model +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011 +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016 +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003 +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014.model +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018.model +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001 +#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002 +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012.model +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.json +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_b_v0.6.3.json +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/ +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003 +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015.model +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001.model +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012 +#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019.model +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017 +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012.model +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003.model +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009.model +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016 +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008.model +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015 +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006 +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009 +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004.model +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017.model +#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.json +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010 +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010.model +#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006.model +#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019 +#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013 +#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018 +#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005.model +#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.json +#70 2.990 ffmpeg-git-20240629-amd64-static/model/other_models/ +#70 2.990 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl.model +#70 2.990 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl +#70 2.992 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v2.pkl +#70 2.993 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.json +#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl +#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl +#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/niqe_v0.1.pkl +#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl.model +#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl.model +#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl +#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl +#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl +#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl +#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.json +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.1mfz.json +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl.model +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl +#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl +#70 2.997 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v1.pkl +#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl.model +#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl +#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/model_V8a.model +#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl.model +#70 2.999 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl.model +#70 2.999 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl.model +#70 2.999 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.json +#70 2.999 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl.model +#70 2.999 ffmpeg-git-20240629-amd64-static/readme.txt +#70 2.999 ffmpeg-git-20240629-amd64-static/ffmpeg +#70 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 80.56 Collecting SQLAlchemy<3,>=1.4 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 80.60 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) +#54 80.89 Collecting dataclasses-json<0.7,>=0.5.7 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 80.92 Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) +#54 81.28 Collecting httpx-sse<0.5.0,>=0.4.0 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 81.32 Downloading httpx_sse-0.4.0-py3-none-any.whl.metadata (9.0 kB) +#54 81.66 Collecting langchain<0.4.0,>=0.3.16 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 81.69 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) +#54 82.03 Collecting langsmith<0.4,>=0.1.125 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 82.06 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) +#54 82.30 Collecting pydantic-settings<3.0.0,>=2.4.0 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 82.34 Downloading pydantic_settings-2.7.1-py3-none-any.whl.metadata (3.5 kB) +#54 82.62 Collecting huggingface-hub>=0.23.0 (from langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) +#54 82.66 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#54 82.95 Collecting tokenizers>=0.19.1 (from langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) +#54 82.99 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) +#54 83.27 Collecting transformers>=4.39.0 (from langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) +#54 83.32 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) +#54 83.74 Collecting pymilvus<3.0.0,>=2.5.0 (from langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) +#54 83.78 Downloading pymilvus-2.5.4-py3-none-any.whl.metadata (5.7 kB) +#54 83.94 Collecting deprecated>=1.2.9.3 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 83.98 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#54 84.22 Collecting dirtyjson<2.0.0,>=1.0.8 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 84.26 Downloading dirtyjson-1.0.8-py3-none-any.whl.metadata (11 kB) +#54 84.48 Collecting filetype<2.0.0,>=1.2.0 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 84.53 Downloading filetype-1.2.0-py2.py3-none-any.whl.metadata (6.5 kB) +#54 84.54 Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.11/site-packages (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) (2025.2.0) +#54 84.65 Collecting httpx (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 84.69 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#54 84.79 Collecting nest-asyncio<2.0.0,>=1.5.8 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 84.82 Downloading nest_asyncio-1.6.0-py3-none-any.whl.metadata (2.8 kB) +#54 85.07 Collecting nltk>3.8.1 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 85.10 Downloading nltk-3.9.1-py3-none-any.whl.metadata (2.9 kB) +#54 85.37 Collecting wrapt (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 85.39 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#54 85.72 Collecting llama-index-utils-huggingface<0.4.0,>=0.3.0 (from llama-index-embeddings-text-embeddings-inference->-r /home/user/comps/retrievers/src/requirements.txt (line 17)) +#54 85.75 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl.metadata (697 bytes) +#54 86.11 Collecting text-generation<0.8.0,>=0.7.0 (from llama-index-llms-text-generation-inference->-r /home/user/comps/retrievers/src/requirements.txt (line 20)) +#54 86.14 Downloading text_generation-0.7.0-py3-none-any.whl.metadata (8.5 kB) +#54 86.49 Collecting pytz (from neo4j->-r /home/user/comps/retrievers/src/requirements.txt (line 22)) +#54 86.51 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) +#54 86.66 Collecting urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19 (from opensearch-py->-r /home/user/comps/retrievers/src/requirements.txt (line 24)) +#54 86.72 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#54 87.03 Collecting certifi>=2024.07.04 (from opensearch-py->-r /home/user/comps/retrievers/src/requirements.txt (line 24)) +#54 87.06 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#54 87.30 Collecting Events (from opensearch-py->-r /home/user/comps/retrievers/src/requirements.txt (line 24)) +#54 87.32 Downloading Events-0.5-py3-none-any.whl.metadata (3.9 kB) +#54 87.63 Collecting click>=8.1 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 87.68 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#54 87.79 Collecting geopy>=2.4.0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 87.82 Downloading geopy-2.4.1-py3-none-any.whl.metadata (6.8 kB) +#54 87.97 Collecting h3>=4 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 88.00 Downloading h3-4.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) +#54 88.43 Collecting sqlglot==10.6.1 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 88.47 Downloading sqlglot-10.6.1-py3-none-any.whl.metadata (14 kB) +#54 88.80 Collecting pyarrow<19.0.0,>=10.0.0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 88.84 Downloading pyarrow-18.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) +#54 89.40 Collecting python-sat>=0.1.8.dev0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 89.44 Downloading python_sat-1.8.dev14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.metadata (1.5 kB) +#54 89.47 INFO: pip is looking at multiple versions of pathway to determine which version is compatible with other requirements. This could take a while. +#54 89.47 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 89.51 Downloading pathway-0.16.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 89.55 Collecting pyarrow>=10.0.0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 89.59 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) +#54 89.59 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 89.63 Downloading pathway-0.16.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 89.73 Downloading pathway-0.16.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 89.82 Downloading pathway-0.16.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 89.90 Downloading pathway-0.16.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.00 Downloading pathway-0.15.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.08 Downloading pathway-0.15.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.15 INFO: pip is still looking at multiple versions of pathway to determine which version is compatible with other requirements. This could take a while. +#54 90.18 Downloading pathway-0.15.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.24 Collecting h3<4,>=3.7.6 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 90.29 Downloading h3-3.7.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#54 90.30 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 90.33 Downloading pathway-0.15.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.39 Downloading pathway-0.15.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.45 Downloading pathway-0.14.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.51 Downloading pathway-0.14.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.54 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. +#54 90.57 Downloading pathway-0.14.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.64 Downloading pathway-0.14.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.74 Downloading pathway-0.13.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.82 Downloading pathway-0.13.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.88 Downloading pathway-0.13.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 90.97 Downloading pathway-0.12.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 91.04 Downloading pathway-0.11.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (38 kB) +#54 91.13 Downloading pathway-0.11.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (38 kB) +#54 91.37 Collecting numba>=0.56 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 91.41 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB) +#54 91.41 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 91.45 Downloading pathway-0.11.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (38 kB) +#54 91.52 Downloading pathway-0.10.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (37 kB) +#54 91.58 Downloading pathway-0.10.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (37 kB) +#54 91.66 Downloading pathway-0.9.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (37 kB) +#54 91.74 Downloading pathway-0.8.6-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (32 kB) +#54 91.82 Downloading pathway-0.8.5-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB) +#54 91.90 Downloading pathway-0.8.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#54 91.98 Downloading pathway-0.8.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#54 92.10 Downloading pathway-0.8.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#54 92.16 Downloading pathway-0.8.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#54 92.24 Downloading pathway-0.8.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) +#54 92.35 Downloading pathway-0.7.10-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) +#54 92.45 Downloading pathway-0.7.9-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 92.53 Downloading pathway-0.7.8-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 92.58 Downloading pathway-0.7.7-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 92.63 Downloading pathway-0.7.6-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 92.68 Downloading pathway-0.7.5-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 92.75 Downloading pathway-0.7.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 92.83 Downloading pathway-0.7.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 92.93 Downloading pathway-0.7.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 93.02 Downloading pathway-0.7.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 93.08 Downloading pathway-0.7.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) +#54 93.15 Downloading pathway-0.6.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB) +#54 93.20 Downloading pathway-0.5.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB) +#54 93.27 Downloading pathway-0.5.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) +#54 93.35 Downloading pathway-0.5.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) +#54 93.41 Downloading pathway-0.5.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) +#54 93.46 Downloading pathway-0.4.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) +#54 93.53 Downloading pathway-0.4.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) +#54 93.59 Downloading pathway-0.3.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) +#54 93.65 Downloading pathway-0.3.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) +#54 93.98 Collecting diskcache>=5.2.1 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 94.02 Downloading diskcache-5.6.3-py3-none-any.whl.metadata (20 kB) +#54 ... + +#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt +#68 35.59 Successfully installed Pillow-10.3.0 aiofiles-23.2.1 annotated-types-0.7.0 anyio-4.8.0 certifi-2025.1.31 charset-normalizer-3.4.1 click-8.1.8 decorator-4.4.2 fastapi-0.115.8 ffmpy-0.5.0 filelock-3.17.0 fsspec-2025.2.0 gradio-5.5.0 gradio-client-1.4.2 gradio_pdf-0.0.19 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface-hub-0.28.1 idna-3.10 imageio-2.37.0 imageio_ffmpeg-0.6.0 jinja2-3.1.5 markdown-it-py-3.0.0 markupsafe-2.1.5 mdurl-0.1.2 moviepy-1.0.3 numpy-1.26.4 opencv-python-4.10.0.82 orjson-3.10.15 packaging-24.2 pandas-2.2.3 proglog-0.1.10 pydantic-2.10.6 pydantic-core-2.27.2 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 python-multipart-0.0.12 pytz-2025.1 pyyaml-6.0.2 requests-2.32.3 rich-13.9.4 ruff-0.9.4 safehttpx-0.1.6 semantic-version-2.10.0 shellingham-1.5.4 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 tomlkit-0.12.0 tqdm-4.67.1 typer-0.15.1 typing-extensions-4.12.2 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 websockets-12.0 +#68 35.59 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#68 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 94.30 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/retrievers/src/requirements.txt (line 27)) +#54 94.34 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#54 94.46 Collecting annotated-types>=0.6.0 (from pydantic->-r /home/user/comps/retrievers/src/requirements.txt (line 30)) +#54 94.50 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#54 95.28 Collecting pydantic-core==2.27.2 (from pydantic->-r /home/user/comps/retrievers/src/requirements.txt (line 30)) +#54 95.31 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#54 95.44 Collecting packaging>=21.3 (from pytesseract->-r /home/user/comps/retrievers/src/requirements.txt (line 32)) +#54 95.47 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#54 95.73 Collecting lxml>=3.1.0 (from python-docx->-r /home/user/comps/retrievers/src/requirements.txt (line 33)) +#54 95.77 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#54 95.94 Collecting XlsxWriter>=0.5.7 (from python-pptx->-r /home/user/comps/retrievers/src/requirements.txt (line 35)) +#54 95.98 Downloading XlsxWriter-3.2.2-py3-none-any.whl.metadata (2.8 kB) +#54 96.25 Collecting qdrant-client>=1.10.0 (from qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 96.29 Downloading qdrant_client-1.13.2-py3-none-any.whl.metadata (10 kB) +#54 97.02 Collecting regex>=2022.1.18 (from tiktoken->-r /home/user/comps/retrievers/src/requirements.txt (line 40)) +#54 97.06 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#54 97.34 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/retrievers/src/requirements.txt (line 41)) +#54 97.38 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#54 ... + +#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt +#68 DONE 49.1s + +#70 [opea/dataprep:latest 3/8] RUN cd /root && wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ +#70 DONE 17.4s + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 97.65 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 97.70 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#54 97.99 Collecting aiosignal>=1.1.2 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 98.03 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#54 98.13 Collecting attrs>=17.3.0 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 98.16 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#54 98.31 Collecting frozenlist>=1.1.1 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 98.34 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#54 98.75 Collecting multidict<7.0,>=4.5 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 98.81 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#54 ... + +#71 [opea/multimodalqna-ui:latest 8/8] WORKDIR /home/user/gradio +#71 DONE 1.5s + +#72 [opea/multimodalqna-ui:latest] exporting to image +#72 exporting layers +#72 ... + +#73 [opea/dataprep:latest 4/8] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ +#73 DONE 1.6s + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 99.16 Collecting yarl<2.0,>=1.12.0 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 99.21 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#54 ... + +#74 [opea/dataprep:latest 5/8] COPY comps /home/user/comps +#74 DONE 0.4s + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 99.55 Collecting six (from anytree<3.0.0,>=2.12.1->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 99.59 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#54 99.76 Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses-json<0.7,>=0.5.7->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 99.81 Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) +#54 100.1 Collecting elastic-transport<9,>=8.15.1 (from elasticsearch<9.0.0,>=8.13.1->elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) +#54 100.1 Downloading elastic_transport-8.17.0-py3-none-any.whl.metadata (3.6 kB) +#54 100.8 Collecting simsimd>=3 (from elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) +#54 100.9 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (66 kB) +#54 101.1 Collecting smart-open>=1.8.1 (from gensim<5.0.0,>=4.3.2->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 101.1 Downloading smart_open-7.1.0-py3-none-any.whl.metadata (24 kB) +#54 101.2 Collecting anyio (from httpx->llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 101.3 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#54 101.4 Collecting httpcore==1.* (from httpx->llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 101.4 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#54 101.5 Collecting idna (from httpx->llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) +#54 101.6 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#54 101.6 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from huggingface-hub>=0.23.0->langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) (3.17.0) +#54 101.9 Collecting autograd>=1.3 (from hyppo<0.5.0,>=0.4.0->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 101.9 Downloading autograd-1.7.0-py3-none-any.whl.metadata (7.5 kB) +#54 102.2 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 102.2 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) +#54 102.5 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 102.6 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) +#54 102.7 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 102.7 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) +#54 103.0 Collecting langchain-text-splitters<0.4.0,>=0.3.3 (from langchain<0.4.0,>=0.3.16->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 103.0 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) +#54 103.2 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.0->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) +#54 103.3 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) +#54 103.5 Collecting pytest<9,>=7 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 103.5 Downloading pytest-8.3.4-py3-none-any.whl.metadata (7.5 kB) +#54 ... + +#72 [opea/multimodalqna-ui:latest] exporting to image +#72 exporting layers 4.6s done +#72 writing image sha256:06306deb1d8f40962011b7b0d5682d6dedc13481ebea18ccca6ce417d165a1b0 0.0s done +#72 naming to docker.io/opea/multimodalqna-ui:latest 0.0s done +#72 DONE 4.7s + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 103.6 Collecting pytest-asyncio<1,>=0.20 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 103.7 Downloading pytest_asyncio-0.25.3-py3-none-any.whl.metadata (3.9 kB) +#54 103.9 Collecting pytest-socket<1,>=0.6.0 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 103.9 Downloading pytest_socket-0.7.0-py3-none-any.whl.metadata (6.7 kB) +#54 104.2 Collecting syrupy<5,>=4 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 104.2 Downloading syrupy-4.8.1-py3-none-any.whl.metadata (36 kB) +#54 104.6 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.125->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 104.6 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) +#54 104.9 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 105.0 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) +#54 105.2 Collecting contourpy>=1.0.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 105.2 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.4 kB) +#54 105.3 Collecting cycler>=0.10 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 105.3 Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB) +#54 105.6 Collecting fonttools>=4.22.0 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 105.6 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (101 kB) +#54 105.9 Collecting kiwisolver>=1.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 105.9 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) +#54 106.1 Collecting pyparsing>=2.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 106.1 Downloading pyparsing-3.2.1-py3-none-any.whl.metadata (5.0 kB) +#54 106.3 Collecting llvmlite<0.45,>=0.44.0dev0 (from numba>=0.56->pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) +#54 106.4 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.8 kB) +#54 106.5 Collecting distro<2,>=1.7.0 (from openai>=1.1.0->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 106.5 Downloading distro-1.9.0-py3-none-any.whl.metadata (6.8 kB) +#54 106.8 Collecting jiter<1,>=0.4.0 (from openai>=1.1.0->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 106.8 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) +#54 107.1 Collecting sniffio (from openai>=1.1.0->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 107.2 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#54 107.5 Collecting tzdata>=2022.7 (from pandas->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 107.5 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) +#54 107.8 Collecting pinecone-plugin-inference<4.0.0,>=2.0.0 (from pinecone<6.0.0,>=5.4.0->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 107.8 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl.metadata (2.2 kB) +#54 108.1 Collecting pinecone-plugin-interface<0.0.8,>=0.0.7 (from pinecone<6.0.0,>=5.4.0->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 108.1 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl.metadata (1.2 kB) +#54 108.5 Collecting python-dotenv>=0.21.0 (from pydantic-settings<3.0.0,>=2.4.0->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 108.5 Downloading python_dotenv-1.0.1-py3-none-any.whl.metadata (23 kB) +#54 108.6 Requirement already satisfied: setuptools>69 in /usr/local/lib/python3.11/site-packages (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) (75.8.0) +#54 109.2 Collecting grpcio<=1.67.1,>=1.49.1 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) +#54 109.3 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#54 109.4 Collecting ujson>=2.0.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) +#54 109.5 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.3 kB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#0 1.580 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) +#0 1.717 Collecting pip +#0 1.771 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) +#0 1.775 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) +#0 2.050 Collecting setuptools +#0 2.058 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) +#0 2.116 Downloading pip-25.0-py3-none-any.whl (1.8 MB) +#0 2.207 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 20.8 MB/s eta 0:00:00 +#0 2.216 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) +#0 2.248 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 40.5 MB/s eta 0:00:00 +#0 2.392 Installing collected packages: setuptools, pip +#0 2.392 Attempting uninstall: setuptools +#0 2.395 Found existing installation: setuptools 65.5.1 +#0 2.414 Uninstalling setuptools-65.5.1: +#0 2.469 Successfully uninstalled setuptools-65.5.1 +#0 3.218 Attempting uninstall: pip +#0 3.221 Found existing installation: pip 24.0 +#0 3.280 Uninstalling pip-24.0: +#0 3.458 Successfully uninstalled pip-24.0 +#0 4.700 Successfully installed pip-25.0 setuptools-75.8.0 +#0 4.700 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#0 5.334 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu +#0 5.801 Collecting torch +#0 5.807 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (26 kB) +#0 6.332 Collecting torchvision +#0 6.339 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (6.1 kB) +#0 6.456 Collecting filelock (from torch) +#0 6.520 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) +#0 6.633 Collecting typing-extensions>=4.10.0 (from torch) +#0 6.640 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) +#0 6.769 Collecting networkx (from torch) +#0 6.779 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#0 7.032 Collecting jinja2 (from torch) +#0 7.042 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) +#0 7.301 Collecting fsspec (from torch) +#0 7.312 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) +#0 7.594 Collecting sympy==1.13.1 (from torch) +#0 7.604 Downloading https://download.pytorch.org/whl/sympy-1.13.1-py3-none-any.whl (6.2 MB) +#0 7.696 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 69.2 MB/s eta 0:00:00 +#0 7.999 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch) +#0 8.005 Downloading https://download.pytorch.org/whl/mpmath-1.3.0-py3-none-any.whl (536 kB) +#0 8.011 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 130.5 MB/s eta 0:00:00 +#0 8.519 Collecting numpy (from torchvision) +#0 8.530 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#0 9.073 Collecting pillow!=8.3.*,>=5.3.0 (from torchvision) +#0 9.084 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) +#0 9.258 Collecting MarkupSafe>=2.0 (from jinja2->torch) +#0 9.269 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#0 9.281 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl (178.7 MB) +#0 9.889 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.7/178.7 MB 295.2 MB/s eta 0:00:00 +#0 9.896 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl (1.8 MB) +#0 9.912 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 130.2 MB/s eta 0:00:00 +#0 9.923 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#0 9.976 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 99.1 MB/s eta 0:00:00 +#0 9.981 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#0 9.992 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#0 10.00 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) +#0 10.01 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) +#0 10.03 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#0 10.04 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 133.1 MB/s eta 0:00:00 +#0 10.05 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) +#75 10.15 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 174.5 MB/s eta 0:00:00 +#75 10.16 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 109.7 Collecting milvus-lite>=2.4.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) +#54 109.8 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl.metadata (9.2 kB) +#54 110.6 Collecting grpcio-tools>=1.41.0 (from qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 110.6 Downloading grpcio_tools-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 110.9 Collecting portalocker<3.0.0,>=2.7.0 (from qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 110.9 Downloading https://download.pytorch.org/whl/portalocker-2.10.1-py3-none-any.whl (18 kB) +#54 111.1 Collecting charset-normalizer<4,>=2 (from requests->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 111.2 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#54 111.3 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 111.4 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#54 111.5 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 111.5 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#54 111.7 Collecting threadpoolctl>=3.1.0 (from scikit-learn<2.0.0,>=1.4.2->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 111.7 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) +#54 112.1 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) +#54 112.2 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#54 112.5 Collecting patsy>=0.5.6 (from statsmodels<0.15.0,>=0.14.2->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 112.5 Downloading patsy-1.0.1-py2.py3-none-any.whl.metadata (3.3 kB) +#54 112.7 Requirement already satisfied: sympy==1.13.1 in /usr/local/lib/python3.11/site-packages (from torch->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (1.13.1) +#54 112.7 Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.11/site-packages (from sympy==1.13.1->torch->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (1.3.0) +#54 113.1 Collecting safetensors>=0.4.1 (from transformers>=4.39.0->langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) +#54 113.2 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#54 113.5 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 113.5 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) +#54 113.8 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 113.8 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) +#54 114.1 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 114.1 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) +#54 114.3 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 114.3 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) +#54 114.6 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 114.7 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) +#54 114.9 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 114.9 Downloading pycollada-0.8.tar.gz (108 kB) +#54 115.1 Preparing metadata (setup.py): started +#54 115.6 Preparing metadata (setup.py): finished with status 'done' +#54 115.8 Collecting xxhash (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 115.8 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) +#54 115.9 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 116.0 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) +#54 116.2 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 116.2 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) +#54 116.5 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 116.5 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#54 116.8 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 116.8 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) +#54 117.1 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 117.1 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) +#54 117.4 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 117.4 Downloading https://download.pytorch.org/whl/mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#54 117.7 Collecting pynndescent>=0.5 (from umap-learn<0.6.0,>=0.5.6->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) +#54 117.7 Downloading pynndescent-0.5.13-py3-none-any.whl.metadata (6.8 kB) +#54 118.1 Collecting soupsieve>1.2 (from beautifulsoup4->bs4->-r /home/user/comps/retrievers/src/requirements.txt (line 1)) +#54 118.1 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB) +#54 118.4 Collecting cffi>=1.1.0 (from cairocffi->cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 118.5 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB) +#54 118.7 Collecting webencodings (from cssselect2->cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 118.8 Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB) +#54 118.8 Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.11/site-packages (from jinja2->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (3.0.2) +#54 119.2 Collecting monotonic>=1.5 (from posthog->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 119.2 Downloading monotonic-1.6-py2.py3-none-any.whl.metadata (1.5 kB) +#54 ... + +#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi +#69 60.23 Successfully installed aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 datasets-3.2.0 deprecated-1.2.18 dill-0.3.8 docarray-0.40.0 embreex-2.17.7.post6 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2024.9.0 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface-hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 multidict-6.1.0 multiprocess-0.70.16 mypy-extensions-1.0.0 networkx-3.4.2 numpy-2.2.2 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pyarrow-19.0.0 pycollada-0.8 pydantic-2.7.2 pydantic-core-2.18.3 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 python-multipart-0.0.20 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scipy-1.15.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 tokenizers-0.21.0 tqdm-4.67.1 transformers-4.48.2 trimesh-4.6.1 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zhconv-1.4.3 zipp-3.21.0 +#69 60.23 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#69 61.31 Looking in indexes: https://download.pytorch.org/whl/cpu +#69 61.68 Collecting torch +#69 61.69 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (26 kB) +#69 62.02 Collecting torchvision +#69 62.02 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (6.1 kB) +#69 62.03 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from torch) (3.17.0) +#69 62.03 Requirement already satisfied: typing-extensions>=4.10.0 in /usr/local/lib/python3.11/site-packages (from torch) (4.12.2) +#69 62.03 Requirement already satisfied: networkx in /usr/local/lib/python3.11/site-packages (from torch) (3.4.2) +#69 62.12 Collecting jinja2 (from torch) +#69 62.14 Downloading https://download.pytorch.org/whl/Jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB) +#69 62.14 Requirement already satisfied: fsspec in /usr/local/lib/python3.11/site-packages (from torch) (2024.9.0) +#69 62.39 Collecting sympy==1.13.1 (from torch) +#69 62.40 Downloading https://download.pytorch.org/whl/sympy-1.13.1-py3-none-any.whl (6.2 MB) +#69 62.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 237.4 MB/s eta 0:00:00 +#69 62.72 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch) +#69 62.73 Downloading https://download.pytorch.org/whl/mpmath-1.3.0-py3-none-any.whl (536 kB) +#69 62.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 287.6 MB/s eta 0:00:00 +#69 62.74 Requirement already satisfied: numpy in /usr/local/lib/python3.11/site-packages (from torchvision) (2.2.2) +#69 62.74 Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /usr/local/lib/python3.11/site-packages (from torchvision) (11.1.0) +#69 63.03 Collecting MarkupSafe>=2.0 (from jinja2->torch) +#69 63.03 Downloading https://download.pytorch.org/whl/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB) +#69 63.06 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl (178.7 MB) +#69 63.71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.7/178.7 MB 273.5 MB/s eta 0:00:00 +#69 63.72 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl (1.8 MB) +#69 63.73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 365.8 MB/s eta 0:00:00 +#69 63.73 Downloading https://download.pytorch.org/whl/Jinja2-3.1.4-py3-none-any.whl (133 kB) +#69 64.78 Installing collected packages: mpmath, sympy, MarkupSafe, jinja2, torch, torchvision +#69 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 10.91 Installing collected packages: mpmath, typing-extensions, sympy, pillow, numpy, networkx, MarkupSafe, fsspec, filelock, jinja2, torch, torchvision +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 119.3 Collecting backoff>=1.10.0 (from posthog->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) +#54 119.4 Downloading backoff-2.2.1-py3-none-any.whl.metadata (14 kB) +#54 119.7 Collecting imageio!=2.35.0,>=2.33 (from scikit-image->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 119.8 Downloading imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB) +#54 120.1 Collecting tifffile>=2022.8.12 (from scikit-image->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 120.1 Downloading tifffile-2025.1.10-py3-none-any.whl.metadata (31 kB) +#54 120.4 Collecting lazy-loader>=0.4 (from scikit-image->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) +#54 120.4 Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) +#54 120.6 Collecting pycparser (from cffi>=1.1.0->cairocffi->cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) +#54 120.7 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes) +#54 120.8 INFO: pip is looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. +#54 120.8 Collecting grpcio-tools>=1.41.0 (from qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 120.8 Downloading grpcio_tools-1.69.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 120.9 Downloading grpcio_tools-1.68.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 120.9 Downloading grpcio_tools-1.68.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 120.9 Downloading grpcio_tools-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.0 Downloading grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.0 Downloading grpcio_tools-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.0 Downloading grpcio_tools-1.66.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.0 INFO: pip is still looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. +#54 121.1 Downloading grpcio_tools-1.66.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.1 Downloading grpcio_tools-1.65.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.1 Downloading grpcio_tools-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.2 Downloading grpcio_tools-1.65.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.2 Downloading grpcio_tools-1.65.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.2 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. +#54 121.2 Downloading grpcio_tools-1.64.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.3 Downloading grpcio_tools-1.64.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.3 Downloading grpcio_tools-1.64.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.3 Downloading grpcio_tools-1.63.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.4 Downloading grpcio_tools-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#54 121.4 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) +#54 121.6 Collecting h2<5,>=3 (from httpx[http2]>=0.20.0->qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 121.6 Downloading h2-4.2.0-py3-none-any.whl.metadata (5.1 kB) +#54 121.9 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.0->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) +#54 121.9 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) +#54 122.2 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 122.3 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#54 122.6 Collecting iniconfig (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 122.6 Downloading iniconfig-2.0.0-py3-none-any.whl.metadata (2.6 kB) +#54 122.7 Collecting pluggy<2,>=1.5 (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 122.7 Downloading pluggy-1.5.0-py3-none-any.whl.metadata (4.8 kB) +#54 123.1 Collecting propcache>=0.2.0 (from yarl<2.0,>=1.12.0->aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) +#54 123.1 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#54 123.3 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 123.4 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) +#54 123.5 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 123.5 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) +#54 123.9 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) +#54 123.9 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) +#54 124.1 Collecting hyperframe<7,>=6.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 124.1 Downloading hyperframe-6.1.0-py3-none-any.whl.metadata (4.3 kB) +#54 124.2 Collecting hpack<5,>=4.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) +#54 124.3 Downloading hpack-4.1.0-py3-none-any.whl.metadata (4.6 kB) +#54 124.5 Downloading haystack_ai-2.3.1-py3-none-any.whl (350 kB) +#54 124.8 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl (311 kB) +#54 125.2 Downloading vdms-0.0.21-py3-none-any.whl (4.6 kB) +#54 125.2 Downloading bs4-0.0.2-py2.py3-none-any.whl (1.2 kB) +#54 125.2 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +#54 125.3 Downloading easyocr-1.7.2-py3-none-any.whl (2.9 MB) +#54 126.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 2.6 MB/s eta 0:00:00 +#54 126.6 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#54 126.6 Downloading future-1.0.0-py3-none-any.whl (491 kB) +#54 126.8 Downloading graspologic-3.4.1-py3-none-any.whl (5.2 MB) +#54 128.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/5.2 MB 4.0 MB/s eta 0:00:00 +#54 128.2 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.4 MB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 29.86 Successfully installed MarkupSafe-3.0.2 filelock-3.17.0 fsspec-2025.2.0 jinja2-3.1.5 mpmath-1.3.0 networkx-3.4.2 numpy-2.2.2 pillow-11.1.0 sympy-1.13.1 torch-2.6.0+cpu torchvision-0.21.0+cpu typing-extensions-4.12.2 +#75 29.86 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#75 30.74 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu +#75 31.11 Collecting beautifulsoup4 (from -r /home/user/comps/dataprep/src/requirements.txt (line 1)) +#75 31.16 Downloading beautifulsoup4-4.13.1-py3-none-any.whl.metadata (3.8 kB) +#75 31.27 Collecting cairosvg (from -r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 31.29 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +#75 31.39 Collecting decord (from -r /home/user/comps/dataprep/src/requirements.txt (line 3)) +#75 31.40 Downloading decord-0.6.0-py3-none-manylinux2010_x86_64.whl.metadata (422 bytes) +#75 31.66 Collecting docx2txt (from -r /home/user/comps/dataprep/src/requirements.txt (line 5)) +#75 31.67 Downloading docx2txt-0.8.tar.gz (2.8 kB) +#75 31.67 Preparing metadata (setup.py): started +#75 31.89 Preparing metadata (setup.py): finished with status 'done' +#75 32.16 Collecting easyocr (from -r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 32.17 Downloading easyocr-1.7.2-py3-none-any.whl.metadata (10 kB) +#75 32.42 Collecting einops (from -r /home/user/comps/dataprep/src/requirements.txt (line 7)) +#75 32.42 Downloading einops-0.8.0-py3-none-any.whl.metadata (12 kB) +#75 32.57 Collecting elasticsearch (from -r /home/user/comps/dataprep/src/requirements.txt (line 8)) +#75 32.58 Downloading elasticsearch-8.17.1-py3-none-any.whl.metadata (8.8 kB) +#75 32.87 Collecting fastapi (from -r /home/user/comps/dataprep/src/requirements.txt (line 9)) +#75 32.88 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) +#75 33.15 Collecting future (from -r /home/user/comps/dataprep/src/requirements.txt (line 10)) +#75 33.16 Downloading future-1.0.0-py3-none-any.whl.metadata (4.0 kB) +#75 33.27 Collecting graspologic (from -r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 33.28 Downloading graspologic-3.4.1-py3-none-any.whl.metadata (5.8 kB) +#75 33.53 Collecting html2text (from -r /home/user/comps/dataprep/src/requirements.txt (line 12)) +#75 33.53 Downloading html2text-2024.2.26.tar.gz (56 kB) +#75 33.61 Preparing metadata (setup.py): started +#75 33.85 Preparing metadata (setup.py): finished with status 'done' +#75 34.14 Collecting huggingface_hub (from -r /home/user/comps/dataprep/src/requirements.txt (line 13)) +#75 34.15 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) +#75 34.31 Collecting ipython (from -r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 34.31 Downloading ipython-8.32.0-py3-none-any.whl.metadata (5.0 kB) +#75 34.51 Collecting langchain (from -r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 34.52 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) +#75 34.78 Collecting langchain-community (from -r /home/user/comps/dataprep/src/requirements.txt (line 16)) +#75 34.79 Downloading langchain_community-0.3.16-py3-none-any.whl.metadata (2.9 kB) +#75 35.04 Collecting langchain-elasticsearch (from -r /home/user/comps/dataprep/src/requirements.txt (line 17)) +#75 35.05 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl.metadata (8.3 kB) +#75 35.33 Collecting langchain-experimental (from -r /home/user/comps/dataprep/src/requirements.txt (line 18)) +#75 35.34 Downloading langchain_experimental-0.3.4-py3-none-any.whl.metadata (1.7 kB) +#75 35.45 Collecting langchain-openai (from -r /home/user/comps/dataprep/src/requirements.txt (line 19)) +#75 35.46 Downloading langchain_openai-0.3.3-py3-none-any.whl.metadata (2.7 kB) +#75 ... + +#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi +#69 79.84 Successfully installed MarkupSafe-2.1.5 jinja2-3.1.4 mpmath-1.3.0 sympy-1.13.1 torch-2.6.0+cpu torchvision-0.21.0+cpu +#69 79.84 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#69 80.64 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu +#69 80.64 Requirement already satisfied: datasets in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 1)) (3.2.0) +#69 80.64 Requirement already satisfied: fastapi in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 3)) (0.115.8) +#69 80.64 Requirement already satisfied: opentelemetry-api in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 4)) (1.29.0) +#69 80.64 Requirement already satisfied: opentelemetry-exporter-otlp in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) +#69 80.64 Requirement already satisfied: opentelemetry-sdk in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 6)) (1.29.0) +#69 80.64 Requirement already satisfied: prometheus-fastapi-instrumentator in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 7)) (7.0.2) +#69 80.64 Requirement already satisfied: pydantic==2.7.2 in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 8)) (2.7.2) +#69 80.64 Requirement already satisfied: pydub in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 9)) (0.25.1) +#69 80.64 Requirement already satisfied: python-multipart in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 10)) (0.0.20) +#69 80.64 Requirement already satisfied: shortuuid in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 11)) (1.0.13) +#69 80.64 Requirement already satisfied: transformers in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 12)) (4.48.2) +#69 80.64 Requirement already satisfied: uvicorn in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 13)) (0.34.0) +#69 80.65 Requirement already satisfied: zhconv in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 14)) (1.4.3) +#69 80.65 Requirement already satisfied: docarray[full] in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 2)) (0.40.0) +#69 80.65 Requirement already satisfied: annotated-types>=0.4.0 in /usr/local/lib/python3.11/site-packages (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) (0.7.0) +#69 80.65 Requirement already satisfied: pydantic-core==2.18.3 in /usr/local/lib/python3.11/site-packages (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) (2.18.3) +#69 80.65 Requirement already satisfied: typing-extensions>=4.6.1 in /usr/local/lib/python3.11/site-packages (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) (4.12.2) +#69 80.67 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.17.0) +#69 80.67 Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.2.2) +#69 80.67 Requirement already satisfied: pyarrow>=15.0.0 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (19.0.0) +#69 80.67 Requirement already satisfied: dill<0.3.9,>=0.3.0 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.3.8) +#69 80.67 Requirement already satisfied: pandas in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.2.3) +#69 80.67 Requirement already satisfied: requests>=2.32.2 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.32.3) +#69 80.67 Requirement already satisfied: tqdm>=4.66.3 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (4.67.1) +#69 80.67 Requirement already satisfied: xxhash in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.5.0) +#69 80.67 Requirement already satisfied: multiprocess<0.70.17 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.70.16) +#69 80.67 Requirement already satisfied: fsspec<=2024.9.0,>=2023.1.0 in /usr/local/lib/python3.11/site-packages (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2024.9.0) +#69 80.67 Requirement already satisfied: aiohttp in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.11.11) +#69 80.67 Requirement already satisfied: huggingface-hub>=0.23.0 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.28.1) +#69 80.67 Requirement already satisfied: packaging in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (24.2) +#69 80.67 Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (6.0.2) +#69 80.68 Requirement already satisfied: av>=10.0.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (14.1.0) +#69 80.68 Requirement already satisfied: jax>=0.4.10 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.5.0) +#69 80.68 Requirement already satisfied: lz4>=1.0.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (4.4.3) +#69 80.68 Requirement already satisfied: orjson>=3.8.2 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.10.15) +#69 80.68 Requirement already satisfied: pillow>=9.3.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (11.1.0) +#69 80.68 Requirement already satisfied: protobuf>=3.20.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (5.29.3) +#69 80.68 Requirement already satisfied: rich>=13.1.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (13.9.4) +#69 80.68 Requirement already satisfied: trimesh>=3.17.1 in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (4.6.1) +#69 80.68 Requirement already satisfied: types-pillow>=9.3.0.1 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (10.2.0.20240822) +#69 80.69 Requirement already satisfied: types-requests>=2.28.11.6 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.32.0.20241016) +#69 80.69 Requirement already satisfied: typing-inspect>=0.8.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.9.0) +#69 80.69 Requirement already satisfied: starlette<0.46.0,>=0.40.0 in /usr/local/lib/python3.11/site-packages (from fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) (0.45.3) +#69 80.69 Requirement already satisfied: deprecated>=1.2.6 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (1.2.18) +#69 80.69 Requirement already satisfied: importlib-metadata<=8.5.0,>=6.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (8.5.0) +#69 80.70 Requirement already satisfied: opentelemetry-exporter-otlp-proto-grpc==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) +#69 80.70 Requirement already satisfied: opentelemetry-exporter-otlp-proto-http==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) +#69 80.70 Requirement already satisfied: googleapis-common-protos~=1.52 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.66.0) +#69 80.70 Requirement already satisfied: grpcio<2.0.0,>=1.63.2 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.70.0) +#69 80.70 Requirement already satisfied: opentelemetry-exporter-otlp-proto-common==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) +#69 80.70 Requirement already satisfied: opentelemetry-proto==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) +#69 80.71 Requirement already satisfied: opentelemetry-semantic-conventions==0.50b0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-sdk->-r /home/user/comps/asr/src/requirements.txt (line 6)) (0.50b0) +#69 80.72 Requirement already satisfied: prometheus-client<1.0.0,>=0.8.0 in /usr/local/lib/python3.11/site-packages (from prometheus-fastapi-instrumentator->-r /home/user/comps/asr/src/requirements.txt (line 7)) (0.21.1) +#69 80.77 Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.11/site-packages (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) (2024.11.6) +#69 80.77 Requirement already satisfied: tokenizers<0.22,>=0.21 in /usr/local/lib/python3.11/site-packages (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) (0.21.0) +#69 80.77 Requirement already satisfied: safetensors>=0.4.1 in /usr/local/lib/python3.11/site-packages (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) (0.5.2) +#69 80.77 Requirement already satisfied: click>=7.0 in /usr/local/lib/python3.11/site-packages (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) (8.1.8) +#69 80.77 Requirement already satisfied: h11>=0.8 in /usr/local/lib/python3.11/site-packages (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) (0.14.0) +#69 80.78 Requirement already satisfied: wrapt<2,>=1.10 in /usr/local/lib/python3.11/site-packages (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (1.17.2) +#69 80.80 Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.4.4) +#69 80.81 Requirement already satisfied: aiosignal>=1.1.2 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.3.2) +#69 80.81 Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (25.1.0) +#69 80.81 Requirement already satisfied: frozenlist>=1.1.1 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.5.0) +#69 80.81 Requirement already satisfied: multidict<7.0,>=4.5 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (6.1.0) +#69 80.81 Requirement already satisfied: propcache>=0.2.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.2.1) +#69 80.81 Requirement already satisfied: yarl<2.0,>=1.17.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.18.3) +#69 80.83 Requirement already satisfied: zipp>=3.20 in /usr/local/lib/python3.11/site-packages (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (3.21.0) +#69 80.83 Requirement already satisfied: jaxlib<=0.5.0,>=0.5.0 in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.5.0) +#69 80.83 Requirement already satisfied: ml_dtypes>=0.4.0 in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.5.1) +#69 80.83 Requirement already satisfied: opt_einsum in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.4.0) +#69 80.83 Requirement already satisfied: scipy>=1.11.1 in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.15.1) +#69 80.87 Requirement already satisfied: python-dateutil>=2.8.2 in /usr/local/lib/python3.11/site-packages (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.9.0.post0) +#69 80.87 Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.11/site-packages (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2025.1) +#69 80.87 Requirement already satisfied: tzdata>=2022.7 in /usr/local/lib/python3.11/site-packages (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2025.1) +#69 80.89 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.4.1) +#69 80.89 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.10) +#69 80.89 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.3.0) +#69 80.89 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2025.1.31) +#69 80.89 Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.11/site-packages (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.0.0) +#69 80.89 Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /usr/local/lib/python3.11/site-packages (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.19.1) +#69 80.90 Requirement already satisfied: anyio<5,>=3.6.2 in /usr/local/lib/python3.11/site-packages (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) (4.8.0) +#69 80.92 Requirement already satisfied: colorlog in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (6.9.0) +#69 80.92 Requirement already satisfied: manifold3d>=2.3.0 in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.0.1) +#69 80.92 Requirement already satisfied: chardet in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (5.2.0) +#69 80.92 Requirement already satisfied: lxml in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (5.3.0) +#69 80.92 Requirement already satisfied: jsonschema in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (4.23.0) +#69 80.92 Requirement already satisfied: networkx in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.4.2) +#69 80.92 Requirement already satisfied: svg.path in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (6.3) +#69 80.92 Requirement already satisfied: pycollada in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.8) +#69 80.92 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (75.8.0) +#69 80.93 Requirement already satisfied: shapely in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.0.7) +#69 80.93 Requirement already satisfied: rtree in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.3.0) +#69 80.93 Requirement already satisfied: httpx in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.28.1) +#69 80.93 Requirement already satisfied: embreex in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.17.7.post6) +#69 80.93 Requirement already satisfied: xatlas in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.0.9) +#69 80.93 Requirement already satisfied: vhacdx in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.0.8.post1) +#69 80.93 Requirement already satisfied: mapbox_earcut>=1.0.2 in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.0.3) +#69 80.94 Requirement already satisfied: mypy-extensions>=0.3.0 in /usr/local/lib/python3.11/site-packages (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.0.0) +#69 80.96 Requirement already satisfied: sniffio>=1.1 in /usr/local/lib/python3.11/site-packages (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) (1.3.1) +#69 81.01 Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.11/site-packages (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.1.2) +#69 81.03 Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.11/site-packages (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.17.0) +#69 81.08 Requirement already satisfied: httpcore==1.* in /usr/local/lib/python3.11/site-packages (from httpx->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.0.7) +#69 81.09 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /usr/local/lib/python3.11/site-packages (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2024.10.1) +#69 81.09 Requirement already satisfied: referencing>=0.28.4 in /usr/local/lib/python3.11/site-packages (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.36.2) +#69 81.09 Requirement already satisfied: rpds-py>=0.7.1 in /usr/local/lib/python3.11/site-packages (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.22.3) +#69 81.26 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#69 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 148.5 Successfully installed MarkupSafe-3.0.2 accelerate-0.33.0 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 datasets-3.2.0 deprecated-1.2.18 diffusers-0.31.0 dill-0.3.8 docarray-0.40.0 embreex-2.17.7.post6 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2024.9.0 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jinja2-3.1.5 joblib-1.4.2 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 langchain-core-0.3.33 langsmith-0.3.4 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 mpmath-1.3.0 multidict-6.1.0 multiprocess-0.70.16 mypy-extensions-1.0.0 networkx-3.4.2 numpy-1.26.4 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 optimum-1.24.0 optimum-habana-1.15.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 psutil-6.1.1 pyarrow-19.0.0 pycollada-0.8 pydantic-2.7.2 pydantic-core-2.18.3 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scikit-learn-1.6.1 scipy-1.15.1 sentence-transformers-3.2.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 sympy-1.13.1 tenacity-9.0.0 threadpoolctl-3.5.0 tokenizers-0.20.3 torch-2.6.0 tqdm-4.67.1 transformers-4.45.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 +#58 148.5 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#58 ... + +#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt +#44 144.0 Successfully installed MarkupSafe-3.0.2 SQLAlchemy-2.0.37 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 async-timeout-4.0.3 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 deprecated-1.2.18 docarray-0.40.0 embreex-2.17.7.post6 exceptiongroup-1.2.2 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2025.2.0 googleapis-common-protos-1.66.0 greenlet-3.1.1 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jinja2-3.1.5 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 langchain-0.3.17 langchain-core-0.3.33 langchain-text-splitters-0.3.5 langsmith-0.3.4 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 mpmath-1.3.0 multidict-6.1.0 mypy-extensions-1.0.0 networkx-3.4.2 numpy-1.26.4 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pycollada-0.8 pydantic-2.8.2 pydantic-core-2.20.1 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scipy-1.15.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 sympy-1.13.1 tenacity-9.0.0 tokenizers-0.21.0 torch-2.6.0 torchvision-0.21.0 tqdm-4.67.1 transformers-4.48.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 +#44 144.0 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#44 DONE 150.1s + +#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt +#37 147.0 Successfully installed MarkupSafe-3.0.2 accelerate-0.33.0 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 datasets-3.2.0 deprecated-1.2.18 diffusers-0.31.0 dill-0.3.8 docarray-0.40.0 embreex-2.17.7.post6 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2024.9.0 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jinja2-3.1.5 joblib-1.4.2 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 langchain-core-0.3.33 langsmith-0.3.4 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 mpmath-1.3.0 multidict-6.1.0 multiprocess-0.70.16 mypy-extensions-1.0.0 networkx-3.4.2 numpy-1.26.4 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 optimum-1.24.0 optimum-habana-1.15.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 psutil-6.1.1 pyarrow-19.0.0 pycollada-0.8 pydantic-2.7.2 pydantic-core-2.18.3 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scikit-learn-1.6.1 scipy-1.15.1 sentence-transformers-3.2.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 sympy-1.13.1 tenacity-9.0.0 threadpoolctl-3.5.0 tokenizers-0.20.3 torch-2.6.0 tqdm-4.67.1 transformers-4.45.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 +#37 147.0 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#37 DONE 154.6s + +#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi +#69 DONE 88.7s + +#76 [opea/lvm:latest 5/5] WORKDIR /home/user/comps/lvms/src +#76 DONE 0.0s + +#77 [opea/embedding-multimodal-bridgetower:latest 6/6] WORKDIR /home/user/comps/third_parties/bridgetower/src/ +#77 DONE 0.0s + +#78 [opea/whisper:latest 6/6] WORKDIR /home/user/comps/asr/src/integrations/dependency/whisper +#78 DONE 0.0s + +#79 [opea/whisper:latest] exporting to image +#79 exporting layers +#79 ... + +#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt +#58 DONE 149.7s + +#80 [opea/lvm-llava:latest 6/6] WORKDIR /home/user/comps/lvms/src/integrations/dependency/llava +#80 DONE 0.0s + +#81 [opea/lvm-llava:latest] exporting to image +#81 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 35.56 Collecting langchain-pinecone (from -r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 35.59 Downloading langchain_pinecone-0.2.2-py3-none-any.whl.metadata (1.6 kB) +#75 35.84 Collecting langchain-text-splitters (from -r /home/user/comps/dataprep/src/requirements.txt (line 21)) +#75 35.85 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) +#75 35.95 Collecting langchain_huggingface (from -r /home/user/comps/dataprep/src/requirements.txt (line 22)) +#75 35.96 Downloading langchain_huggingface-0.1.2-py3-none-any.whl.metadata (1.3 kB) +#75 36.20 Collecting langchain_milvus (from -r /home/user/comps/dataprep/src/requirements.txt (line 23)) +#75 36.21 Downloading langchain_milvus-0.1.8-py3-none-any.whl.metadata (1.9 kB) +#75 36.53 Collecting llama-index (from -r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 36.54 Downloading llama_index-0.12.15-py3-none-any.whl.metadata (12 kB) +#75 36.83 Collecting llama-index-core (from -r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 36.84 Downloading llama_index_core-0.12.15-py3-none-any.whl.metadata (2.5 kB) +#75 36.95 Collecting llama-index-embeddings-text-embeddings-inference (from -r /home/user/comps/dataprep/src/requirements.txt (line 26)) +#75 36.96 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl.metadata (803 bytes) +#75 37.21 Collecting llama-index-graph-stores-neo4j (from -r /home/user/comps/dataprep/src/requirements.txt (line 27)) +#75 37.22 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl.metadata (694 bytes) +#75 37.48 Collecting llama-index-llms-openai (from -r /home/user/comps/dataprep/src/requirements.txt (line 28)) +#75 37.49 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl.metadata (3.3 kB) +#75 37.74 Collecting llama-index-llms-openai-like (from -r /home/user/comps/dataprep/src/requirements.txt (line 29)) +#75 37.75 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl.metadata (751 bytes) +#75 38.00 Collecting markdown (from -r /home/user/comps/dataprep/src/requirements.txt (line 30)) +#75 38.01 Downloading Markdown-3.7-py3-none-any.whl.metadata (7.0 kB) +#75 38.28 Collecting moviepy (from -r /home/user/comps/dataprep/src/requirements.txt (line 31)) +#75 38.29 Downloading moviepy-2.1.2-py3-none-any.whl.metadata (6.9 kB) +#75 38.54 Collecting neo4j (from -r /home/user/comps/dataprep/src/requirements.txt (line 32)) +#75 38.56 Downloading neo4j-5.27.0-py3-none-any.whl.metadata (5.9 kB) +#75 38.56 Requirement already satisfied: numpy in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/dataprep/src/requirements.txt (line 33)) (2.2.2) +#75 38.71 Collecting openai (from -r /home/user/comps/dataprep/src/requirements.txt (line 34)) +#75 38.72 Downloading openai-1.61.0-py3-none-any.whl.metadata (27 kB) +#75 38.95 Collecting openai-whisper (from -r /home/user/comps/dataprep/src/requirements.txt (line 35)) +#75 38.96 Downloading openai-whisper-20240930.tar.gz (800 kB) +#75 38.99 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 800.5/800.5 kB 89.0 MB/s eta 0:00:00 +#75 39.02 Installing build dependencies: started +#75 41.46 Installing build dependencies: finished with status 'done' +#75 41.46 Getting requirements to build wheel: started +#75 41.71 Getting requirements to build wheel: finished with status 'done' +#75 41.74 Preparing metadata (pyproject.toml): started +#75 41.94 Preparing metadata (pyproject.toml): finished with status 'done' +#75 42.10 Collecting opencv-python (from -r /home/user/comps/dataprep/src/requirements.txt (line 36)) +#75 42.11 Downloading opencv_python-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) +#75 42.37 Collecting opensearch-py (from -r /home/user/comps/dataprep/src/requirements.txt (line 37)) +#75 42.38 Downloading opensearch_py-2.8.0-py3-none-any.whl.metadata (6.9 kB) +#75 42.62 Collecting pandas (from -r /home/user/comps/dataprep/src/requirements.txt (line 38)) +#75 42.63 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) +#75 42.92 Collecting pgvector==0.2.5 (from -r /home/user/comps/dataprep/src/requirements.txt (line 39)) +#75 42.93 Downloading pgvector-0.2.5-py2.py3-none-any.whl.metadata (9.9 kB) +#75 42.94 Requirement already satisfied: Pillow in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/dataprep/src/requirements.txt (line 40)) (11.1.0) +#75 43.18 Collecting pinecone-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 41)) +#75 43.19 Downloading pinecone_client-5.0.1-py3-none-any.whl.metadata (19 kB) +#75 43.30 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/dataprep/src/requirements.txt (line 42)) +#75 43.31 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) +#75 43.56 Collecting psycopg2 (from -r /home/user/comps/dataprep/src/requirements.txt (line 43)) +#75 43.58 Downloading psycopg2-2.9.10.tar.gz (385 kB) +#75 43.64 Preparing metadata (setup.py): started +#75 43.88 Preparing metadata (setup.py): finished with status 'done' +#75 44.29 Collecting pymupdf (from -r /home/user/comps/dataprep/src/requirements.txt (line 44)) +#75 44.30 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (3.4 kB) +#75 44.40 Collecting pyspark (from -r /home/user/comps/dataprep/src/requirements.txt (line 45)) +#75 44.40 Downloading pyspark-3.5.4.tar.gz (317.3 MB) +#75 45.10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 317.3/317.3 MB 535.6 MB/s eta 0:00:00 +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 136.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.4/38.4 MB 4.6 MB/s eta 0:00:00 +#54 136.6 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl (45 kB) +#54 136.6 Downloading langchain_pinecone-0.2.2-py3-none-any.whl (11 kB) +#54 136.7 Downloading langchain_community-0.3.16-py3-none-any.whl (2.5 MB) +#54 137.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 5.5 MB/s eta 0:00:00 +#54 137.2 Downloading langchain_huggingface-0.1.2-py3-none-any.whl (21 kB) +#54 137.2 Downloading langchain_milvus-0.1.8-py3-none-any.whl (27 kB) +#54 137.2 Downloading llama_index_core-0.12.15-py3-none-any.whl (1.6 MB) +#54 137.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 5.5 MB/s eta 0:00:00 +#54 137.6 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl (6.2 kB) +#54 137.6 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl (3.1 kB) +#54 137.6 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl (14 kB) +#54 137.7 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl (3.1 kB) +#54 137.7 Downloading llama_index_llms_text_generation_inference-0.3.1-py3-none-any.whl (6.5 kB) +#54 137.7 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl (17 kB) +#54 137.8 Downloading neo4j-5.27.0-py3-none-any.whl (301 kB) +#54 137.8 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) +#54 140.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 6.4 MB/s eta 0:00:00 +#54 140.7 Downloading opensearch_py-2.8.0-py3-none-any.whl (353 kB) +#54 140.8 Downloading pathway-0.3.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB) +#54 142.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.0/14.0 MB 7.7 MB/s eta 0:00:00 +#54 142.7 Downloading sqlglot-10.6.1-py3-none-any.whl (223 kB) +#54 142.7 Downloading pgvector-0.3.6-py3-none-any.whl (24 kB) +#54 142.8 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#54 142.8 Downloading psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#54 143.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 9.0 MB/s eta 0:00:00 +#54 143.2 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) +#54 143.3 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#54 143.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 7.0 MB/s eta 0:00:00 +#54 143.6 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (20.0 MB) +#54 146.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 20.0/20.0 MB 7.2 MB/s eta 0:00:00 +#54 146.4 Downloading pytesseract-0.3.13-py3-none-any.whl (14 kB) +#54 146.4 Downloading python_docx-1.1.2-py3-none-any.whl (244 kB) +#54 146.5 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) +#54 146.6 Downloading python_pptx-1.0.2-py3-none-any.whl (472 kB) +#54 146.7 Downloading qdrant_haystack-7.0.0-py3-none-any.whl (23 kB) +#54 146.7 Downloading redis-5.2.1-py3-none-any.whl (261 kB) +#54 146.8 Downloading sentence_transformers-3.4.1-py3-none-any.whl (275 kB) +#54 146.9 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#54 146.9 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) +#54 147.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 7.2 MB/s eta 0:00:00 +#54 147.1 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#54 147.2 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#54 147.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 7.2 MB/s eta 0:00:00 +#54 147.4 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#54 147.4 Downloading anytree-2.12.1-py3-none-any.whl (44 kB) +#54 147.4 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 49.30 Preparing metadata (setup.py): started +#75 49.56 Preparing metadata (setup.py): finished with status 'done' +#75 49.80 Collecting pytesseract (from -r /home/user/comps/dataprep/src/requirements.txt (line 46)) +#75 49.81 Downloading pytesseract-0.3.13-py3-none-any.whl.metadata (11 kB) +#75 50.11 Collecting python-bidi (from -r /home/user/comps/dataprep/src/requirements.txt (line 47)) +#75 50.12 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#75 50.22 Collecting python-docx (from -r /home/user/comps/dataprep/src/requirements.txt (line 48)) +#75 50.23 Downloading python_docx-1.1.2-py3-none-any.whl.metadata (2.0 kB) +#75 50.50 Collecting python-pptx (from -r /home/user/comps/dataprep/src/requirements.txt (line 49)) +#75 50.50 Downloading python_pptx-1.0.2-py3-none-any.whl.metadata (2.5 kB) +#75 50.80 Collecting qdrant-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 50.81 Downloading qdrant_client-1.13.2-py3-none-any.whl.metadata (10 kB) +#75 51.07 Collecting redis (from -r /home/user/comps/dataprep/src/requirements.txt (line 51)) +#75 51.08 Downloading redis-5.2.1-py3-none-any.whl.metadata (9.1 kB) +#75 51.46 Collecting scipy (from -r /home/user/comps/dataprep/src/requirements.txt (line 52)) +#75 51.47 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#75 51.64 Collecting sentence_transformers (from -r /home/user/comps/dataprep/src/requirements.txt (line 53)) +#75 51.65 Downloading sentence_transformers-3.4.1-py3-none-any.whl.metadata (10 kB) +#75 51.90 Collecting shortuuid (from -r /home/user/comps/dataprep/src/requirements.txt (line 54)) +#75 51.91 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) +#75 52.18 Collecting tiktoken (from -r /home/user/comps/dataprep/src/requirements.txt (line 55)) +#75 52.19 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#75 52.48 Collecting tqdm (from -r /home/user/comps/dataprep/src/requirements.txt (line 56)) +#75 52.49 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) +#75 52.73 Collecting typing (from -r /home/user/comps/dataprep/src/requirements.txt (line 57)) +#75 52.74 Downloading typing-3.7.4.3.tar.gz (78 kB) +#75 52.75 Preparing metadata (setup.py): started +#75 52.92 Preparing metadata (setup.py): finished with status 'done' +#75 53.18 Collecting tzlocal (from -r /home/user/comps/dataprep/src/requirements.txt (line 58)) +#75 53.19 Downloading tzlocal-5.2-py3-none-any.whl.metadata (7.8 kB) +#75 53.48 Collecting uvicorn (from -r /home/user/comps/dataprep/src/requirements.txt (line 60)) +#75 53.49 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) +#75 ... + +#82 [opea/lvm:latest] exporting to image +#82 ... + +#83 [opea/embedding-multimodal-bridgetower:latest] exporting to image +#83 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 53.77 Collecting vdms (from -r /home/user/comps/dataprep/src/requirements.txt (line 61)) +#75 53.78 Downloading vdms-0.0.21-py3-none-any.whl.metadata (600 bytes) +#75 54.02 Collecting webvtt-py (from -r /home/user/comps/dataprep/src/requirements.txt (line 62)) +#75 54.04 Downloading webvtt_py-0.5.1-py3-none-any.whl.metadata (3.4 kB) +#75 54.36 Collecting docarray[full] (from -r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 54.37 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) +#75 54.63 Collecting unstructured[all-docs] (from -r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 54.64 Downloading unstructured-0.16.17-py3-none-any.whl.metadata (24 kB) +#75 54.93 Collecting soupsieve>1.2 (from beautifulsoup4->-r /home/user/comps/dataprep/src/requirements.txt (line 1)) +#75 54.93 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB) +#75 54.94 Requirement already satisfied: typing-extensions>=4.0.0 in /usr/local/lib/python3.11/site-packages (from beautifulsoup4->-r /home/user/comps/dataprep/src/requirements.txt (line 1)) (4.12.2) +#75 55.22 Collecting cairocffi (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 55.23 Downloading cairocffi-1.7.1-py3-none-any.whl.metadata (3.3 kB) +#75 55.33 Collecting cssselect2 (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 55.34 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +#75 55.59 Collecting defusedxml (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 55.60 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB) +#75 55.75 Collecting tinycss2 (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 55.76 Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB) +#75 55.91 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 55.92 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) +#75 ... + +#79 [opea/whisper:latest] exporting to image +#79 exporting layers 12.4s done +#79 writing image sha256:7c0fbbf152d679f6cd5e6722baf2f2dc6ee06b3a412ec6b88b40ddfd93a7093b done +#79 naming to docker.io/opea/whisper:latest done +#79 DONE 12.4s + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 56.18 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 56.19 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) +#75 56.35 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 56.36 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#75 56.74 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 56.75 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) +#75 57.01 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 57.02 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#75 57.36 Collecting pydantic>=1.10.8 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 57.37 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) +#75 57.64 Collecting pydub<0.26.0,>=0.25.1 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 57.65 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) +#75 57.94 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 57.95 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) +#75 58.31 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 58.32 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) +#75 58.60 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 58.61 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) +#75 58.88 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 58.89 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) +#75 59.15 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 59.16 Downloading https://download.pytorch.org/whl/typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#75 59.16 Requirement already satisfied: torch in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (2.6.0+cpu) +#75 59.16 Requirement already satisfied: torchvision>=0.5 in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (0.21.0+cpu) +#75 59.50 Collecting opencv-python-headless (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 59.51 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) +#75 59.82 Collecting scikit-image (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 59.83 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (14 kB) +#75 59.97 Collecting PyYAML (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 59.97 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#75 60.16 Collecting Shapely (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 60.17 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) +#75 60.46 Collecting pyclipper (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 60.48 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.0 kB) +#75 60.62 Collecting ninja (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 60.63 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.metadata (5.3 kB) +#75 60.90 Collecting elastic-transport<9,>=8.15.1 (from elasticsearch->-r /home/user/comps/dataprep/src/requirements.txt (line 8)) +#75 60.92 Downloading elastic_transport-8.17.0-py3-none-any.whl.metadata (3.6 kB) +#75 61.19 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/dataprep/src/requirements.txt (line 9)) +#75 61.20 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) +#75 61.37 Collecting POT<0.10,>=0.9 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 61.38 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) +#75 61.50 Collecting anytree<3.0.0,>=2.12.1 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 61.50 Downloading anytree-2.12.1-py3-none-any.whl.metadata (8.1 kB) +#75 61.60 Collecting beartype<0.19.0,>=0.18.5 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 61.61 Downloading beartype-0.18.5-py3-none-any.whl.metadata (30 kB) +#75 61.76 Collecting gensim<5.0.0,>=4.3.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 61.77 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB) +#75 62.06 Collecting graspologic-native<2.0.0,>=1.2.1 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 62.07 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.6 kB) +#75 62.16 Collecting hyppo<0.5.0,>=0.4.0 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 62.17 Downloading hyppo-0.4.0-py3-none-any.whl.metadata (1.7 kB) +#75 62.42 Collecting joblib<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 62.43 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 152.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 8.2 MB/s eta 0:00:00 +#54 152.3 Downloading beartype-0.18.5-py3-none-any.whl (917 kB) +#54 152.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 917.8/917.8 kB 8.7 MB/s eta 0:00:00 +#54 152.4 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#54 152.5 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#54 152.5 Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) +#54 152.5 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#54 152.6 Downloading dirtyjson-1.0.8-py3-none-any.whl (25 kB) +#54 152.6 Downloading diskcache-5.6.3-py3-none-any.whl (45 kB) +#54 152.6 Downloading elasticsearch-8.17.1-py3-none-any.whl (653 kB) +#54 152.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 654.0/654.0 kB 8.4 MB/s eta 0:00:00 +#54 152.8 Downloading filetype-1.2.0-py2.py3-none-any.whl (19 kB) +#54 152.8 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.7 MB) +#54 157.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 26.7/26.7 MB 5.9 MB/s eta 0:00:00 +#54 157.3 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365 kB) +#54 157.4 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#54 157.5 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#54 157.5 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#54 157.5 Downloading httpx_sse-0.4.0-py3-none-any.whl (7.8 kB) +#54 157.6 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#54 157.7 Downloading hyppo-0.4.0-py3-none-any.whl (146 kB) +#54 157.7 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) +#54 158.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 5.7 MB/s eta 0:00:00 +#54 158.1 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) +#54 158.2 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) +#54 158.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 6.3 MB/s eta 0:00:00 +#54 158.4 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) +#54 158.5 Downloading langchain_tests-0.3.10-py3-none-any.whl (37 kB) +#54 158.5 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) +#54 158.6 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl (2.9 kB) +#54 158.7 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) +#54 159.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 5.3 MB/s eta 0:00:00 +#54 159.6 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#54 159.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 6.1 MB/s eta 0:00:00 +#54 159.9 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB) +#54 161.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.6/8.6 MB 6.7 MB/s eta 0:00:00 +#54 161.2 Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB) +#54 161.2 Downloading nltk-3.9.1-py3-none-any.whl (1.5 MB) +#54 161.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 6.5 MB/s eta 0:00:00 +#54 161.5 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB) +#54 162.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/3.8 MB 6.5 MB/s eta 0:00:00 +#54 162.1 Downloading openai-1.61.0-py3-none-any.whl (460 kB) +#54 162.2 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#54 162.3 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#54 162.3 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 62.80 Collecting matplotlib<4.0.0,>=3.8.4 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 62.81 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB) +#75 62.82 Requirement already satisfied: networkx<4,>=3 in /usr/local/lib/python3.11/site-packages (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) (3.4.2) +#75 63.35 Collecting numpy (from -r /home/user/comps/dataprep/src/requirements.txt (line 33)) +#75 63.36 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) +#75 63.55 Collecting scikit-learn<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 63.56 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) +#75 63.58 Collecting scipy (from -r /home/user/comps/dataprep/src/requirements.txt (line 52)) +#75 63.59 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB) +#75 63.87 Collecting seaborn<0.14.0,>=0.13.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 63.88 Downloading seaborn-0.13.2-py3-none-any.whl.metadata (5.4 kB) +#75 64.17 Collecting statsmodels<0.15.0,>=0.14.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 64.18 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#75 64.44 Collecting umap-learn<0.6.0,>=0.5.6 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 64.45 Downloading umap_learn-0.5.7-py3-none-any.whl.metadata (21 kB) +#75 64.48 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) (3.17.0) +#75 64.48 Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.11/site-packages (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) (2025.2.0) +#75 64.74 Collecting packaging>=20.9 (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) +#75 64.75 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) +#75 65.02 Collecting requests (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) +#75 65.03 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#75 65.14 Collecting decorator (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 65.15 Downloading decorator-5.1.1-py3-none-any.whl.metadata (4.0 kB) +#75 65.42 Collecting jedi>=0.16 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 65.42 Downloading jedi-0.19.2-py2.py3-none-any.whl.metadata (22 kB) +#75 65.53 Collecting matplotlib-inline (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 65.54 Downloading matplotlib_inline-0.1.7-py3-none-any.whl.metadata (3.9 kB) +#75 65.67 Collecting pexpect>4.3 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 65.68 Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB) +#75 65.82 Collecting prompt_toolkit<3.1.0,>=3.0.41 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 65.82 Downloading prompt_toolkit-3.0.50-py3-none-any.whl.metadata (6.6 kB) +#75 66.07 Collecting pygments>=2.4.0 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 66.08 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) +#75 66.17 Collecting stack_data (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 66.18 Downloading stack_data-0.6.3-py3-none-any.whl.metadata (18 kB) +#75 66.30 Collecting traitlets>=5.13.0 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 66.31 Downloading traitlets-5.14.3-py3-none-any.whl.metadata (10 kB) +#75 66.73 Collecting SQLAlchemy<3,>=1.4 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 66.74 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) +#75 67.29 Collecting aiohttp<4.0.0,>=3.8.3 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 67.29 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#75 67.56 Collecting langchain-core<0.4.0,>=0.3.33 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 67.57 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) +#75 67.88 Collecting langsmith<0.4,>=0.1.17 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 67.89 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) +#75 68.04 Collecting tenacity!=8.4.0,<10,>=8.1.0 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 68.05 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) +#75 68.33 Collecting dataclasses-json<0.7,>=0.5.7 (from langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) +#75 68.34 Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) +#75 68.60 Collecting httpx-sse<0.5.0,>=0.4.0 (from langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) +#75 68.61 Downloading httpx_sse-0.4.0-py3-none-any.whl.metadata (9.0 kB) +#75 68.97 Collecting pydantic-settings<3.0.0,>=2.4.0 (from langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) +#75 68.98 Downloading pydantic_settings-2.7.1-py3-none-any.whl.metadata (3.5 kB) +#75 69.07 Collecting aiohttp<4.0.0,>=3.8.3 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 69.08 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) +#75 69.35 Collecting langchain-tests<0.4.0,>=0.3.7 (from langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 69.36 Downloading langchain_tests-0.3.10-py3-none-any.whl.metadata (3.6 kB) +#75 69.49 Collecting pinecone<6.0.0,>=5.4.0 (from langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 69.50 Downloading pinecone-5.4.2-py3-none-any.whl.metadata (19 kB) +#75 69.88 Collecting tokenizers>=0.19.1 (from langchain_huggingface->-r /home/user/comps/dataprep/src/requirements.txt (line 22)) +#75 69.89 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) +#75 70.03 Collecting transformers>=4.39.0 (from langchain_huggingface->-r /home/user/comps/dataprep/src/requirements.txt (line 22)) +#75 70.04 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) +#75 70.57 Collecting pymilvus<3.0.0,>=2.5.0 (from langchain_milvus->-r /home/user/comps/dataprep/src/requirements.txt (line 23)) +#75 70.58 Downloading pymilvus-2.5.4-py3-none-any.whl.metadata (5.7 kB) +#75 70.81 Collecting llama-index-agent-openai<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 70.82 Downloading llama_index_agent_openai-0.4.3-py3-none-any.whl.metadata (727 bytes) +#75 71.05 Collecting llama-index-cli<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 71.06 Downloading llama_index_cli-0.4.0-py3-none-any.whl.metadata (1.5 kB) +#75 71.33 Collecting llama-index-embeddings-openai<0.4.0,>=0.3.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 71.34 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl.metadata (684 bytes) +#75 71.58 Collecting llama-index-indices-managed-llama-cloud>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 71.59 Downloading llama_index_indices_managed_llama_cloud-0.6.4-py3-none-any.whl.metadata (3.6 kB) +#75 71.84 Collecting llama-index-multi-modal-llms-openai<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 71.85 Downloading llama_index_multi_modal_llms_openai-0.4.3-py3-none-any.whl.metadata (726 bytes) +#75 72.07 Collecting llama-index-program-openai<0.4.0,>=0.3.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 72.08 Downloading llama_index_program_openai-0.3.1-py3-none-any.whl.metadata (764 bytes) +#75 72.31 Collecting llama-index-question-gen-openai<0.4.0,>=0.3.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 72.32 Downloading llama_index_question_gen_openai-0.3.0-py3-none-any.whl.metadata (783 bytes) +#75 72.58 Collecting llama-index-readers-file<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 72.59 Downloading llama_index_readers_file-0.4.4-py3-none-any.whl.metadata (5.4 kB) +#75 ... + +#83 [opea/embedding-multimodal-bridgetower:latest] exporting to image +#83 exporting layers 29.4s done +#83 writing image sha256:08f8bce4d6cd732c2bb137735f561df87262207b27c0feff75c89079c8a524ef done +#83 naming to docker.io/opea/embedding-multimodal-bridgetower:latest done +#83 DONE 29.4s + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 72.83 Collecting llama-index-readers-llama-parse>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 72.84 Downloading llama_index_readers_llama_parse-0.4.0-py3-none-any.whl.metadata (3.6 kB) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 164.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 6.9 MB/s eta 0:00:00 +#54 164.3 Downloading pinecone-5.4.2-py3-none-any.whl (427 kB) +#54 164.4 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (897 kB) +#54 164.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 897.5/897.5 kB 8.1 MB/s eta 0:00:00 +#54 164.5 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#54 164.6 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) +#54 170.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 7.4 MB/s eta 0:00:00 +#54 170.3 Downloading pydantic_settings-2.7.1-py3-none-any.whl (29 kB) +#54 170.3 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#54 170.4 Downloading pymilvus-2.5.4-py3-none-any.whl (222 kB) +#54 170.4 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#54 170.5 Downloading python_sat-1.8.dev14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.7 MB) +#54 170.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.7/2.7 MB 7.1 MB/s eta 0:00:00 +#54 170.9 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) +#54 171.0 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#54 171.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 8.5 MB/s eta 0:00:00 +#54 171.1 Downloading qdrant_client-1.13.2-py3-none-any.whl (306 kB) +#54 171.2 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) +#54 171.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 7.6 MB/s eta 0:00:00 +#54 171.4 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#54 171.4 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#54 171.5 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 73.10 Collecting nltk>3.8.1 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 73.11 Downloading nltk-3.9.1-py3-none-any.whl.metadata (2.9 kB) +#75 73.42 Collecting deprecated>=1.2.9.3 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 73.43 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) +#75 73.68 Collecting dirtyjson<2.0.0,>=1.0.8 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 73.69 Downloading dirtyjson-1.0.8-py3-none-any.whl.metadata (11 kB) +#75 73.79 Collecting filetype<2.0.0,>=1.2.0 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 73.79 Downloading filetype-1.2.0-py2.py3-none-any.whl.metadata (6.5 kB) +#75 74.05 Collecting httpx (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 74.06 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) +#75 74.31 Collecting nest-asyncio<2.0.0,>=1.5.8 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 74.32 Downloading nest_asyncio-1.6.0-py3-none-any.whl.metadata (2.8 kB) +#75 74.71 Collecting wrapt (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 74.72 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) +#75 74.83 Collecting llama-index-utils-huggingface<0.4.0,>=0.3.0 (from llama-index-embeddings-text-embeddings-inference->-r /home/user/comps/dataprep/src/requirements.txt (line 26)) +#75 74.85 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl.metadata (697 bytes) +#75 75.20 Collecting imageio<3.0,>=2.5 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) +#75 75.21 Downloading imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB) +#75 ... + +#81 [opea/lvm-llava:latest] exporting to image +#81 exporting layers 31.2s done +#81 writing image sha256:f4a23efadd37712906aae1d282e3735346df8a4af1fe1d86e7d9fa38deb2c93b done +#81 naming to docker.io/opea/lvm-llava:latest done +#81 DONE 31.2s + +#82 [opea/lvm:latest] exporting to image +#82 exporting layers 31.8s done +#82 writing image sha256:78bf8372d2bf0539da86c5c61ed1d27fc547199717f45a7f606b3b0d3090b048 done +#82 naming to docker.io/opea/lvm:latest done +#82 DONE 31.8s + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 75.48 Collecting imageio_ffmpeg>=0.2.0 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) +#75 75.49 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) +#75 75.72 Collecting proglog<=1.0.0 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) +#75 75.73 Downloading proglog-0.1.10-py3-none-any.whl.metadata (639 bytes) +#75 75.83 Collecting python-dotenv>=0.10 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) +#75 75.84 Downloading python_dotenv-1.0.1-py3-none-any.whl.metadata (23 kB) +#75 76.21 Collecting Pillow (from -r /home/user/comps/dataprep/src/requirements.txt (line 40)) +#75 76.22 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB) +#75 76.35 Collecting pytz (from neo4j->-r /home/user/comps/dataprep/src/requirements.txt (line 32)) +#75 76.36 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) +#75 76.62 Collecting anyio<5,>=3.5.0 (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) +#75 76.62 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) +#75 76.72 Collecting distro<2,>=1.7.0 (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) +#75 76.73 Downloading distro-1.9.0-py3-none-any.whl.metadata (6.8 kB) +#75 77.04 Collecting jiter<1,>=0.4.0 (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) +#75 77.05 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) +#75 77.30 Collecting sniffio (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) +#75 77.31 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) +#75 77.67 Collecting numba (from openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) +#75 77.68 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB) +#75 77.79 Collecting more-itertools (from openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) +#75 77.80 Downloading more_itertools-10.6.0-py3-none-any.whl.metadata (37 kB) +#75 78.07 Collecting triton>=2.0.0 (from openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) +#75 78.08 Downloading https://download.pytorch.org/whl/triton-3.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (1.4 kB) +#75 78.42 Collecting urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19 (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) +#75 78.43 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) +#75 78.55 Collecting python-dateutil (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) +#75 78.55 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) +#75 78.83 Collecting certifi>=2024.07.04 (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) +#75 78.83 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) +#75 79.06 Collecting Events (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) +#75 79.07 Downloading Events-0.5-py3-none-any.whl.metadata (3.9 kB) +#75 79.21 Collecting tzdata>=2022.7 (from pandas->-r /home/user/comps/dataprep/src/requirements.txt (line 38)) +#75 79.22 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) +#75 79.50 Collecting pinecone-plugin-inference<2.0.0,>=1.0.3 (from pinecone-client->-r /home/user/comps/dataprep/src/requirements.txt (line 41)) +#75 79.51 Downloading pinecone_plugin_inference-1.1.0-py3-none-any.whl.metadata (2.2 kB) +#75 79.61 Collecting pinecone-plugin-interface<0.0.8,>=0.0.7 (from pinecone-client->-r /home/user/comps/dataprep/src/requirements.txt (line 41)) +#75 79.61 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl.metadata (1.2 kB) +#75 79.91 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/dataprep/src/requirements.txt (line 42)) +#75 79.92 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) +#75 80.22 Collecting py4j==0.10.9.7 (from pyspark->-r /home/user/comps/dataprep/src/requirements.txt (line 45)) +#75 80.23 Downloading py4j-0.10.9.7-py2.py3-none-any.whl.metadata (1.5 kB) +#75 80.61 Collecting lxml>=3.1.0 (from python-docx->-r /home/user/comps/dataprep/src/requirements.txt (line 48)) +#75 80.62 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#75 80.76 Collecting XlsxWriter>=0.5.7 (from python-pptx->-r /home/user/comps/dataprep/src/requirements.txt (line 49)) +#75 80.77 Downloading XlsxWriter-3.2.2-py3-none-any.whl.metadata (2.8 kB) +#75 81.53 Collecting grpcio>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 81.53 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#75 82.23 Collecting grpcio-tools>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 82.24 Downloading grpcio_tools-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 82.51 Collecting portalocker<3.0.0,>=2.7.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 82.52 Downloading https://download.pytorch.org/whl/portalocker-2.10.1-py3-none-any.whl (18 kB) +#75 83.18 Collecting regex>=2022.1.18 (from tiktoken->-r /home/user/comps/dataprep/src/requirements.txt (line 55)) +#75 83.19 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) +#75 83.49 Collecting chardet (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 83.50 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 173.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 7.6 MB/s eta 0:00:00 +#54 173.3 Downloading seaborn-0.13.2-py3-none-any.whl (294 kB) +#54 173.4 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB) +#54 173.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 8.2 MB/s eta 0:00:00 +#54 173.8 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#54 173.8 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB) +#54 175.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/10.8 MB 8.0 MB/s eta 0:00:00 +#54 175.2 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) +#54 175.2 Downloading text_generation-0.7.0-py3-none-any.whl (12 kB) +#54 175.3 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#54 175.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 7.3 MB/s eta 0:00:00 +#54 175.7 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#54 175.8 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) +#54 177.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 7.8 MB/s eta 0:00:00 +#54 177.1 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) +#54 177.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 8.0 MB/s eta 0:00:00 +#54 177.2 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) +#54 177.2 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#54 177.3 Downloading umap_learn-0.5.7-py3-none-any.whl (88 kB) +#54 177.3 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#54 177.4 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) +#54 177.4 Downloading XlsxWriter-3.2.2-py3-none-any.whl (165 kB) +#54 177.4 Downloading beautifulsoup4-4.13.1-py3-none-any.whl (185 kB) +#54 177.5 Downloading cairocffi-1.7.1-py3-none-any.whl (75 kB) +#54 177.5 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +#54 177.6 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB) +#54 177.6 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#54 177.7 Downloading Events-0.5-py3-none-any.whl (6.8 kB) +#54 177.7 Downloading haystack_experimental-0.5.0-py3-none-any.whl (95 kB) +#54 177.7 Downloading lazy_imports-0.4.0-py3-none-any.whl (12 kB) +#54 177.8 Downloading more_itertools-10.6.0-py3-none-any.whl (63 kB) +#54 177.8 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (422 kB) +#54 177.9 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.0 MB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 83.74 Collecting python-magic (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 83.75 Downloading python_magic-0.4.27-py2.py3-none-any.whl.metadata (5.8 kB) +#75 84.01 Collecting emoji (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 84.02 Downloading emoji-2.14.1-py3-none-any.whl.metadata (5.7 kB) +#75 84.24 Collecting python-iso639 (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 84.25 Downloading python_iso639-2025.1.28-py3-none-any.whl.metadata (13 kB) +#75 84.48 Collecting langdetect (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 84.50 Downloading langdetect-1.0.9.tar.gz (981 kB) +#75 84.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 981.5/981.5 kB 89.3 MB/s eta 0:00:00 +#75 84.57 Preparing metadata (setup.py): started +#75 84.74 Preparing metadata (setup.py): finished with status 'done' +#75 85.61 Collecting rapidfuzz (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 85.61 Downloading rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB) +#75 85.89 Collecting backoff (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 85.90 Downloading backoff-2.2.1-py3-none-any.whl.metadata (14 kB) +#75 86.13 Collecting unstructured-client (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 86.14 Downloading unstructured_client-0.29.0-py3-none-any.whl.metadata (20 kB) +#75 86.46 Collecting psutil (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 86.47 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) +#75 86.70 Collecting python-oxmsg (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 86.70 Downloading python_oxmsg-0.0.2-py3-none-any.whl.metadata (5.0 kB) +#75 86.98 Collecting html5lib (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 86.99 Downloading html5lib-1.1-py2.py3-none-any.whl.metadata (16 kB) +#75 87.25 Collecting unstructured.pytesseract>=0.3.12 (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 87.26 Downloading unstructured.pytesseract-0.3.13-py3-none-any.whl.metadata (11 kB) +#75 87.52 Collecting unstructured-inference>=0.8.6 (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 87.53 Downloading unstructured_inference-0.8.7-py3-none-any.whl.metadata (5.3 kB) +#75 87.79 Collecting google-cloud-vision (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 87.79 Downloading google_cloud_vision-3.9.0-py2.py3-none-any.whl.metadata (5.3 kB) +#75 88.02 Collecting effdet (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 88.03 Downloading effdet-0.4.1-py3-none-any.whl.metadata (33 kB) +#75 88.28 Collecting openpyxl (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 88.29 Downloading openpyxl-3.1.5-py2.py3-none-any.whl.metadata (2.5 kB) +#75 88.59 Collecting pi-heif (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 88.60 Downloading pi_heif-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) +#75 88.82 Collecting pypdf (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 88.84 Downloading pypdf-5.2.0-py3-none-any.whl.metadata (7.2 kB) +#75 89.08 Collecting pdf2image (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 89.08 Downloading pdf2image-1.17.0-py3-none-any.whl.metadata (6.2 kB) +#75 89.62 Collecting pikepdf (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 89.63 Downloading pikepdf-9.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB) +#75 89.81 Collecting onnx (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 89.82 Downloading onnx-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (16 kB) +#75 90.07 Collecting xlrd (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 90.08 Downloading xlrd-2.0.1-py2.py3-none-any.whl.metadata (3.4 kB) +#75 90.32 Collecting pypandoc (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 90.33 Downloading pypandoc-1.15-py3-none-any.whl.metadata (16 kB) +#75 90.56 Collecting pdfminer.six (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 90.57 Downloading pdfminer.six-20240706-py3-none-any.whl.metadata (4.1 kB) +#75 90.83 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/dataprep/src/requirements.txt (line 60)) +#75 90.83 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) +#75 90.93 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/dataprep/src/requirements.txt (line 60)) +#75 90.94 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) +#75 90.96 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 90.97 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl.metadata (540 bytes) +#75 91.08 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 91.09 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) +#75 91.33 Collecting aiosignal>=1.1.2 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 91.34 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) +#75 91.44 Collecting attrs>=17.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 91.45 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) +#75 91.75 Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 91.76 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) +#75 92.24 Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 92.25 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) +#75 92.74 Collecting yarl<2.0,>=1.12.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 92.75 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) +#75 92.87 Collecting idna>=2.8 (from anyio<5,>=3.5.0->openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) +#75 92.88 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#75 93.13 Collecting six (from anytree<3.0.0,>=2.12.1->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 93.14 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#75 93.45 Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses-json<0.7,>=0.5.7->langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) +#75 93.46 Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) +#75 94.18 Collecting simsimd>=3 (from elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/dataprep/src/requirements.txt (line 17)) +#75 94.19 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (66 kB) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 183.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.0/50.0 MB 8.5 MB/s eta 0:00:00 +#54 183.8 Downloading posthog-3.11.0-py2.py3-none-any.whl (72 kB) +#54 183.8 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (969 kB) +#54 183.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 969.6/969.6 kB 11.8 MB/s eta 0:00:00 +#54 183.9 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286 kB) +#54 184.0 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.8 MB) +#54 185.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.8/14.8 MB 8.0 MB/s eta 0:00:00 +#54 185.9 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) +#54 186.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 9.5 MB/s eta 0:00:00 +#54 186.2 Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB) +#54 186.2 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#54 186.2 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#54 186.2 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#54 186.3 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#54 186.3 Downloading autograd-1.7.0-py3-none-any.whl (52 kB) +#54 186.3 Downloading backoff-2.2.1-py3-none-any.whl (15 kB) +#54 186.3 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB) +#54 186.4 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#54 186.4 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326 kB) +#54 186.5 Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB) +#54 186.5 Downloading distro-1.9.0-py3-none-any.whl (20 kB) +#54 186.5 Downloading elastic_transport-8.17.0-py3-none-any.whl (64 kB) +#54 186.6 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB) +#54 187.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.9/4.9 MB 9.7 MB/s eta 0:00:00 +#54 187.1 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) +#54 187.2 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (602 kB) +#54 187.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 602.4/602.4 kB 11.2 MB/s eta 0:00:00 +#54 187.3 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#54 187.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 9.9 MB/s eta 0:00:00 +#54 187.9 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB) +#54 188.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/2.8 MB 10.5 MB/s eta 0:00:00 +#54 188.2 Downloading idna-3.10-py3-none-any.whl (70 kB) +#54 188.2 Downloading imageio-2.37.0-py3-none-any.whl (315 kB) +#54 188.3 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 94.51 Collecting smart-open>=1.8.1 (from gensim<5.0.0,>=4.3.2->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 94.52 Downloading smart_open-7.1.0-py3-none-any.whl.metadata (24 kB) +#75 94.56 INFO: pip is looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. +#75 94.56 Collecting grpcio-tools>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 94.57 Downloading grpcio_tools-1.69.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.58 Downloading grpcio_tools-1.68.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.59 Downloading grpcio_tools-1.68.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.60 Downloading grpcio_tools-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.62 Downloading grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.63 Downloading grpcio_tools-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.64 Downloading grpcio_tools-1.66.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.64 INFO: pip is still looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. +#75 94.65 Downloading grpcio_tools-1.66.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.66 Downloading grpcio_tools-1.65.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.67 Downloading grpcio_tools-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.68 Downloading grpcio_tools-1.65.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.70 Downloading grpcio_tools-1.65.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.71 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. +#75 94.72 Downloading grpcio_tools-1.64.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.73 Downloading grpcio_tools-1.64.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.74 Downloading grpcio_tools-1.64.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.75 Downloading grpcio_tools-1.63.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.77 Downloading grpcio_tools-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) +#75 94.78 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) +#75 94.81 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from grpcio-tools>=1.41.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) (75.8.0) +#75 95.09 Collecting httpcore==1.* (from httpx->llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) +#75 95.09 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) +#75 95.39 Collecting h2<5,>=3 (from httpx[http2]>=0.20.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 95.39 Downloading h2-4.2.0-py3-none-any.whl.metadata (5.1 kB) +#75 95.68 Collecting autograd>=1.3 (from hyppo<0.5.0,>=0.4.0->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 95.69 Downloading autograd-1.7.0-py3-none-any.whl.metadata (7.5 kB) +#75 96.01 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 96.02 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) +#75 96.13 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 96.14 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) +#75 96.24 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 96.25 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) +#75 96.54 Collecting parso<0.9.0,>=0.8.4 (from jedi>=0.16->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 96.55 Downloading parso-0.8.4-py2.py3-none-any.whl.metadata (7.7 kB) +#75 96.82 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 96.83 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) +#75 97.15 Collecting pytest<9,>=7 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 97.16 Downloading pytest-8.3.4-py3-none-any.whl.metadata (7.5 kB) +#75 97.27 Collecting pytest-asyncio<1,>=0.20 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 97.28 Downloading pytest_asyncio-0.25.3-py3-none-any.whl.metadata (3.9 kB) +#75 97.54 Collecting pytest-socket<1,>=0.6.0 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 97.55 Downloading pytest_socket-0.7.0-py3-none-any.whl.metadata (6.7 kB) +#75 97.81 Collecting syrupy<5,>=4 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 97.82 Downloading syrupy-4.8.1-py3-none-any.whl.metadata (36 kB) +#75 98.12 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 98.13 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) +#75 98.56 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 98.56 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) +#75 98.89 Collecting llama-cloud<0.2.0,>=0.1.8 (from llama-index-indices-managed-llama-cloud>=0.4.0->llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 98.90 Downloading llama_cloud-0.1.11-py3-none-any.whl.metadata (912 bytes) +#75 99.18 Collecting striprtf<0.0.27,>=0.0.26 (from llama-index-readers-file<0.5.0,>=0.4.0->llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 99.19 Downloading striprtf-0.0.26-py3-none-any.whl.metadata (2.1 kB) +#75 99.45 Collecting llama-parse>=0.5.0 (from llama-index-readers-llama-parse>=0.4.0->llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) +#75 99.46 Downloading llama_parse-0.5.20-py3-none-any.whl.metadata (6.9 kB) +#75 99.66 Collecting contourpy>=1.0.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 99.66 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.4 kB) +#75 99.95 Collecting cycler>=0.10 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 99.96 Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 199.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 8.9 MB/s eta 0:00:00 +#54 199.8 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345 kB) +#54 199.9 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) +#54 199.9 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB) +#54 200.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 11.3 MB/s eta 0:00:00 +#54 200.0 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) +#54 200.1 Downloading lazy_loader-0.4-py3-none-any.whl (12 kB) +#54 200.1 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB) +#54 204.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.4/42.4 MB 10.7 MB/s eta 0:00:00 +#54 204.1 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) +#54 204.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 12.3 MB/s eta 0:00:00 +#54 204.2 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) +#54 204.2 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#54 204.3 Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) +#54 204.3 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl (45.2 MB) +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 100.2 Collecting fonttools>=4.22.0 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 100.2 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (101 kB) +#75 100.5 Collecting kiwisolver>=1.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 100.5 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) +#75 100.7 Collecting pyparsing>=2.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 100.7 Downloading pyparsing-3.2.1-py3-none-any.whl.metadata (5.0 kB) +#75 100.9 Collecting llvmlite<0.45,>=0.44.0dev0 (from numba->openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) +#75 100.9 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.8 kB) +#75 101.2 Collecting ptyprocess>=0.5 (from pexpect>4.3->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 101.2 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB) +#75 101.2 INFO: pip is looking at multiple versions of pinecone to determine which version is compatible with other requirements. This could take a while. +#75 101.2 Collecting pinecone<6.0.0,>=5.4.0 (from langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 101.2 Downloading pinecone-5.4.1-py3-none-any.whl.metadata (19 kB) +#75 101.2 Downloading pinecone-5.4.0-py3-none-any.whl.metadata (19 kB) +#75 101.2 Collecting pinecone-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 41)) +#75 101.3 Downloading pinecone_client-5.0.0-py3-none-any.whl.metadata (19 kB) +#75 101.3 Collecting pinecone-plugin-inference==1.0.2 (from pinecone-client->-r /home/user/comps/dataprep/src/requirements.txt (line 41)) +#75 101.3 Downloading pinecone_plugin_inference-1.0.2-py3-none-any.whl.metadata (2.2 kB) +#75 101.3 Collecting pinecone-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 41)) +#75 101.3 Downloading pinecone_client-4.1.2-py3-none-any.whl.metadata (16 kB) +#75 101.3 Collecting pinecone-plugin-inference<4.0.0,>=2.0.0 (from pinecone<6.0.0,>=5.4.0->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 101.3 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl.metadata (2.2 kB) +#75 102.3 Collecting wcwidth (from prompt_toolkit<3.1.0,>=3.0.41->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 102.3 Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB) +#75 102.4 Collecting annotated-types>=0.6.0 (from pydantic>=1.10.8->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 102.5 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) +#75 103.2 Collecting pydantic-core==2.27.2 (from pydantic>=1.10.8->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 103.2 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) +#75 103.2 Collecting grpcio>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 103.3 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) +#75 103.4 Collecting ujson>=2.0.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/dataprep/src/requirements.txt (line 23)) +#75 103.4 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.3 kB) +#75 103.7 Collecting milvus-lite>=2.4.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/dataprep/src/requirements.txt (line 23)) +#75 103.7 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl.metadata (9.2 kB) +#75 104.1 Collecting charset-normalizer<4,>=2 (from requests->huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) +#75 104.1 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#75 104.4 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 104.4 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) +#75 104.7 Collecting threadpoolctl>=3.1.0 (from scikit-learn<2.0.0,>=1.4.2->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 104.7 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) +#75 105.3 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 105.3 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) +#75 105.6 Collecting patsy>=0.5.6 (from statsmodels<0.15.0,>=0.14.2->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 105.6 Downloading patsy-1.0.1-py2.py3-none-any.whl.metadata (3.3 kB) +#75 105.7 Requirement already satisfied: jinja2 in /usr/local/lib/python3.11/site-packages (from torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (3.1.5) +#75 105.7 Requirement already satisfied: sympy==1.13.1 in /usr/local/lib/python3.11/site-packages (from torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (1.13.1) +#75 105.7 Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.11/site-packages (from sympy==1.13.1->torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (1.3.0) +#75 106.2 Collecting safetensors>=0.4.1 (from transformers>=4.39.0->langchain_huggingface->-r /home/user/comps/dataprep/src/requirements.txt (line 22)) +#75 106.2 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) +#75 106.3 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 106.3 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) +#75 106.6 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 106.6 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) +#75 106.7 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 106.7 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) +#75 107.0 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 107.0 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) +#75 107.1 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 107.1 Downloading pycollada-0.8.tar.gz (108 kB) +#75 107.2 Preparing metadata (setup.py): started +#75 107.3 Preparing metadata (setup.py): finished with status 'done' +#75 107.5 Collecting xxhash (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 107.5 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) +#75 107.8 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 107.8 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 207.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.2/45.2 MB 14.8 MB/s eta 0:00:00 +#54 207.4 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) +#54 207.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 13.7 MB/s eta 0:00:00 +#54 207.8 Downloading monotonic-1.6-py2.py3-none-any.whl (8.2 kB) +#54 207.9 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) +#54 207.9 Downloading patsy-1.0.1-py2.py3-none-any.whl (232 kB) +#54 207.9 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl (87 kB) +#54 208.0 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl (6.2 kB) +#54 208.0 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#54 208.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 12.9 MB/s eta 0:00:00 +#54 208.2 Downloading pynndescent-0.5.13-py3-none-any.whl (56 kB) +#54 208.2 Downloading pyparsing-3.2.1-py3-none-any.whl (107 kB) +#54 208.3 Downloading pytest-8.3.4-py3-none-any.whl (343 kB) +#54 208.3 Downloading pytest_asyncio-0.25.3-py3-none-any.whl (19 kB) +#54 208.4 Downloading pytest_socket-0.7.0-py3-none-any.whl (6.8 kB) +#54 208.4 Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB) +#54 208.5 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) +#54 208.5 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) +#54 208.6 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (632 kB) +#54 208.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 632.7/632.7 kB 14.8 MB/s eta 0:00:00 +#54 208.7 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#54 208.7 Downloading smart_open-7.1.0-py3-none-any.whl (61 kB) +#54 208.7 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#54 208.8 Downloading soupsieve-2.6-py3-none-any.whl (36 kB) +#54 208.8 Downloading syrupy-4.8.1-py3-none-any.whl (50 kB) +#54 208.8 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) +#54 208.9 Downloading tifffile-2025.1.10-py3-none-any.whl (227 kB) +#54 208.9 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) +#54 209.0 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53 kB) +#54 209.0 Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB) +#54 209.1 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) +#54 209.1 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) +#54 209.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 14.4 MB/s eta 0:00:00 +#54 209.5 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) +#54 209.6 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) +#54 209.7 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) +#54 211.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 13.1 MB/s eta 0:00:00 +#54 211.1 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) +#54 211.1 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) +#54 211.2 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) +#54 211.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 10.9 MB/s eta 0:00:00 +#54 211.3 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) +#54 211.3 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) +#54 211.4 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) +#54 211.4 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) +#54 211.5 Downloading h2-4.2.0-py3-none-any.whl (60 kB) +#54 211.5 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) +#54 211.6 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) +#54 211.6 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#54 211.6 Downloading pluggy-1.5.0-py3-none-any.whl (20 kB) +#54 211.7 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) +#54 211.7 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) +#54 211.8 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) +#54 211.8 Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) +#54 211.9 Downloading pycparser-2.22-py3-none-any.whl (117 kB) +#54 211.9 Downloading hpack-4.1.0-py3-none-any.whl (34 kB) +#54 212.0 Downloading hyperframe-6.1.0-py3-none-any.whl (13 kB) +#54 213.7 Building wheels for collected packages: docx2txt, pycollada +#54 213.7 Building wheel for docx2txt (setup.py): started +#54 213.9 Building wheel for docx2txt (setup.py): finished with status 'done' +#54 213.9 Created wheel for docx2txt: filename=docx2txt-0.8-py3-none-any.whl size=3990 sha256=650c7b54617b5a7495539d917a4cc8e53ee0cace05cce6b22aefab493f387431 +#54 213.9 Stored in directory: /tmp/pip-ephem-wheel-cache-z0c847cd/wheels/0f/0e/7a/3094a4ceefe657bff7e12dd9592a9d5b6487ef4338ace0afa6 +#54 213.9 Building wheel for pycollada (setup.py): started +#54 214.1 Building wheel for pycollada (setup.py): finished with status 'done' +#54 214.1 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=15b27e9895476035962f8964d87568676c077b6612a1d38442260e5248a07f29 +#54 214.1 Stored in directory: /tmp/pip-ephem-wheel-cache-z0c847cd/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 +#54 214.2 Successfully built docx2txt pycollada +#54 215.0 Installing collected packages: webencodings, sqlglot, simsimd, pytz, python-bidi, pydub, pyclipper, monotonic, filetype, Events, docx2txt, dirtyjson, zstandard, xxhash, XlsxWriter, wrapt, urllib3, ujson, tzdata, types-pillow, tqdm, tinycss2, threadpoolctl, tenacity, svg.path, soupsieve, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, redis, pyyaml, python-multipart, python-dotenv, pyparsing, pymupdf, pygments, pydantic-core, pycparser, pyarrow, psycopg2-binary, protobuf, propcache, prometheus-client, portalocker, pluggy, pinecone-plugin-interface, packaging, orjson, opt_einsum, numpy, ninja, nest-asyncio, neo4j, mypy-extensions, multidict, more-itertools, mdurl, lz4, lxml, llvmlite, lazy-imports, kiwisolver, jsonpointer, joblib, jiter, iniconfig, idna, hyperframe, httpx-sse, hpack, h11, grpcio, greenlet, graspologic-native, future, frozenlist, fonttools, distro, diskcache, defusedxml, cycler, colorlog, click, charset-normalizer, chardet, certifi, beartype, backoff, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, vdms, uvicorn, typing-inspect, types-requests, trimesh, tifffile, SQLAlchemy, smart-open, Shapely, scipy, requests, referencing, python-sat, python-pptx, python-docx, python-dateutil, pytest, pytesseract, pydantic, pinecone-plugin-inference, pgvector, patsy, opencv-python-headless, numba, nltk, ml_dtypes, milvus-lite, marshmallow, markdown-it-py, mapbox_earcut, manifold3d, lazy-loader, jsonpatch, imageio, httpcore, h2, grpcio-tools, embreex, elastic-transport, deprecated, cssselect2, contourpy, cffi, beautifulsoup4, autograd, anytree, anyio, aiosignal, tiktoken, syrupy, starlette, scikit-learn, scikit-image, rich, requests-toolbelt, pytest-socket, pytest-asyncio, pydantic-settings, pycollada, POT, posthog, pinecone, pandas, opensearch-py, matplotlib, jsonschema-specifications, jaxlib, huggingface-hub, httpx, gensim, elasticsearch, dataclasses-json, cairocffi, bs4, aiohttp, tokenizers, text-generation, statsmodels, seaborn, pynndescent, pymilvus, prometheus-fastapi-instrumentator, pathway, openai, llama-index-core, langsmith, jsonschema, jax, hyppo, fastapi, easyocr, docarray, cairosvg, umap-learn, transformers, qdrant-client, llama-index-utils-huggingface, llama-index-llms-openai, llama_index_graph_stores_neo4j, llama-index-embeddings-openai, langchain-core, sentence_transformers, llama-index-llms-text-generation-inference, llama-index-llms-openai-like, llama-index-embeddings-text-embeddings-inference, langchain-text-splitters, langchain-tests, langchain_milvus, langchain-elasticsearch, graspologic, langchain-pinecone, langchain_huggingface, langchain, langchain_community, haystack-experimental, haystack-ai, qdrant-haystack +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 108.1 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 108.1 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) +#75 108.3 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 108.4 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) +#75 108.6 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 108.6 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) +#75 108.8 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 108.8 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) +#75 109.1 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 109.1 Downloading https://download.pytorch.org/whl/mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#75 109.4 Collecting pynndescent>=0.5 (from umap-learn<0.6.0,>=0.5.6->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) +#75 109.4 Downloading pynndescent-0.5.13-py3-none-any.whl.metadata (6.8 kB) +#75 109.7 Collecting python-multipart (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 109.7 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) +#75 109.8 Collecting onnxruntime>=1.17.0 (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 109.8 Downloading onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (4.5 kB) +#75 110.1 Collecting timm (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 110.1 Downloading timm-1.0.14-py3-none-any.whl.metadata (50 kB) +#75 110.4 Collecting pypdfium2 (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 110.5 Downloading pypdfium2-4.30.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (48 kB) +#75 110.7 Collecting cryptography>=36.0.0 (from pdfminer.six->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 110.7 Downloading cryptography-44.0.0-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.7 kB) +#75 111.2 Collecting cffi>=1.1.0 (from cairocffi->cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 111.2 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB) +#75 111.3 Collecting webencodings (from cssselect2->cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 111.3 Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB) +#75 111.6 Collecting pycocotools>=2.0.2 (from effdet->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 111.6 Downloading pycocotools-2.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) +#75 111.7 Collecting omegaconf>=2.0 (from effdet->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 111.7 Downloading omegaconf-2.3.0-py3-none-any.whl.metadata (3.9 kB) +#75 112.1 Collecting google-api-core!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1 (from google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 112.1 Downloading google_api_core-2.24.1-py3-none-any.whl.metadata (3.0 kB) +#75 112.4 Collecting google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1 (from google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 112.5 Downloading google_auth-2.38.0-py2.py3-none-any.whl.metadata (4.8 kB) +#75 112.7 Collecting proto-plus<2.0.0dev,>=1.22.3 (from google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 112.7 Downloading proto_plus-1.26.0-py3-none-any.whl.metadata (2.2 kB) +#75 113.1 Collecting et-xmlfile (from openpyxl->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 113.1 Downloading et_xmlfile-2.0.0-py3-none-any.whl.metadata (2.7 kB) +#75 113.5 Collecting olefile (from python-oxmsg->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 113.5 Downloading olefile-0.47-py2.py3-none-any.whl.metadata (9.7 kB) +#75 113.8 Collecting tifffile>=2022.8.12 (from scikit-image->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 113.8 Downloading tifffile-2025.1.10-py3-none-any.whl.metadata (31 kB) +#75 114.1 Collecting lazy-loader>=0.4 (from scikit-image->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) +#75 114.1 Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) +#75 114.4 Collecting executing>=1.2.0 (from stack_data->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 114.4 Downloading executing-2.2.0-py2.py3-none-any.whl.metadata (8.9 kB) +#75 114.7 Collecting asttokens>=2.1.0 (from stack_data->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 114.7 Downloading asttokens-3.0.0-py3-none-any.whl.metadata (4.7 kB) +#75 114.8 Collecting pure-eval (from stack_data->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) +#75 114.8 Downloading pure_eval-0.2.3-py3-none-any.whl.metadata (6.3 kB) +#75 115.1 Collecting aiofiles>=24.1.0 (from unstructured-client->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 115.1 Downloading aiofiles-24.1.0-py3-none-any.whl.metadata (10 kB) +#75 115.4 Collecting eval-type-backport<0.3.0,>=0.2.0 (from unstructured-client->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 115.4 Downloading eval_type_backport-0.2.2-py3-none-any.whl.metadata (2.2 kB) +#75 115.6 Collecting jsonpath-python<2.0.0,>=1.0.6 (from unstructured-client->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 115.6 Downloading jsonpath_python-1.0.6-py3-none-any.whl.metadata (12 kB) +#75 115.9 Collecting pycparser (from cffi>=1.1.0->cairocffi->cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) +#75 115.9 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes) +#75 116.1 Collecting googleapis-common-protos<2.0.dev0,>=1.56.2 (from google-api-core!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 116.1 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#75 116.4 Collecting grpcio-status<2.0.dev0,>=1.33.2 (from google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 116.4 Downloading grpcio_status-1.70.0-py3-none-any.whl.metadata (1.1 kB) +#75 116.5 Collecting cachetools<6.0,>=2.0.0 (from google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 116.5 Downloading cachetools-5.5.1-py3-none-any.whl.metadata (5.4 kB) +#75 116.6 Collecting pyasn1-modules>=0.2.1 (from google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 116.6 Downloading pyasn1_modules-0.4.1-py3-none-any.whl.metadata (3.5 kB) +#75 116.9 Collecting rsa<5,>=3.1.4 (from google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 116.9 Downloading rsa-4.9-py3-none-any.whl.metadata (4.2 kB) +#75 117.2 Collecting hyperframe<7,>=6.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 117.2 Downloading hyperframe-6.1.0-py3-none-any.whl.metadata (4.3 kB) +#75 117.4 Collecting hpack<5,>=4.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) +#75 117.4 Downloading hpack-4.1.0-py3-none-any.whl.metadata (4.6 kB) +#75 117.7 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 117.7 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) +#75 117.8 Collecting certifi>=2024.07.04 (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) +#75 117.8 Downloading certifi-2024.12.14-py3-none-any.whl.metadata (2.3 kB) +#75 118.2 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 118.2 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) +#75 118.5 Collecting antlr4-python3-runtime==4.9.* (from omegaconf>=2.0->effdet->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 118.6 Downloading antlr4-python3-runtime-4.9.3.tar.gz (117 kB) +#75 118.6 Preparing metadata (setup.py): started +#75 118.8 Preparing metadata (setup.py): finished with status 'done' +#75 119.0 Collecting coloredlogs (from onnxruntime>=1.17.0->unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 119.0 Downloading coloredlogs-15.0.1-py2.py3-none-any.whl.metadata (12 kB) +#75 119.3 Collecting flatbuffers (from onnxruntime>=1.17.0->unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 119.3 Downloading flatbuffers-25.1.24-py2.py3-none-any.whl.metadata (875 bytes) +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 219.1 Attempting uninstall: numpy +#54 219.2 Found existing installation: numpy 2.2.2 +#54 219.2 Uninstalling numpy-2.2.2: +#54 219.2 Successfully uninstalled numpy-2.2.2 +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 119.8 Collecting iniconfig (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 119.8 Downloading iniconfig-2.0.0-py3-none-any.whl.metadata (2.6 kB) +#75 120.1 Collecting pluggy<2,>=1.5 (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) +#75 120.1 Downloading pluggy-1.5.0-py3-none-any.whl.metadata (4.8 kB) +#75 120.4 Collecting propcache>=0.2.0 (from yarl<2.0,>=1.12.0->aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) +#75 120.5 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) +#75 120.5 Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.11/site-packages (from jinja2->torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (3.0.2) +#75 120.8 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 120.8 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) +#75 120.9 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 120.9 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) +#75 121.6 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) +#75 121.6 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) +#75 121.8 INFO: pip is looking at multiple versions of grpcio-status to determine which version is compatible with other requirements. This could take a while. +#75 121.8 Collecting grpcio-status<2.0.dev0,>=1.33.2 (from google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 121.8 Downloading grpcio_status-1.70.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 121.8 Downloading grpcio_status-1.69.0-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 Downloading grpcio_status-1.69.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 Downloading grpcio_status-1.68.1-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 Downloading grpcio_status-1.68.0-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 Downloading grpcio_status-1.68.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 Downloading grpcio_status-1.67.1-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 INFO: pip is still looking at multiple versions of grpcio-status to determine which version is compatible with other requirements. This could take a while. +#75 121.9 Downloading grpcio_status-1.67.0-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 Downloading grpcio_status-1.67.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 121.9 Downloading grpcio_status-1.66.2-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 Downloading grpcio_status-1.66.1-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 Downloading grpcio_status-1.66.0-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. +#75 122.0 Downloading grpcio_status-1.66.0rc5-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 Downloading grpcio_status-1.66.0rc3-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 Downloading grpcio_status-1.66.0rc2-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 Downloading grpcio_status-1.66.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 Downloading grpcio_status-1.65.5-py3-none-any.whl.metadata (1.1 kB) +#75 122.0 Downloading grpcio_status-1.65.4-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.65.2-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.65.1-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.65.0rc2-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.65.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.64.3-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.64.1-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.64.0-py3-none-any.whl.metadata (1.1 kB) +#75 122.1 Downloading grpcio_status-1.64.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 122.2 Downloading grpcio_status-1.63.2-py3-none-any.whl.metadata (1.1 kB) +#75 122.2 Downloading grpcio_status-1.63.0-py3-none-any.whl.metadata (1.1 kB) +#75 122.2 Downloading grpcio_status-1.63.0rc2-py3-none-any.whl.metadata (1.1 kB) +#75 122.2 Downloading grpcio_status-1.63.0rc1-py3-none-any.whl.metadata (1.1 kB) +#75 122.6 Collecting pyasn1<0.7.0,>=0.4.6 (from pyasn1-modules>=0.2.1->google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 122.6 Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) +#75 123.0 Collecting humanfriendly>=9.1 (from coloredlogs->onnxruntime>=1.17.0->unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) +#75 123.0 Downloading humanfriendly-10.0-py2.py3-none-any.whl.metadata (9.2 kB) +#75 123.1 Downloading pgvector-0.2.5-py2.py3-none-any.whl (9.6 kB) +#75 123.1 Downloading beautifulsoup4-4.13.1-py3-none-any.whl (185 kB) +#75 123.1 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +#75 123.1 Downloading decord-0.6.0-py3-none-manylinux2010_x86_64.whl (13.6 MB) +#75 123.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.6/13.6 MB 279.1 MB/s eta 0:00:00 +#75 123.2 Downloading easyocr-1.7.2-py3-none-any.whl (2.9 MB) +#75 123.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 127.3 MB/s eta 0:00:00 +#75 123.2 Downloading einops-0.8.0-py3-none-any.whl (43 kB) +#75 123.2 Downloading elasticsearch-8.17.1-py3-none-any.whl (653 kB) +#75 123.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 654.0/654.0 kB 501.8 MB/s eta 0:00:00 +#75 123.2 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) +#75 123.2 Downloading future-1.0.0-py3-none-any.whl (491 kB) +#75 123.2 Downloading graspologic-3.4.1-py3-none-any.whl (5.2 MB) +#75 123.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/5.2 MB 126.8 MB/s eta 0:00:00 +#75 123.3 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.4 MB) +#75 123.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.4/38.4 MB 166.9 MB/s eta 0:00:00 +#75 123.5 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) +#75 123.5 Downloading ipython-8.32.0-py3-none-any.whl (825 kB) +#75 123.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 825.5/825.5 kB 572.4 MB/s eta 0:00:00 +#75 123.6 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) +#75 123.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 475.7 MB/s eta 0:00:00 +#75 123.6 Downloading langchain_community-0.3.16-py3-none-any.whl (2.5 MB) +#75 123.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 232.1 MB/s eta 0:00:00 +#75 123.6 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl (45 kB) +#75 123.6 Downloading langchain_experimental-0.3.4-py3-none-any.whl (209 kB) +#75 123.6 Downloading langchain_openai-0.3.3-py3-none-any.whl (54 kB) +#75 123.6 Downloading langchain_pinecone-0.2.2-py3-none-any.whl (11 kB) +#75 123.6 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) +#75 123.6 Downloading langchain_huggingface-0.1.2-py3-none-any.whl (21 kB) +#75 123.7 Downloading langchain_milvus-0.1.8-py3-none-any.whl (27 kB) +#75 123.7 Downloading llama_index-0.12.15-py3-none-any.whl (6.9 kB) +#75 123.7 Downloading llama_index_core-0.12.15-py3-none-any.whl (1.6 MB) +#75 123.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 258.0 MB/s eta 0:00:00 +#75 123.7 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl (3.1 kB) +#75 123.7 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl (17 kB) +#75 123.7 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl (14 kB) +#75 123.7 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl (3.1 kB) +#75 123.7 Downloading Markdown-3.7-py3-none-any.whl (106 kB) +#75 123.8 Downloading moviepy-2.1.2-py3-none-any.whl (126 kB) +#75 123.8 Downloading neo4j-5.27.0-py3-none-any.whl (301 kB) +#75 123.8 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) +#75 123.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 394.2 MB/s eta 0:00:00 +#75 123.8 Downloading openai-1.61.0-py3-none-any.whl (460 kB) +#75 123.8 Downloading opencv_python-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (63.0 MB) +#75 124.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.0/63.0 MB 549.3 MB/s eta 0:00:00 +#75 124.0 Downloading opensearch_py-2.8.0-py3-none-any.whl (353 kB) +#75 124.0 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#75 124.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 581.4 MB/s eta 0:00:00 +#75 124.0 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) +#75 124.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 292.6 MB/s eta 0:00:00 +#75 124.0 Downloading pinecone_client-4.1.2-py3-none-any.whl (216 kB) +#75 124.0 Downloading pinecone-5.4.2-py3-none-any.whl (427 kB) +#75 124.1 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl (87 kB) +#75 124.1 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) +#75 124.1 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (20.0 MB) +#75 124.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 20.0/20.0 MB 213.9 MB/s eta 0:00:00 +#75 124.2 Downloading py4j-0.10.9.7-py2.py3-none-any.whl (200 kB) +#75 124.2 Downloading pytesseract-0.3.13-py3-none-any.whl (14 kB) +#75 124.2 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286 kB) +#75 124.2 Downloading python_docx-1.1.2-py3-none-any.whl (244 kB) +#75 124.2 Downloading python_pptx-1.0.2-py3-none-any.whl (472 kB) +#75 124.2 Downloading qdrant_client-1.13.2-py3-none-any.whl (306 kB) +#75 124.3 Downloading redis-5.2.1-py3-none-any.whl (261 kB) +#75 124.3 Downloading sentence_transformers-3.4.1-py3-none-any.whl (275 kB) +#75 124.3 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) +#75 124.3 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) +#75 124.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 363.8 MB/s eta 0:00:00 +#75 124.3 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#75 124.3 Downloading tzlocal-5.2-py3-none-any.whl (17 kB) +#75 124.3 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) +#75 124.3 Downloading vdms-0.0.21-py3-none-any.whl (4.6 kB) +#75 124.3 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl (311 kB) +#75 124.4 Downloading webvtt_py-0.5.1-py3-none-any.whl (19 kB) +#75 124.4 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#75 124.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 258.9 MB/s eta 0:00:00 +#75 124.4 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) +#75 124.4 Downloading anytree-2.12.1-py3-none-any.whl (44 kB) +#75 124.4 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) +#75 124.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 189.1 MB/s eta 0:00:00 +#75 124.6 Downloading beartype-0.18.5-py3-none-any.whl (917 kB) +#75 124.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 917.8/917.8 kB 562.7 MB/s eta 0:00:00 +#75 124.6 Downloading click-8.1.8-py3-none-any.whl (98 kB) +#75 124.6 Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) +#75 124.7 Downloading decorator-5.1.1-py3-none-any.whl (9.1 kB) +#75 124.7 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) +#75 124.7 Downloading dirtyjson-1.0.8-py3-none-any.whl (25 kB) +#75 124.7 Downloading distro-1.9.0-py3-none-any.whl (20 kB) +#75 124.7 Downloading elastic_transport-8.17.0-py3-none-any.whl (64 kB) +#75 124.7 Downloading filetype-1.2.0-py2.py3-none-any.whl (19 kB) +#75 124.7 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.7 MB) +#75 124.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 26.7/26.7 MB 171.7 MB/s eta 0:00:00 +#75 124.9 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365 kB) +#75 124.9 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB) +#75 124.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/2.8 MB 365.6 MB/s eta 0:00:00 +#75 124.9 Downloading h11-0.14.0-py3-none-any.whl (58 kB) +#75 124.9 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#75 124.9 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) +#75 124.9 Downloading httpx_sse-0.4.0-py3-none-any.whl (7.8 kB) +#75 124.9 Downloading hyppo-0.4.0-py3-none-any.whl (146 kB) +#75 125.0 Downloading imageio-2.37.0-py3-none-any.whl (315 kB) +#75 125.0 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl (29.5 MB) +#75 125.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 29.5/29.5 MB 185.8 MB/s eta 0:00:00 +#75 125.1 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) +#75 125.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 334.4 MB/s eta 0:00:00 +#75 125.2 Downloading jedi-0.19.2-py2.py3-none-any.whl (1.6 MB) +#75 125.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 607.5 MB/s eta 0:00:00 +#75 125.2 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345 kB) +#75 125.2 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) +#75 125.2 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) +#75 125.2 Downloading langchain_tests-0.3.10-py3-none-any.whl (37 kB) +#75 125.2 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) +#75 125.2 Downloading llama_index_agent_openai-0.4.3-py3-none-any.whl (13 kB) +#75 125.2 Downloading llama_index_cli-0.4.0-py3-none-any.whl (27 kB) +#75 125.2 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl (6.2 kB) +#75 125.2 Downloading llama_index_indices_managed_llama_cloud-0.6.4-py3-none-any.whl (13 kB) +#75 125.3 Downloading llama_index_multi_modal_llms_openai-0.4.3-py3-none-any.whl (5.9 kB) +#75 125.3 Downloading llama_index_program_openai-0.3.1-py3-none-any.whl (5.3 kB) +#75 125.3 Downloading llama_index_question_gen_openai-0.3.0-py3-none-any.whl (2.9 kB) +#75 125.3 Downloading llama_index_readers_file-0.4.4-py3-none-any.whl (39 kB) +#75 125.3 Downloading llama_index_readers_llama_parse-0.4.0-py3-none-any.whl (2.5 kB) +#75 125.3 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl (2.9 kB) +#75 125.3 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) +#75 125.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 536.6 MB/s eta 0:00:00 +#75 125.3 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) +#75 125.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 313.5 MB/s eta 0:00:00 +#75 125.4 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB) +#75 125.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.6/8.6 MB 480.0 MB/s eta 0:00:00 +#75 125.4 Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB) +#75 125.4 Downloading nltk-3.9.1-py3-none-any.whl (1.5 MB) +#75 125.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 520.2 MB/s eta 0:00:00 +#75 125.4 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB) +#75 125.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/3.8 MB 269.2 MB/s eta 0:00:00 +#75 125.4 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) +#75 125.4 Downloading packaging-24.2-py3-none-any.whl (65 kB) +#75 125.4 Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB) +#75 125.5 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl (6.2 kB) +#75 125.5 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (897 kB) +#75 125.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 897.5/897.5 kB 165.9 MB/s eta 0:00:00 +#75 125.5 Downloading proglog-0.1.10-py3-none-any.whl (6.1 kB) +#75 125.5 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) +#75 125.5 Downloading prompt_toolkit-3.0.50-py3-none-any.whl (387 kB) +#75 125.5 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) +#75 125.5 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) +#75 125.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 591.6 MB/s eta 0:00:00 +#75 125.5 Downloading pydantic_settings-2.7.1-py3-none-any.whl (29 kB) +#75 125.5 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#75 125.5 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#75 125.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 551.1 MB/s eta 0:00:00 +#75 125.6 Downloading pymilvus-2.5.4-py3-none-any.whl (222 kB) +#75 125.6 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#75 125.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 181.1 MB/s eta 0:00:00 +#75 125.6 Downloading pypdf-5.2.0-py3-none-any.whl (298 kB) +#75 125.6 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#75 125.6 Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB) +#75 125.6 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) +#75 125.7 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) +#75 125.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 591.0 MB/s eta 0:00:00 +#75 125.7 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) +#75 125.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 542.4 MB/s eta 0:00:00 +#75 125.7 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#75 125.7 Downloading rich-13.9.4-py3-none-any.whl (242 kB) +#75 125.7 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) +#75 125.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 143.2 MB/s eta 0:00:00 +#75 125.8 Downloading seaborn-0.13.2-py3-none-any.whl (294 kB) +#75 125.8 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#75 125.8 Downloading soupsieve-2.6-py3-none-any.whl (36 kB) +#75 125.8 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB) +#75 125.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 564.6 MB/s eta 0:00:00 +#75 125.8 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) +#75 125.9 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB) +#75 125.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/10.8 MB 243.3 MB/s eta 0:00:00 +#75 125.9 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) +#75 125.9 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) +#75 125.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 345.2 MB/s eta 0:00:00 +#75 125.9 Downloading traitlets-5.14.3-py3-none-any.whl (85 kB) +#75 126.0 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) +#75 126.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 233.3 MB/s eta 0:00:00 +#75 126.0 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) +#75 126.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 574.0 MB/s eta 0:00:00 +#75 126.0 Downloading https://download.pytorch.org/whl/triton-3.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (166.7 MB) +#75 128.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.7/166.7 MB 63.9 MB/s eta 0:00:00 +#75 128.6 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) +#75 128.7 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#75 128.7 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) +#75 128.7 Downloading umap_learn-0.5.7-py3-none-any.whl (88 kB) +#75 128.7 Downloading unstructured_inference-0.8.7-py3-none-any.whl (48 kB) +#75 128.7 Downloading pdfminer.six-20240706-py3-none-any.whl (5.6 MB) +#75 128.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.6/5.6 MB 248.5 MB/s eta 0:00:00 +#75 128.7 Downloading unstructured.pytesseract-0.3.13-py3-none-any.whl (14 kB) +#75 128.7 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#75 128.7 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) +#75 128.8 Downloading XlsxWriter-3.2.2-py3-none-any.whl (165 kB) +#75 128.8 Downloading backoff-2.2.1-py3-none-any.whl (15 kB) +#75 128.8 Downloading cairocffi-1.7.1-py3-none-any.whl (75 kB) +#75 128.8 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) +#75 128.8 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +#75 128.8 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB) +#75 128.8 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) +#75 128.8 Downloading effdet-0.4.1-py3-none-any.whl (112 kB) +#75 128.8 Downloading emoji-2.14.1-py3-none-any.whl (590 kB) +#75 128.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 590.6/590.6 kB 575.6 MB/s eta 0:00:00 +#75 128.8 Downloading Events-0.5-py3-none-any.whl (6.8 kB) +#75 128.9 Downloading google_cloud_vision-3.9.0-py2.py3-none-any.whl (514 kB) +#75 128.9 Downloading html5lib-1.1-py2.py3-none-any.whl (112 kB) +#75 128.9 Downloading matplotlib_inline-0.1.7-py3-none-any.whl (9.9 kB) +#75 128.9 Downloading more_itertools-10.6.0-py3-none-any.whl (63 kB) +#75 128.9 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (422 kB) +#75 128.9 Downloading onnx-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.0 MB) +#75 129.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.0/16.0 MB 184.4 MB/s eta 0:00:00 +#75 129.0 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.0 MB) +#75 129.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.0/50.0 MB 194.0 MB/s eta 0:00:00 +#75 129.3 Downloading openpyxl-3.1.5-py2.py3-none-any.whl (250 kB) +#75 129.3 Downloading pdf2image-1.17.0-py3-none-any.whl (11 kB) +#75 129.3 Downloading pi_heif-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) +#75 129.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 232.6 MB/s eta 0:00:00 +#75 129.3 Downloading pikepdf-9.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB) +#75 129.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 175.5 MB/s eta 0:00:00 +#75 129.3 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287 kB) +#75 129.3 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (969 kB) +#75 129.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 969.6/969.6 kB 238.2 MB/s eta 0:00:00 +#75 129.4 Downloading pypandoc-1.15-py3-none-any.whl (21 kB) +#75 129.4 Downloading python_iso639-2025.1.28-py3-none-any.whl (166 kB) +#75 129.4 Downloading python_magic-0.4.27-py2.py3-none-any.whl (13 kB) +#75 129.4 Downloading python_oxmsg-0.0.2-py3-none-any.whl (31 kB) +#75 129.4 Downloading rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB) +#75 129.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 489.5 MB/s eta 0:00:00 +#75 129.4 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.8 MB) +#75 129.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.8/14.8 MB 223.8 MB/s eta 0:00:00 +#75 129.5 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) +#75 129.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 172.9 MB/s eta 0:00:00 +#75 129.5 Downloading stack_data-0.6.3-py3-none-any.whl (24 kB) +#75 129.5 Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB) +#75 129.5 Downloading unstructured-0.16.17-py3-none-any.whl (1.8 MB) +#75 129.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 387.2 MB/s eta 0:00:00 +#75 129.6 Downloading unstructured_client-0.29.0-py3-none-any.whl (63 kB) +#75 129.6 Downloading xlrd-2.0.1-py2.py3-none-any.whl (96 kB) +#75 129.6 Downloading aiofiles-24.1.0-py3-none-any.whl (15 kB) +#75 129.6 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) +#75 129.6 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#75 129.6 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#75 129.6 Downloading asttokens-3.0.0-py3-none-any.whl (26 kB) +#75 129.6 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) +#75 129.6 Downloading autograd-1.7.0-py3-none-any.whl (52 kB) +#75 129.6 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB) +#75 129.7 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#75 129.7 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326 kB) +#75 129.7 Downloading cryptography-44.0.0-cp39-abi3-manylinux_2_28_x86_64.whl (4.2 MB) +#75 129.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.2/4.2 MB 358.1 MB/s eta 0:00:00 +#75 129.7 Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB) +#75 129.7 Downloading eval_type_backport-0.2.2-py3-none-any.whl (5.8 kB) +#75 129.7 Downloading executing-2.2.0-py2.py3-none-any.whl (26 kB) +#75 129.7 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB) +#75 129.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.9/4.9 MB 300.0 MB/s eta 0:00:00 +#75 129.8 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) +#75 129.8 Downloading google_api_core-2.24.1-py3-none-any.whl (160 kB) +#75 129.8 Downloading google_auth-2.38.0-py2.py3-none-any.whl (210 kB) +#75 129.8 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (602 kB) +#75 129.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 602.4/602.4 kB 597.8 MB/s eta 0:00:00 +#75 129.8 Downloading h2-4.2.0-py3-none-any.whl (60 kB) +#75 129.8 Downloading idna-3.10-py3-none-any.whl (70 kB) +#75 129.8 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) +#75 130.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 232.7 MB/s eta 0:00:00 +#75 130.3 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) +#75 130.3 Downloading jsonpath_python-1.0.6-py3-none-any.whl (7.6 kB) +#75 130.3 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB) +#75 130.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 395.7 MB/s eta 0:00:00 +#75 130.3 Downloading lazy_loader-0.4-py3-none-any.whl (12 kB) +#75 130.3 Downloading llama_cloud-0.1.11-py3-none-any.whl (250 kB) +#75 130.3 Downloading certifi-2024.12.14-py3-none-any.whl (164 kB) +#75 130.3 Downloading llama_parse-0.5.20-py3-none-any.whl (16 kB) +#75 130.3 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB) +#75 130.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.4/42.4 MB 183.1 MB/s eta 0:00:00 +#75 130.6 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) +#75 130.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 247.1 MB/s eta 0:00:00 +#75 130.6 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) +#75 130.6 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#75 130.6 Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) +#75 130.6 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl (45.2 MB) +#75 130.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.2/45.2 MB 200.3 MB/s eta 0:00:00 +#75 130.9 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) +#75 130.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 231.2 MB/s eta 0:00:00 +#75 130.9 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) +#75 130.9 Downloading omegaconf-2.3.0-py3-none-any.whl (79 kB) +#75 130.9 Downloading onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (13.3 MB) +#75 131.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.3/13.3 MB 169.4 MB/s eta 0:00:00 +#75 131.0 Downloading parso-0.8.4-py2.py3-none-any.whl (103 kB) +#75 131.0 Downloading patsy-1.0.1-py2.py3-none-any.whl (232 kB) +#75 131.0 Downloading proto_plus-1.26.0-py3-none-any.whl (50 kB) +#75 131.0 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB) +#75 131.0 Downloading pycocotools-2.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458 kB) +#75 131.1 Downloading pynndescent-0.5.13-py3-none-any.whl (56 kB) +#75 131.1 Downloading pyparsing-3.2.1-py3-none-any.whl (107 kB) +#75 131.1 Downloading pytest-8.3.4-py3-none-any.whl (343 kB) +#75 131.1 Downloading pytest_asyncio-0.25.3-py3-none-any.whl (19 kB) +#75 131.1 Downloading pytest_socket-0.7.0-py3-none-any.whl (6.8 kB) +#75 131.1 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) +#75 131.1 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) +#75 131.1 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (632 kB) +#75 131.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 632.7/632.7 kB 587.5 MB/s eta 0:00:00 +#75 131.1 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#75 131.1 Downloading smart_open-7.1.0-py3-none-any.whl (61 kB) +#75 131.1 Downloading striprtf-0.0.26-py3-none-any.whl (6.9 kB) +#75 131.2 Downloading syrupy-4.8.1-py3-none-any.whl (50 kB) +#75 131.2 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) +#75 131.2 Downloading tifffile-2025.1.10-py3-none-any.whl (227 kB) +#75 131.2 Downloading timm-1.0.14-py3-none-any.whl (2.4 MB) +#75 131.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 258.8 MB/s eta 0:00:00 +#75 131.2 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53 kB) +#75 131.2 Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB) +#75 131.2 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) +#75 131.2 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) +#75 131.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 544.9 MB/s eta 0:00:00 +#75 131.2 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) +#75 131.3 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) +#75 131.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 301.5 MB/s eta 0:00:00 +#75 131.3 Downloading et_xmlfile-2.0.0-py3-none-any.whl (18 kB) +#75 131.3 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) +#75 131.3 Downloading olefile-0.47-py2.py3-none-any.whl (114 kB) +#75 131.4 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) +#75 131.4 Downloading pure_eval-0.2.3-py3-none-any.whl (11 kB) +#75 131.4 Downloading pypdfium2-4.30.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB) +#75 131.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 302.5 MB/s eta 0:00:00 +#75 131.4 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) +#75 131.4 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) +#75 131.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 598.3 MB/s eta 0:00:00 +#75 131.4 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) +#75 131.4 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) +#75 131.4 Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB) +#75 131.4 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) +#75 131.5 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) +#75 131.5 Downloading cachetools-5.5.1-py3-none-any.whl (9.5 kB) +#75 131.5 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#75 131.5 Downloading grpcio_status-1.63.0rc1-py3-none-any.whl (14 kB) +#75 131.5 Downloading hpack-4.1.0-py3-none-any.whl (34 kB) +#75 131.5 Downloading hyperframe-6.1.0-py3-none-any.whl (13 kB) +#75 131.5 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) +#75 131.5 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) +#75 131.5 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#75 131.5 Downloading pluggy-1.5.0-py3-none-any.whl (20 kB) +#75 131.5 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) +#75 131.5 Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB) +#75 131.6 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) +#75 131.6 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) +#75 131.6 Downloading rsa-4.9-py3-none-any.whl (34 kB) +#75 131.6 Downloading coloredlogs-15.0.1-py2.py3-none-any.whl (46 kB) +#75 131.6 Downloading flatbuffers-25.1.24-py2.py3-none-any.whl (30 kB) +#75 131.6 Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) +#75 131.6 Downloading pycparser-2.22-py3-none-any.whl (117 kB) +#75 131.6 Downloading humanfriendly-10.0-py2.py3-none-any.whl (86 kB) +#75 131.6 Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) +#75 134.1 Building wheels for collected packages: docx2txt, html2text, openai-whisper, psycopg2, pyspark, typing, langdetect, antlr4-python3-runtime, pycollada +#75 134.1 Building wheel for docx2txt (setup.py): started +#75 134.3 Building wheel for docx2txt (setup.py): finished with status 'done' +#75 134.3 Created wheel for docx2txt: filename=docx2txt-0.8-py3-none-any.whl size=3990 sha256=db4dec12df324fc0ae53bd5d6b35e1a13d31e1bbcfcb500172085834463037b6 +#75 134.3 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/0f/0e/7a/3094a4ceefe657bff7e12dd9592a9d5b6487ef4338ace0afa6 +#75 134.3 Building wheel for html2text (setup.py): started +#75 134.6 Building wheel for html2text (setup.py): finished with status 'done' +#75 134.6 Created wheel for html2text: filename=html2text-2024.2.26-py3-none-any.whl size=33107 sha256=de8406962df63c87c96cb5ea3544478f23de8df3ca3713ee798e0e6f0cd2dd3a +#75 134.6 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/23/58/7c/d9c8c4d924a1ac2b621add1b2c1d30b639629a33cfdfde6a45 +#75 134.6 Building wheel for openai-whisper (pyproject.toml): started +#75 134.9 Building wheel for openai-whisper (pyproject.toml): finished with status 'done' +#75 134.9 Created wheel for openai-whisper: filename=openai_whisper-20240930-py3-none-any.whl size=803373 sha256=3d9ad731e94f65b1453372a7b4e2f8fb799fe0d7cd94a35189ad9c904e1858b7 +#75 134.9 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/2f/f2/ce/6eb23db4091d026238ce76703bd66da60b969d70bcc81d5d3a +#75 134.9 Building wheel for psycopg2 (setup.py): started +#75 142.2 Building wheel for psycopg2 (setup.py): finished with status 'done' +#75 142.2 Created wheel for psycopg2: filename=psycopg2-2.9.10-cp311-cp311-linux_x86_64.whl size=494879 sha256=5e62d919b7e03889d5e14f914c301c6523829fb08227b7e9aa455ef023ab3e92 +#75 142.2 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/d9/83/60/e9660320860aef3c38a67dea6ff9538e4cad76502cb39ed280 +#75 142.2 Building wheel for pyspark (setup.py): started +#75 154.7 Building wheel for pyspark (setup.py): finished with status 'done' +#75 155.4 Created wheel for pyspark: filename=pyspark-3.5.4-py2.py3-none-any.whl size=317849827 sha256=7828ede732cbe062d114bcaea49aef0e4de33efea81dff793da5400cbd813270 +#75 155.4 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/8d/28/22/5dbae8a8714ef046cebd320d0ef7c92f5383903cf854c15c0c +#75 155.4 Building wheel for typing (setup.py): started +#75 155.6 Building wheel for typing (setup.py): finished with status 'done' +#75 155.6 Created wheel for typing: filename=typing-3.7.4.3-py3-none-any.whl size=26365 sha256=ded2c080c7a78fc8543493edab72bd3d78bbcca10350c08cf35ba1884e76782b +#75 155.6 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/9d/67/2f/53e3ef32ec48d11d7d60245255e2d71e908201d20c880c08ee +#75 155.6 Building wheel for langdetect (setup.py): started +#75 156.1 Building wheel for langdetect (setup.py): finished with status 'done' +#75 156.1 Created wheel for langdetect: filename=langdetect-1.0.9-py3-none-any.whl size=993284 sha256=896842b35ccfe8aacaddcf3036143c0ef3e83fe00db194994ba766ccce9bc519 +#75 156.1 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/0a/f2/b2/e5ca405801e05eb7c8ed5b3b4bcf1fcabcd6272c167640072e +#75 156.1 Building wheel for antlr4-python3-runtime (setup.py): started +#75 156.3 Building wheel for antlr4-python3-runtime (setup.py): finished with status 'done' +#75 156.3 Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144591 sha256=4dbbc4f046df5f3ed62cf70d6dce99e2755f71e076732c32fa130ccf781ab121 +#75 156.3 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/1a/97/32/461f837398029ad76911109f07047fde1d7b661a147c7c56d1 +#75 156.3 Building wheel for pycollada (setup.py): started +#75 156.5 Building wheel for pycollada (setup.py): finished with status 'done' +#75 156.5 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=5d81df707557423b27db09c2e3cdad81b6ade754a61aec3996f42a975d667d3e +#75 156.5 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 +#75 156.6 Successfully built docx2txt html2text openai-whisper psycopg2 pyspark typing langdetect antlr4-python3-runtime pycollada +#75 157.5 Installing collected packages: webencodings, wcwidth, triton, striprtf, simsimd, pytz, python-bidi, pydub, pyclipper, py4j, pure-eval, ptyprocess, flatbuffers, filetype, Events, docx2txt, dirtyjson, antlr4-python3-runtime, zstandard, xxhash, XlsxWriter, xlrd, wrapt, webvtt-py, urllib3, ujson, tzlocal, tzdata, typing, types-pillow, traitlets, tqdm, tinycss2, threadpoolctl, tenacity, svg.path, soupsieve, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, redis, rapidfuzz, PyYAML, python-multipart, python-magic, python-iso639, python-dotenv, pyspark, pypdfium2, pypdf, pyparsing, pypandoc, pymupdf, pygments, pydantic-core, pycparser, pyasn1, psycopg2, psutil, protobuf, propcache, prompt_toolkit, prometheus-client, portalocker, pluggy, pinecone-plugin-interface, Pillow, pexpect, parso, packaging, orjson, opt_einsum, olefile, numpy, ninja, nest-asyncio, neo4j, mypy-extensions, multidict, more-itertools, mdurl, markdown, lz4, lxml, llvmlite, kiwisolver, jsonpointer, jsonpath-python, joblib, jiter, iniconfig, imageio_ffmpeg, idna, hyperframe, humanfriendly, httpx-sse, html2text, hpack, h11, grpcio, greenlet, graspologic-native, future, frozenlist, fonttools, executing, eval-type-backport, et-xmlfile, emoji, einops, distro, defusedxml, decorator, cycler, colorlog, click, charset-normalizer, chardet, certifi, cachetools, beartype, backoff, av, attrs, asttokens, annotated-types, aiohappyeyeballs, aiofiles, yarl, xatlas, vhacdx, vdms, uvicorn, unstructured.pytesseract, typing-inspect, types-requests, trimesh, tifffile, stack_data, SQLAlchemy, smart-open, Shapely, scipy, rsa, requests, referencing, python-pptx, python-oxmsg, python-docx, python-dateutil, pytest, pytesseract, pydantic, pyasn1-modules, proto-plus, proglog, pinecone-plugin-inference, pinecone-client, pi-heif, pgvector, pdf2image, patsy, openpyxl, opencv-python-headless, opencv-python, onnx, omegaconf, numba, nltk, ml_dtypes, milvus-lite, matplotlib-inline, marshmallow, markdown-it-py, mapbox_earcut, manifold3d, lazy-loader, langdetect, jsonpatch, jedi, imageio, httpcore, html5lib, h2, grpcio-tools, googleapis-common-protos, embreex, elastic-transport, deprecated, decord, cssselect2, contourpy, coloredlogs, cffi, beautifulsoup4, autograd, anytree, anyio, aiosignal, tiktoken, syrupy, starlette, scikit-learn, scikit-image, rich, requests-toolbelt, pytest-socket, pytest-asyncio, pydantic-settings, pycollada, POT, pinecone, pikepdf, pandas, opensearch-py, onnxruntime, moviepy, matplotlib, jsonschema-specifications, jaxlib, ipython, huggingface_hub, httpx, grpcio-status, google-auth, gensim, elasticsearch, dataclasses-json, cryptography, cairocffi, aiohttp, unstructured-client, tokenizers, timm, statsmodels, seaborn, pynndescent, pymilvus, pycocotools, prometheus-fastapi-instrumentator, pdfminer.six, openai-whisper, openai, llama-index-core, llama-cloud, langsmith, jsonschema, jax, hyppo, google-api-core, fastapi, easyocr, docarray, cairosvg, unstructured, umap-learn, transformers, qdrant-client, llama-parse, llama-index-utils-huggingface, llama-index-readers-file, llama-index-llms-openai, llama-index-indices-managed-llama-cloud, llama-index-graph-stores-neo4j, llama-index-embeddings-openai, langchain-core, effdet, unstructured-inference, sentence_transformers, llama-index-readers-llama-parse, llama-index-multi-modal-llms-openai, llama-index-llms-openai-like, llama-index-embeddings-text-embeddings-inference, llama-index-cli, llama-index-agent-openai, langchain-text-splitters, langchain-tests, langchain-openai, langchain_milvus, langchain-elasticsearch, graspologic, google-cloud-vision, llama-index-program-openai, langchain-pinecone, langchain_huggingface, langchain, llama-index-question-gen-openai, langchain-community, llama-index, langchain-experimental +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 262.3 Successfully installed Events-0.5 POT-0.9.5 SQLAlchemy-2.0.37 Shapely-2.0.7 XlsxWriter-3.2.2 aiohappyeyeballs-2.4.4 aiohttp-3.10.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 anytree-2.12.1 attrs-25.1.0 autograd-1.7.0 av-14.1.0 backoff-2.2.1 beartype-0.18.5 beautifulsoup4-4.13.1 bs4-0.0.2 cairocffi-1.7.1 cairosvg-2.7.1 certifi-2025.1.31 cffi-1.17.1 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 contourpy-1.3.1 cssselect2-0.7.0 cycler-0.12.1 dataclasses-json-0.6.7 defusedxml-0.7.1 deprecated-1.2.18 dirtyjson-1.0.8 diskcache-5.6.3 distro-1.9.0 docarray-0.40.0 docx2txt-0.8 easyocr-1.7.2 elastic-transport-8.17.0 elasticsearch-8.17.1 embreex-2.17.7.post6 fastapi-0.115.8 filetype-1.2.0 fonttools-4.55.8 frozenlist-1.5.0 future-1.0.0 gensim-4.3.3 graspologic-3.4.1 graspologic-native-1.2.3 greenlet-3.1.1 grpcio-1.67.1 grpcio-tools-1.62.3 h11-0.14.0 h2-4.2.0 haystack-ai-2.3.1 haystack-experimental-0.5.0 hpack-4.1.0 httpcore-1.0.7 httpx-0.28.1 httpx-sse-0.4.0 huggingface-hub-0.28.1 hyperframe-6.1.0 hyppo-0.4.0 idna-3.10 imageio-2.37.0 iniconfig-2.0.0 jax-0.5.0 jaxlib-0.5.0 jiter-0.8.2 joblib-1.4.2 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 kiwisolver-1.4.8 langchain-0.3.17 langchain-core-0.3.33 langchain-elasticsearch-0.3.2 langchain-pinecone-0.2.2 langchain-tests-0.3.10 langchain-text-splitters-0.3.5 langchain_community-0.3.16 langchain_huggingface-0.1.2 langchain_milvus-0.1.8 langsmith-0.3.4 lazy-imports-0.4.0 lazy-loader-0.4 llama-index-core-0.12.15 llama-index-embeddings-openai-0.3.1 llama-index-embeddings-text-embeddings-inference-0.3.2 llama-index-llms-openai-0.3.16 llama-index-llms-openai-like-0.3.3 llama-index-llms-text-generation-inference-0.3.1 llama-index-utils-huggingface-0.3.0 llama_index_graph_stores_neo4j-0.4.6 llvmlite-0.44.0 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 marshmallow-3.26.1 matplotlib-3.10.0 mdurl-0.1.2 milvus-lite-2.4.11 ml_dtypes-0.5.1 monotonic-1.6 more-itertools-10.6.0 multidict-6.1.0 mypy-extensions-1.0.0 neo4j-5.27.0 nest-asyncio-1.6.0 ninja-1.11.1.3 nltk-3.9.1 numba-0.61.0 numpy-1.26.4 openai-1.61.0 opencv-python-headless-4.11.0.86 opensearch-py-2.8.0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pathway-0.3.3 patsy-1.0.1 pgvector-0.3.6 pinecone-5.4.2 pinecone-plugin-inference-3.1.0 pinecone-plugin-interface-0.0.7 pluggy-1.5.0 portalocker-2.10.1 posthog-3.11.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-4.24.2 psycopg2-binary-2.9.10 pyarrow-19.0.0 pyclipper-1.3.0.post6 pycollada-0.8 pycparser-2.22 pydantic-2.10.6 pydantic-core-2.27.2 pydantic-settings-2.7.1 pydub-0.25.1 pygments-2.19.1 pymilvus-2.5.4 pymupdf-1.25.2 pynndescent-0.5.13 pyparsing-3.2.1 pytesseract-0.3.13 pytest-8.3.4 pytest-asyncio-0.25.3 pytest-socket-0.7.0 python-bidi-0.6.3 python-dateutil-2.9.0.post0 python-docx-1.1.2 python-dotenv-1.0.1 python-multipart-0.0.20 python-pptx-1.0.2 python-sat-1.8.dev14 pytz-2025.1 pyyaml-6.0.2 qdrant-client-1.13.2 qdrant-haystack-7.0.0 redis-5.2.1 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scikit-image-0.25.1 scikit-learn-1.6.1 scipy-1.12.0 seaborn-0.13.2 sentence_transformers-3.4.1 shortuuid-1.0.13 simsimd-6.2.1 six-1.17.0 smart-open-7.1.0 sniffio-1.3.1 soupsieve-2.6 sqlglot-10.6.1 starlette-0.45.3 statsmodels-0.14.4 svg.path-6.3 syrupy-4.8.1 tenacity-9.0.0 text-generation-0.7.0 threadpoolctl-3.5.0 tifffile-2025.1.10 tiktoken-0.8.0 tinycss2-1.4.0 tokenizers-0.21.0 tqdm-4.67.1 transformers-4.48.2 trimesh-4.6.1 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-inspect-0.9.0 tzdata-2025.1 ujson-5.10.0 umap-learn-0.5.7 urllib3-2.3.0 uvicorn-0.34.0 vdms-0.0.21 vhacdx-0.0.8.post1 webencodings-0.5.1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zstandard-0.23.0 +#54 262.3 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#54 264.2 Collecting opentelemetry-api==1.27.0 +#54 264.2 Downloading opentelemetry_api-1.27.0-py3-none-any.whl.metadata (1.4 kB) +#54 264.3 Collecting opentelemetry-exporter-otlp==1.27.0 +#54 264.3 Downloading opentelemetry_exporter_otlp-1.27.0-py3-none-any.whl.metadata (2.3 kB) +#54 264.3 Collecting opentelemetry-sdk==1.27.0 +#54 264.3 Downloading opentelemetry_sdk-1.27.0-py3-none-any.whl.metadata (1.5 kB) +#54 264.3 Requirement already satisfied: deprecated>=1.2.6 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api==1.27.0) (1.2.18) +#54 264.4 Collecting importlib-metadata<=8.4.0,>=6.0 (from opentelemetry-api==1.27.0) +#54 264.4 Downloading importlib_metadata-8.4.0-py3-none-any.whl.metadata (4.7 kB) +#54 264.4 Collecting opentelemetry-exporter-otlp-proto-grpc==1.27.0 (from opentelemetry-exporter-otlp==1.27.0) +#54 264.4 Downloading opentelemetry_exporter_otlp_proto_grpc-1.27.0-py3-none-any.whl.metadata (2.3 kB) +#54 264.4 Collecting opentelemetry-exporter-otlp-proto-http==1.27.0 (from opentelemetry-exporter-otlp==1.27.0) +#54 264.4 Downloading opentelemetry_exporter_otlp_proto_http-1.27.0-py3-none-any.whl.metadata (2.3 kB) +#54 264.5 Collecting opentelemetry-semantic-conventions==0.48b0 (from opentelemetry-sdk==1.27.0) +#54 264.5 Downloading opentelemetry_semantic_conventions-0.48b0-py3-none-any.whl.metadata (2.4 kB) +#54 264.5 Requirement already satisfied: typing-extensions>=3.7.4 in /usr/local/lib/python3.11/site-packages (from opentelemetry-sdk==1.27.0) (4.12.2) +#54 264.5 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) +#54 264.5 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) +#54 264.5 Requirement already satisfied: grpcio<2.0.0,>=1.0.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) (1.67.1) +#54 264.5 Collecting opentelemetry-exporter-otlp-proto-common==1.27.0 (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) +#54 264.5 Downloading opentelemetry_exporter_otlp_proto_common-1.27.0-py3-none-any.whl.metadata (1.8 kB) +#54 264.6 Collecting opentelemetry-proto==1.27.0 (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) +#54 264.6 Downloading opentelemetry_proto-1.27.0-py3-none-any.whl.metadata (2.3 kB) +#54 264.6 Requirement already satisfied: requests~=2.7 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (2.32.3) +#54 264.6 Requirement already satisfied: protobuf<5.0,>=3.19 in /usr/local/lib/python3.11/site-packages (from opentelemetry-proto==1.27.0->opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) (4.24.2) +#54 264.6 Requirement already satisfied: wrapt<2,>=1.10 in /usr/local/lib/python3.11/site-packages (from deprecated>=1.2.6->opentelemetry-api==1.27.0) (1.17.2) +#54 264.6 Collecting zipp>=0.5 (from importlib-metadata<=8.4.0,>=6.0->opentelemetry-api==1.27.0) +#54 264.6 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#54 264.6 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (3.4.1) +#54 264.6 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (3.10) +#54 264.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (2.3.0) +#54 264.6 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (2025.1.31) +#54 264.7 Downloading opentelemetry_api-1.27.0-py3-none-any.whl (63 kB) +#54 264.7 Downloading opentelemetry_exporter_otlp-1.27.0-py3-none-any.whl (7.0 kB) +#54 264.7 Downloading opentelemetry_sdk-1.27.0-py3-none-any.whl (110 kB) +#54 264.7 Downloading opentelemetry_exporter_otlp_proto_grpc-1.27.0-py3-none-any.whl (18 kB) +#54 264.7 Downloading opentelemetry_exporter_otlp_proto_http-1.27.0-py3-none-any.whl (17 kB) +#54 264.7 Downloading opentelemetry_semantic_conventions-0.48b0-py3-none-any.whl (149 kB) +#54 264.8 Downloading opentelemetry_exporter_otlp_proto_common-1.27.0-py3-none-any.whl (17 kB) +#54 264.8 Downloading opentelemetry_proto-1.27.0-py3-none-any.whl (52 kB) +#54 264.8 Downloading importlib_metadata-8.4.0-py3-none-any.whl (26 kB) +#54 264.8 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#54 264.8 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#54 265.2 Installing collected packages: zipp, opentelemetry-proto, googleapis-common-protos, opentelemetry-exporter-otlp-proto-common, importlib-metadata, opentelemetry-api, opentelemetry-semantic-conventions, opentelemetry-sdk, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp +#54 265.5 Successfully installed googleapis-common-protos-1.66.0 importlib-metadata-8.4.0 opentelemetry-api-1.27.0 opentelemetry-exporter-otlp-1.27.0 opentelemetry-exporter-otlp-proto-common-1.27.0 opentelemetry-exporter-otlp-proto-grpc-1.27.0 opentelemetry-exporter-otlp-proto-http-1.27.0 opentelemetry-proto-1.27.0 opentelemetry-sdk-1.27.0 opentelemetry-semantic-conventions-0.48b0 zipp-3.21.0 +#54 265.5 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#54 ... + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 168.9 Attempting uninstall: Pillow +#75 168.9 Found existing installation: pillow 11.1.0 +#75 168.9 Uninstalling pillow-11.1.0: +#75 168.9 Successfully uninstalled pillow-11.1.0 +#75 170.2 Attempting uninstall: numpy +#75 170.2 Found existing installation: numpy 2.2.2 +#75 170.3 Uninstalling numpy-2.2.2: +#75 170.3 Successfully uninstalled numpy-2.2.2 +#75 ... + +#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 +#54 DONE 270.7s + +#84 [opea/retriever:latest 6/6] WORKDIR /home/user/comps/retrievers/src +#84 DONE 0.2s + +#85 [opea/retriever:latest] exporting to image +#85 exporting layers +#85 exporting layers 15.9s done +#85 writing image sha256:576bb5c811317821ff54337db3d1280e0be50f97d22c94ee70aa044d6311aa74 done +#85 naming to docker.io/opea/retriever:latest done +#85 DONE 15.9s + +#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 +#75 219.7 Successfully installed Events-0.5 POT-0.9.5 Pillow-10.4.0 PyYAML-6.0.2 SQLAlchemy-2.0.37 Shapely-2.0.7 XlsxWriter-3.2.2 aiofiles-24.1.0 aiohappyeyeballs-2.4.4 aiohttp-3.10.11 aiosignal-1.3.2 annotated-types-0.7.0 antlr4-python3-runtime-4.9.3 anyio-4.8.0 anytree-2.12.1 asttokens-3.0.0 attrs-25.1.0 autograd-1.7.0 av-14.1.0 backoff-2.2.1 beartype-0.18.5 beautifulsoup4-4.13.1 cachetools-5.5.1 cairocffi-1.7.1 cairosvg-2.7.1 certifi-2024.12.14 cffi-1.17.1 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 coloredlogs-15.0.1 colorlog-6.9.0 contourpy-1.3.1 cryptography-44.0.0 cssselect2-0.7.0 cycler-0.12.1 dataclasses-json-0.6.7 decorator-5.1.1 decord-0.6.0 defusedxml-0.7.1 deprecated-1.2.18 dirtyjson-1.0.8 distro-1.9.0 docarray-0.40.0 docx2txt-0.8 easyocr-1.7.2 effdet-0.4.1 einops-0.8.0 elastic-transport-8.17.0 elasticsearch-8.17.1 embreex-2.17.7.post6 emoji-2.14.1 et-xmlfile-2.0.0 eval-type-backport-0.2.2 executing-2.2.0 fastapi-0.115.8 filetype-1.2.0 flatbuffers-25.1.24 fonttools-4.55.8 frozenlist-1.5.0 future-1.0.0 gensim-4.3.3 google-api-core-2.24.1 google-auth-2.38.0 google-cloud-vision-3.9.0 googleapis-common-protos-1.66.0 graspologic-3.4.1 graspologic-native-1.2.3 greenlet-3.1.1 grpcio-1.67.1 grpcio-status-1.63.0rc1 grpcio-tools-1.62.3 h11-0.14.0 h2-4.2.0 hpack-4.1.0 html2text-2024.2.26 html5lib-1.1 httpcore-1.0.7 httpx-0.28.1 httpx-sse-0.4.0 huggingface_hub-0.28.1 humanfriendly-10.0 hyperframe-6.1.0 hyppo-0.4.0 idna-3.10 imageio-2.37.0 imageio_ffmpeg-0.6.0 iniconfig-2.0.0 ipython-8.32.0 jax-0.5.0 jaxlib-0.5.0 jedi-0.19.2 jiter-0.8.2 joblib-1.4.2 jsonpatch-1.33 jsonpath-python-1.0.6 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 kiwisolver-1.4.8 langchain-0.3.17 langchain-community-0.3.16 langchain-core-0.3.33 langchain-elasticsearch-0.3.2 langchain-experimental-0.3.4 langchain-openai-0.3.3 langchain-pinecone-0.2.2 langchain-tests-0.3.10 langchain-text-splitters-0.3.5 langchain_huggingface-0.1.2 langchain_milvus-0.1.8 langdetect-1.0.9 langsmith-0.3.4 lazy-loader-0.4 llama-cloud-0.1.11 llama-index-0.12.15 llama-index-agent-openai-0.4.3 llama-index-cli-0.4.0 llama-index-core-0.12.15 llama-index-embeddings-openai-0.3.1 llama-index-embeddings-text-embeddings-inference-0.3.2 llama-index-graph-stores-neo4j-0.4.6 llama-index-indices-managed-llama-cloud-0.6.4 llama-index-llms-openai-0.3.16 llama-index-llms-openai-like-0.3.3 llama-index-multi-modal-llms-openai-0.4.3 llama-index-program-openai-0.3.1 llama-index-question-gen-openai-0.3.0 llama-index-readers-file-0.4.4 llama-index-readers-llama-parse-0.4.0 llama-index-utils-huggingface-0.3.0 llama-parse-0.5.20 llvmlite-0.44.0 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-3.7 markdown-it-py-3.0.0 marshmallow-3.26.1 matplotlib-3.10.0 matplotlib-inline-0.1.7 mdurl-0.1.2 milvus-lite-2.4.11 ml_dtypes-0.5.1 more-itertools-10.6.0 moviepy-2.1.2 multidict-6.1.0 mypy-extensions-1.0.0 neo4j-5.27.0 nest-asyncio-1.6.0 ninja-1.11.1.3 nltk-3.9.1 numba-0.61.0 numpy-1.26.4 olefile-0.47 omegaconf-2.3.0 onnx-1.17.0 onnxruntime-1.20.1 openai-1.61.0 openai-whisper-20240930 opencv-python-4.11.0.86 opencv-python-headless-4.11.0.86 openpyxl-3.1.5 opensearch-py-2.8.0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 parso-0.8.4 patsy-1.0.1 pdf2image-1.17.0 pdfminer.six-20240706 pexpect-4.9.0 pgvector-0.2.5 pi-heif-0.21.0 pikepdf-9.5.1 pinecone-5.4.2 pinecone-client-4.1.2 pinecone-plugin-inference-3.1.0 pinecone-plugin-interface-0.0.7 pluggy-1.5.0 portalocker-2.10.1 proglog-0.1.10 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 prompt_toolkit-3.0.50 propcache-0.2.1 proto-plus-1.26.0 protobuf-4.24.2 psutil-6.1.1 psycopg2-2.9.10 ptyprocess-0.7.0 pure-eval-0.2.3 py4j-0.10.9.7 pyasn1-0.6.1 pyasn1-modules-0.4.1 pyclipper-1.3.0.post6 pycocotools-2.0.8 pycollada-0.8 pycparser-2.22 pydantic-2.10.6 pydantic-core-2.27.2 pydantic-settings-2.7.1 pydub-0.25.1 pygments-2.19.1 pymilvus-2.5.4 pymupdf-1.25.2 pynndescent-0.5.13 pypandoc-1.15 pyparsing-3.2.1 pypdf-5.2.0 pypdfium2-4.30.1 pyspark-3.5.4 pytesseract-0.3.13 pytest-8.3.4 pytest-asyncio-0.25.3 pytest-socket-0.7.0 python-bidi-0.6.3 python-dateutil-2.9.0.post0 python-docx-1.1.2 python-dotenv-1.0.1 python-iso639-2025.1.28 python-magic-0.4.27 python-multipart-0.0.20 python-oxmsg-0.0.2 python-pptx-1.0.2 pytz-2025.1 qdrant-client-1.13.2 rapidfuzz-3.12.1 redis-5.2.1 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rsa-4.9 rtree-1.3.0 safetensors-0.5.2 scikit-image-0.25.1 scikit-learn-1.6.1 scipy-1.12.0 seaborn-0.13.2 sentence_transformers-3.4.1 shortuuid-1.0.13 simsimd-6.2.1 six-1.17.0 smart-open-7.1.0 sniffio-1.3.1 soupsieve-2.6 stack_data-0.6.3 starlette-0.45.3 statsmodels-0.14.4 striprtf-0.0.26 svg.path-6.3 syrupy-4.8.1 tenacity-9.0.0 threadpoolctl-3.5.0 tifffile-2025.1.10 tiktoken-0.8.0 timm-1.0.14 tinycss2-1.4.0 tokenizers-0.21.0 tqdm-4.67.1 traitlets-5.14.3 transformers-4.48.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-3.7.4.3 typing-inspect-0.9.0 tzdata-2025.1 tzlocal-5.2 ujson-5.10.0 umap-learn-0.5.7 unstructured-0.16.17 unstructured-client-0.29.0 unstructured-inference-0.8.7 unstructured.pytesseract-0.3.13 urllib3-2.3.0 uvicorn-0.34.0 vdms-0.0.21 vhacdx-0.0.8.post1 wcwidth-0.2.13 webencodings-0.5.1 webvtt-py-0.5.1 wrapt-1.17.2 xatlas-0.0.9 xlrd-2.0.1 xxhash-3.5.0 yarl-1.18.3 zstandard-0.23.0 +#75 219.7 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#75 221.5 Collecting opentelemetry-api==1.29.0 +#75 221.7 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) +#75 221.7 Collecting opentelemetry-exporter-otlp==1.29.0 +#75 221.7 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#75 221.7 Collecting opentelemetry-sdk==1.29.0 +#75 221.8 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) +#75 221.8 Requirement already satisfied: deprecated>=1.2.6 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api==1.29.0) (1.2.18) +#75 221.8 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api==1.29.0) +#75 221.9 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) +#75 221.9 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp==1.29.0) +#75 221.9 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#75 221.9 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp==1.29.0) +#75 222.0 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) +#75 222.0 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk==1.29.0) +#75 222.0 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) +#75 222.0 Requirement already satisfied: typing-extensions>=3.7.4 in /usr/local/lib/python3.11/site-packages (from opentelemetry-sdk==1.29.0) (4.12.2) +#75 222.0 Requirement already satisfied: googleapis-common-protos~=1.52 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) (1.66.0) +#75 222.0 Requirement already satisfied: grpcio<2.0.0,>=1.63.2 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) (1.67.1) +#75 222.1 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) +#75 222.1 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) +#75 222.1 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) +#75 222.1 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) +#75 222.1 Requirement already satisfied: requests~=2.7 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (2.32.3) +#75 222.3 Collecting protobuf<6.0,>=5.0 (from opentelemetry-proto==1.29.0->opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) +#75 222.3 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) +#75 222.4 Requirement already satisfied: wrapt<2,>=1.10 in /usr/local/lib/python3.11/site-packages (from deprecated>=1.2.6->opentelemetry-api==1.29.0) (1.17.2) +#75 222.4 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api==1.29.0) +#75 222.4 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) +#75 222.5 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (3.4.1) +#75 222.5 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (3.10) +#75 222.5 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (2.3.0) +#75 222.5 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (2024.12.14) +#75 222.5 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) +#75 222.6 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) +#75 222.6 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) +#75 222.7 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) +#75 222.8 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) +#75 222.8 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) +#75 222.9 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) +#75 223.0 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) +#75 223.0 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) +#75 223.1 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#75 223.1 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) +#75 223.7 Installing collected packages: zipp, protobuf, opentelemetry-proto, importlib-metadata, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, opentelemetry-semantic-conventions, opentelemetry-sdk, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp +#75 223.7 Attempting uninstall: protobuf +#75 223.7 Found existing installation: protobuf 4.24.2 +#75 223.7 Uninstalling protobuf-4.24.2: +#75 223.7 Successfully uninstalled protobuf-4.24.2 +#75 224.1 ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. +#75 224.1 grpcio-tools 1.62.3 requires protobuf<5.0dev,>=4.21.6, but you have protobuf 5.29.3 which is incompatible. +#75 224.1 vdms 0.0.21 requires protobuf==4.24.2, but you have protobuf 5.29.3 which is incompatible. +#75 224.1 Successfully installed importlib-metadata-8.5.0 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 protobuf-5.29.3 zipp-3.21.0 +#75 224.1 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#75 DONE 226.7s + +#86 [opea/dataprep:latest 7/8] RUN mkdir -p /home/user/comps/dataprep/src/uploaded_files && chown -R user /home/user/comps/dataprep/src/uploaded_files +#86 DONE 0.2s + +#87 [opea/dataprep:latest 8/8] WORKDIR /home/user/comps/dataprep/src +#87 DONE 0.0s + +#88 [opea/dataprep:latest] exporting to image +#88 exporting layers +#88 exporting layers 19.0s done +#88 writing image sha256:ec09de9d245da18c6b6f41f8cfd45e7721143c340ed56109c61ac8bb4b4e8ed5 done +#88 naming to docker.io/opea/dataprep:latest done +#88 DONE 19.1s + +#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt +#50 536.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 2.0 MB/s eta 0:00:00 +#50 536.9 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) +#50 766.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 1.5 MB/s eta 0:00:00 +#50 766.4 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) +#50 775.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 1.4 MB/s eta 0:00:00 +#50 775.9 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) +#50 794.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 1.3 MB/s eta 0:00:00 +#50 794.4 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) +#50 795.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 1.4 MB/s eta 0:00:00 +#50 795.1 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) +#50 1158.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 2.2 MB/s eta 0:00:00 +#50 1158.1 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) +#50 1251.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 2.1 MB/s eta 0:00:00 +#50 1251.1 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) +#50 1279.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 2.0 MB/s eta 0:00:00 +#50 1279.7 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) +#50 1339.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 2.2 MB/s eta 0:00:00 +#50 1339.1 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) +#50 1438.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 2.1 MB/s eta 0:00:00 +#50 1438.3 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) +#50 1503.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 2.2 MB/s eta 0:00:00 +#50 1503.1 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) +#50 1588.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 2.1 MB/s eta 0:00:00 +#50 1588.6 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) +#50 1599.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 1.9 MB/s eta 0:00:00 +#50 1599.5 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) +#50 1599.6 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) +#50 1602.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 2.1 MB/s eta 0:00:00 +#50 1602.6 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.2 MB) +#50 1715.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.2/253.2 MB 2.5 MB/s eta 0:00:00 +#50 1716.0 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#50 1716.0 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) +#50 1716.1 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) +#50 1716.1 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) +#50 1716.2 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) +#50 1716.3 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) +#50 1716.3 Downloading ftfy-6.3.1-py3-none-any.whl (44 kB) +#50 1716.3 Downloading timm-1.0.14-py3-none-any.whl (2.4 MB) +#50 1716.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 3.9 MB/s eta 0:00:00 +#50 1717.0 Downloading torchvision-0.21.0-cp311-cp311-manylinux1_x86_64.whl (7.2 MB) +#50 1719.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/7.2 MB 3.1 MB/s eta 0:00:00 +#50 1719.4 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) +#50 1719.4 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) +#50 1719.5 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) +#50 1719.6 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) +#50 1719.7 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#50 1722.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 2.4 MB/s eta 0:00:00 +#50 1722.2 Downloading idna-3.10-py3-none-any.whl (70 kB) +#50 1722.3 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#50 1722.3 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) +#50 1722.4 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#50 1723.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 2.0 MB/s eta 0:00:00 +#50 1723.0 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) +#50 1723.1 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) +#50 1723.2 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) +#50 1723.3 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) +#50 1723.4 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#50 1724.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 1.9 MB/s eta 0:00:00 +#50 1724.3 Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB) +#50 1724.3 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) +#50 1724.4 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#50 1724.4 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#50 1724.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 1.9 MB/s eta 0:00:00 +#50 1724.7 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) +#50 1732.4 Installing collected packages: wcwidth, triton, nvidia-cusparselt-cu12, mpmath, zipp, wrapt, urllib3, typing-extensions, tqdm, tabulate, sympy, sniffio, shortuuid, safetensors, regex, PyYAML, pygments, protobuf, propcache, prometheus-client, Pillow, packaging, orjson, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, multidict, mdurl, MarkupSafe, jiter, idna, h11, grpcio, ftfy, fsspec, frozenlist, filelock, einops, distro, click, charset-normalizer, certifi, attrs, annotated-types, aiohappyeyeballs, yarl, uvicorn, typing-inspect, types-requests, requests, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, markdown-it-py, jinja2, importlib-metadata, httpcore, googleapis-common-protos, deprecated, anyio, aiosignal, starlette, rich, pydantic, predictionguard, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, huggingface_hub, httpx, aiohttp, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, openai, fastapi, docarray, transformers, torchvision, opentelemetry-sdk, timm, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp, open-clip-torch +#50 1783.6 Successfully installed MarkupSafe-3.0.2 Pillow-11.1.0 PyYAML-6.0.2 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 certifi-2025.1.31 charset-normalizer-3.4.1 click-8.1.8 deprecated-1.2.18 distro-1.9.0 docarray-0.40.0 einops-0.8.0 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2025.2.0 ftfy-6.3.1 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jinja2-3.1.5 jiter-0.8.2 markdown-it-py-3.0.0 mdurl-0.1.2 mpmath-1.3.0 multidict-6.1.0 mypy-extensions-1.0.0 networkx-3.4.2 numpy-2.2.2 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 open-clip-torch-2.30.0 openai-1.61.0 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 orjson-3.10.15 packaging-24.2 predictionguard-2.2.1 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pydantic-2.10.6 pydantic-core-2.27.2 pygments-2.19.1 regex-2024.11.6 requests-2.32.3 rich-13.9.4 safetensors-0.5.2 shortuuid-1.0.13 sniffio-1.3.1 starlette-0.45.3 sympy-1.13.1 tabulate-0.9.0 timm-1.0.14 tokenizers-0.21.0 torch-2.6.0 torchvision-0.21.0 tqdm-4.67.1 transformers-4.48.2 triton-3.2.0 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 urllib3-2.3.0 uvicorn-0.34.0 wcwidth-0.2.13 wrapt-1.17.2 yarl-1.18.3 zipp-3.21.0 +#50 1783.6 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +#50 DONE 1791.3s + +#89 [opea/embedding:latest 4/4] WORKDIR /home/comps/embeddings/src/ +#89 DONE 0.0s + +#90 [opea/embedding:latest] exporting to image +#90 exporting layers +#90 exporting layers 20.2s done +#90 writing image sha256:9c7b86bd48acd9d0612b817bba5c9ec1fd36f23b958e70cae52d5e5067056ad9 done +#90 naming to docker.io/opea/embedding:latest done +#90 DONE 20.2s diff --git a/MultimodalQnA/tests/embedding-multimodal-bridgetower.log b/MultimodalQnA/tests/embedding-multimodal-bridgetower.log new file mode 100644 index 0000000000..e69de29bb2 diff --git a/MultimodalQnA/tests/embedding.log b/MultimodalQnA/tests/embedding.log new file mode 100644 index 0000000000..50467c9894 --- /dev/null +++ b/MultimodalQnA/tests/embedding.log @@ -0,0 +1,6 @@ +INFO: 10.23.167.165:40738 - "POST /v1/embeddings HTTP/1.1" 200 OK +INFO: 10.23.167.165:40738 - "POST /v1/embeddings HTTP/1.1" 200 OK +INFO: 10.23.167.165:40750 - "POST /v1/embeddings HTTP/1.1" 200 OK +INFO: 10.23.167.165:48432 - "POST /v1/embeddings HTTP/1.1" 200 OK +INFO: 10.23.167.165:48432 - "POST /v1/embeddings HTTP/1.1" 200 OK +INFO: 10.23.167.165:48448 - "POST /v1/embeddings HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/lvm-llava.log b/MultimodalQnA/tests/lvm-llava.log new file mode 100644 index 0000000000..a132d3977e --- /dev/null +++ b/MultimodalQnA/tests/lvm-llava.log @@ -0,0 +1,26 @@ +device: cpu +LLaVA warmup... +LLaVA generation begin. +LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 48737.037658691406ms +INFO: 10.23.167.165:43816 - "POST /generate HTTP/1.1" 200 OK +device: cpu +LLaVA warmup... +LLaVA generation begin. +LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 48737.037658691406ms +INFO: 10.23.167.165:43816 - "POST /generate HTTP/1.1" 200 OK +LLaVA generation begin. +LLaVA result = The image is a close-up of a bright blue background, which appears to be a wall or a piece of artwork. The blue color is vibrant and covers the entire frame of the image. The blue hue creates a striking contrast with the rest of the scene, making it the focal point of the image., time = 82346.43244743347ms +INFO: 10.23.167.165:40744 - "POST /generate HTTP/1.1" 200 OK +device: cpu +LLaVA warmup... +LLaVA generation begin. +LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 50633.09907913208ms +INFO: 10.23.167.165:57224 - "POST /generate HTTP/1.1" 200 OK +device: cpu +LLaVA warmup... +LLaVA generation begin. +LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 50633.09907913208ms +INFO: 10.23.167.165:57224 - "POST /generate HTTP/1.1" 200 OK +LLaVA generation begin. +LLaVA result = The image is a close-up of a bright blue background, which appears to be a wall or a piece of artwork. The blue color is vibrant and covers the entire frame of the image. The blue hue creates a striking contrast with the rest of the scene, making it the focal point of the image., time = 84038.241147995ms +INFO: 10.23.167.165:58426 - "POST /generate HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/lvm.log b/MultimodalQnA/tests/lvm.log new file mode 100644 index 0000000000..30daa1747d --- /dev/null +++ b/MultimodalQnA/tests/lvm.log @@ -0,0 +1,2 @@ +INFO: 10.23.167.165:41814 - "POST /v1/lvm HTTP/1.1" 200 OK +INFO: 10.23.167.165:50604 - "POST /v1/lvm HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/multimodalqna.log b/MultimodalQnA/tests/multimodalqna.log new file mode 100644 index 0000000000..315954c207 --- /dev/null +++ b/MultimodalQnA/tests/multimodalqna.log @@ -0,0 +1,30 @@ +INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:54386 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:54386 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:54038 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:54386 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:54038 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:45670 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:36024 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:36024 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:51470 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:36024 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:51470 - "POST /v1/multimodalqna HTTP/1.1" 200 OK +INFO: 10.23.167.165:44082 - "POST /v1/multimodalqna HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/retriever-redis.log b/MultimodalQnA/tests/retriever-redis.log new file mode 100644 index 0000000000..bc4a71a1f3 --- /dev/null +++ b/MultimodalQnA/tests/retriever-redis.log @@ -0,0 +1,2 @@ +INFO: 10.23.167.165:47850 - "POST /v1/retrieval HTTP/1.1" 200 OK +INFO: 10.23.167.165:58090 - "POST /v1/retrieval HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/start_services_with_compose.log b/MultimodalQnA/tests/start_services_with_compose.log new file mode 100644 index 0000000000..e69de29bb2 diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 7fbaac4119..39291f5eb4 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -332,7 +332,7 @@ function validate_megaservice() { '"content":"' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": [{"role": "user", "content": [{"type": "audio", "audio": "UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": [{"type": "text", "text": "goodbye"}]}]}' + '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' echo "Validating megaservice with multiple text queries" validate_service \ diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index e7a2ccf519..c29f7d6a15 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -75,6 +75,8 @@ function setup_env() { export MAX_IMAGES=1 export WHISPER_MODEL="base" export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" + export TTS_PORT=7055 + export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" export REDIS_DB_PORT=6379 export REDIS_INSIGHTS_PORT=8001 export REDIS_URL="redis://${host_ip}:${REDIS_DB_PORT}" @@ -321,8 +323,7 @@ function validate_megaservice() { '"time_of_frame_ms":' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": [{"role": "user", "content": [{"type": "text", "text": "Find a similar image"}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}]}' - + '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' echo "Validating megaservice with follow-up query" validate_service \ "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ From 08ab7606b63da241c7325c5d8f3acf59e4389b2a Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Thu, 13 Feb 2025 14:48:43 -0800 Subject: [PATCH 15/47] remove log diles Signed-off-by: okhleif-IL --- .../dataprep-multimodal-redis-caption.log | 26 - .../dataprep-multimodal-redis-ingest.log | 16 - .../tests/dataprep-multimodal-redis-pdf.log | 18 - .../dataprep-multimodal-redis-transcript.log | 14 - MultimodalQnA/tests/dataprep_del.log | 28 - MultimodalQnA/tests/dataprep_get.log | 42 - MultimodalQnA/tests/docker_image_build.log | 12967 ---------------- .../embedding-multimodal-bridgetower.log | 0 MultimodalQnA/tests/embedding.log | 6 - MultimodalQnA/tests/lvm-llava.log | 26 - MultimodalQnA/tests/lvm.log | 2 - MultimodalQnA/tests/multimodalqna.log | 30 - MultimodalQnA/tests/retriever-redis.log | 2 - .../tests/start_services_with_compose.log | 0 14 files changed, 13177 deletions(-) delete mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-caption.log delete mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log delete mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log delete mode 100644 MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log delete mode 100644 MultimodalQnA/tests/dataprep_del.log delete mode 100644 MultimodalQnA/tests/dataprep_get.log delete mode 100644 MultimodalQnA/tests/docker_image_build.log delete mode 100644 MultimodalQnA/tests/embedding-multimodal-bridgetower.log delete mode 100644 MultimodalQnA/tests/embedding.log delete mode 100644 MultimodalQnA/tests/lvm-llava.log delete mode 100644 MultimodalQnA/tests/lvm.log delete mode 100644 MultimodalQnA/tests/multimodalqna.log delete mode 100644 MultimodalQnA/tests/retriever-redis.log delete mode 100644 MultimodalQnA/tests/start_services_with_compose.log diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-caption.log b/MultimodalQnA/tests/dataprep-multimodal-redis-caption.log deleted file mode 100644 index 174e08cdb4..0000000000 --- a/MultimodalQnA/tests/dataprep-multimodal-redis-caption.log +++ /dev/null @@ -1,26 +0,0 @@ -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav -MoviePy - Done. -INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:52208 - "POST /v1/dataprep/get HTTP/1.1" 200 OK - -INFO: 10.23.167.165:49042 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK -INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error -INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request -INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav -MoviePy - Done. -INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:34750 - "POST /v1/dataprep/get HTTP/1.1" 200 OK - -INFO: 10.23.167.165:50186 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log b/MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log deleted file mode 100644 index 24d26447db..0000000000 --- a/MultimodalQnA/tests/dataprep-multimodal-redis-ingest.log +++ /dev/null @@ -1,16 +0,0 @@ -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav -MoviePy - Done. -INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error -INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request -INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav -MoviePy - Done. -INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log b/MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log deleted file mode 100644 index d95453b517..0000000000 --- a/MultimodalQnA/tests/dataprep-multimodal-redis-pdf.log +++ /dev/null @@ -1,18 +0,0 @@ -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav -MoviePy - Done. -INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error -INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request -INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav -MoviePy - Done. -INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log b/MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log deleted file mode 100644 index a445ba2353..0000000000 --- a/MultimodalQnA/tests/dataprep-multimodal-redis-transcript.log +++ /dev/null @@ -1,14 +0,0 @@ -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav -MoviePy - Done. -INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error -INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request -INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav -MoviePy - Done. -INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep_del.log b/MultimodalQnA/tests/dataprep_del.log deleted file mode 100644 index 74808ffc2b..0000000000 --- a/MultimodalQnA/tests/dataprep_del.log +++ /dev/null @@ -1,28 +0,0 @@ -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav -MoviePy - Done. -INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:52208 - "POST /v1/dataprep/get HTTP/1.1" 200 OK - -INFO: 10.23.167.165:49042 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK -INFO: 10.23.167.165:50798 - "POST /v1/dataprep/delete HTTP/1.1" 200 OK -INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error -INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request -INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav -MoviePy - Done. -INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:34750 - "POST /v1/dataprep/get HTTP/1.1" 200 OK - -INFO: 10.23.167.165:50186 - "POST /v1/dataprep/generate_captions HTTP/1.1" 200 OK -INFO: 10.23.167.165:44076 - "POST /v1/dataprep/delete HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/dataprep_get.log b/MultimodalQnA/tests/dataprep_get.log deleted file mode 100644 index fb080f440b..0000000000 --- a/MultimodalQnA/tests/dataprep_get.log +++ /dev/null @@ -1,42 +0,0 @@ -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav -MoviePy - Done. -INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_312a177a-f57e-47ff-bd5a-3eca03be5e3d.wav -MoviePy - Done. -INFO: 10.23.167.165:58076 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:39128 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38814 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:38828 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:52208 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error -INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request -INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav -MoviePy - Done. -INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:47136 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 500 Internal Server Error -INFO: 10.23.167.165:35602 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 400 Bad Request -INFO: 10.23.167.165:42026 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:59284 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomavc1mp42', 'creation_time': '2010-06-28T18:32:12.000000Z'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 125, 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 720], 'bitrate': 2094, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High)', 'metadata': {'Metadata': '', 'creation_time': '2010-06-28T18:32:12.000000Z', 'handler_name': '(C) 2007 Google Inc. v08.13.2007.', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 47.46, 'bitrate': 2222, 'start': 0.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 0, 'audio_fps': 44100, 'audio_bitrate': 125, 'default_video_input_number': 0, 'default_video_stream_number': 1, 'video_codec_name': 'h264', 'video_profile': '(High)', 'video_size': [1280, 720], 'video_bitrate': 2094, 'video_fps': 24.0, 'video_duration': 47.46, 'video_n_frames': 1139} -/usr/local/lib/python3.11/site-packages/imageio_ffmpeg/binaries/ffmpeg-linux-x86_64-v7.0.2 -i ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.mp4 -loglevel error -f image2pipe -vf scale=1280:720 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo - -MoviePy - Writing audio in ./uploaded_files/WeAreGoingOnBullrun_7288d6a9-bd7b-4a38-bbb8-061ed2d9f782.wav -MoviePy - Done. -INFO: 10.23.167.165:42476 - "POST /v1/dataprep/generate_transcripts HTTP/1.1" 200 OK -INFO: 10.23.167.165:43232 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:43238 - "POST /v1/dataprep/ingest HTTP/1.1" 200 OK -INFO: 10.23.167.165:34746 - "POST /v1/dataprep/get HTTP/1.1" 200 OK -INFO: 10.23.167.165:34750 - "POST /v1/dataprep/get HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/docker_image_build.log b/MultimodalQnA/tests/docker_image_build.log deleted file mode 100644 index 66caeb8673..0000000000 --- a/MultimodalQnA/tests/docker_image_build.log +++ /dev/null @@ -1,12967 +0,0 @@ -#1 [opea/retriever:latest internal] load build definition from Dockerfile -#1 transferring dockerfile: 1.14kB done -#1 DONE 0.0s - -#2 [opea/embedding-multimodal-bridgetower:latest internal] load build definition from Dockerfile -#2 transferring dockerfile: 811B done -#2 DONE 0.0s - -#3 [opea/multimodalqna:latest internal] load build definition from Dockerfile -#3 transferring dockerfile: 1.28kB done -#3 DONE 0.0s - -#4 [opea/embedding:latest internal] load build definition from Dockerfile -#4 transferring dockerfile: 582B done -#4 DONE 0.0s - -#5 [opea/whisper:latest internal] load build definition from Dockerfile -#5 transferring dockerfile: 1.14kB done -#5 DONE 0.0s - -#6 [opea/multimodalqna-ui:latest internal] load build definition from Dockerfile -#6 transferring dockerfile: 1.06kB done -#6 DONE 0.0s - -#7 [opea/dataprep:latest internal] load build definition from Dockerfile -#7 transferring dockerfile: 1.84kB done -#7 DONE 0.0s - -#8 [opea/lvm:latest internal] load build definition from Dockerfile -#8 transferring dockerfile: 558B done -#8 DONE 0.0s - -#9 [opea/lvm-llava:latest internal] load build definition from Dockerfile -#9 transferring dockerfile: 805B done -#9 DONE 0.0s - -#10 [opea/lvm-llava:latest internal] load metadata for docker.io/library/python:3.11-slim -#10 DONE 0.6s - -#11 [opea/multimodalqna:latest internal] load .dockerignore -#11 transferring context: 2B done -#11 DONE 0.0s - -#12 [opea/whisper:latest internal] load .dockerignore -#12 transferring context: 2B done -#12 DONE 0.0s - -#13 [opea/dataprep:latest internal] load .dockerignore -#13 transferring context: 2B done -#13 DONE 0.0s - -#14 [opea/lvm-llava:latest internal] load .dockerignore -#14 transferring context: 2B done -#14 DONE 0.0s - -#15 [opea/lvm:latest internal] load .dockerignore -#15 transferring context: 2B done -#15 DONE 0.0s - -#16 [opea/multimodalqna-ui:latest internal] load .dockerignore -#16 transferring context: 2B done -#16 DONE 0.0s - -#17 [opea/retriever:latest internal] load .dockerignore -#17 transferring context: 2B done -#17 DONE 0.0s - -#18 [opea/embedding:latest internal] load .dockerignore -#18 transferring context: 2B done -#18 DONE 0.0s - -#19 [opea/embedding:latest base 1/4] FROM docker.io/library/python:3.11-slim@sha256:6ed5bff4d7d377e2a27d9285553b8c21cfccc4f00881de1b24c9bc8d90016e82 -#19 CACHED - -#20 [opea/multimodalqna:latest internal] load build context -#20 transferring context: 17.83kB done -#20 DONE 0.0s - -#21 [opea/dataprep:latest internal] load build context -#21 ... - -#22 [opea/multimodalqna-ui:latest internal] load build context -#22 transferring context: 41.62kB done -#22 DONE 0.0s - -#23 [opea/embedding-multimodal-bridgetower:latest internal] load metadata for docker.io/library/python:3.10-slim -#23 DONE 0.7s - -#21 [opea/dataprep:latest internal] load build context -#21 ... - -#24 [opea/embedding-multimodal-bridgetower:latest internal] load .dockerignore -#24 transferring context: 2B done -#24 DONE 0.0s - -#25 [opea/embedding-multimodal-bridgetower:latest 1/6] FROM docker.io/library/python:3.10-slim@sha256:a636f5aafba3654ac4d04d7c234a75b77fa26646fe0dafe4654b731bc413b02f -#25 CACHED - -#21 [opea/dataprep:latest internal] load build context -#21 transferring context: 27.82MB 0.3s done -#21 DONE 0.3s - -#26 [opea/whisper:latest internal] load build context -#26 transferring context: 27.82MB 0.3s done -#26 DONE 0.3s - -#27 [opea/lvm-llava:latest internal] load build context -#27 transferring context: 27.82MB 0.3s done -#27 DONE 0.3s - -#28 [opea/embedding:latest internal] load build context -#28 transferring context: 27.82MB 0.3s done -#28 DONE 0.3s - -#29 [opea/lvm:latest internal] load build context -#29 transferring context: 27.82MB 0.3s done -#29 DONE 0.4s - -#30 [opea/retriever:latest internal] load build context -#30 transferring context: 27.82MB 0.3s done -#30 DONE 0.4s - -#31 [opea/embedding-multimodal-bridgetower:latest internal] load build context -#31 transferring context: 27.82MB 0.3s done -#31 DONE 0.3s - -#32 [opea/embedding:latest 2/4] COPY comps /home/comps -#32 DONE 0.7s - -#33 [opea/lvm:latest 2/6] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ -#33 DONE 1.0s - -#34 [opea/lvm-llava:latest 3/6] RUN apt-get update && apt-get install -y curl -#34 ... - -#35 [opea/embedding-multimodal-bridgetower:latest 2/6] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ -#35 DONE 1.2s - -#36 [opea/lvm:latest 3/5] COPY comps /home/user/comps -#36 DONE 0.3s - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 2.154 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#37 ... - -#38 [opea/multimodalqna:latest base 2/4] RUN apt-get update && apt-get upgrade -y && apt-get clean && rm -rf /var/lib/apt/lists/* -#0 0.800 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#0 0.884 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#0 0.928 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#0 0.974 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#0 1.203 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#0 1.232 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#0 2.188 Fetched 9303 kB in 1s (6446 kB/s) -#0 2.188 Reading package lists... -#0 2.639 Reading package lists... -#0 3.100 Building dependency tree... -#0 3.208 Reading state information... -#0 3.229 Calculating upgrade... -#0 3.359 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. -#38 DONE 3.6s - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 2.295 Collecting pip -#37 2.437 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#37 2.440 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#37 ... - -#39 [opea/multimodalqna:latest base 3/4] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user -#39 DONE 0.3s - -#40 [opea/multimodalqna:latest base 4/4] WORKDIR /home/user -#40 DONE 0.0s - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 2.725 Collecting setuptools -#37 2.766 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#37 2.858 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#37 3.623 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 2.4 MB/s eta 0:00:00 -#37 3.657 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#37 3.958 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 4.6 MB/s eta 0:00:00 -#37 4.097 Installing collected packages: setuptools, pip -#37 4.097 Attempting uninstall: setuptools -#37 4.100 Found existing installation: setuptools 65.5.1 -#37 4.119 Uninstalling setuptools-65.5.1: -#37 4.205 Successfully uninstalled setuptools-65.5.1 -#37 ... - -#41 [opea/embedding-multimodal-bridgetower:latest 3/6] RUN apt-get update && apt-get install -y curl -#0 0.788 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#0 0.816 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#0 0.843 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#0 0.875 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#0 0.972 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#0 1.000 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#0 1.927 Fetched 9303 kB in 1s (7958 kB/s) -#0 1.927 Reading package lists... -#0 2.421 Reading package lists... -#0 2.924 Building dependency tree... -#0 3.063 Reading state information... -#0 3.208 The following additional packages will be installed: -#0 3.208 libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 -#0 3.209 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 -#0 3.209 publicsuffix -#0 3.209 Suggested packages: -#0 3.209 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal -#0 3.209 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql -#0 3.309 The following NEW packages will be installed: -#0 3.309 curl libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 -#0 3.310 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 -#0 3.310 publicsuffix -#0 3.338 0 upgraded, 13 newly installed, 0 to remove and 0 not upgraded. -#0 3.338 Need to get 1837 kB of archives. -#0 3.338 After this operation, 4548 kB of additional disk space will be used. -#0 3.338 Get:1 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] -#0 3.349 Get:2 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] -#0 3.355 Get:3 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] -#0 3.363 Get:4 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] -#0 3.371 Get:5 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] -#0 3.378 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] -#0 3.385 Get:7 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] -#0 3.391 Get:8 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] -#0 3.400 Get:9 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] -#0 3.411 Get:10 http://deb.debian.org/debian bookworm/main amd64 curl amd64 7.88.1-10+deb12u8 [315 kB] -#0 3.418 Get:11 http://deb.debian.org/debian bookworm/main amd64 libldap-common all 2.5.13+dfsg-5 [29.3 kB] -#0 3.425 Get:12 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules amd64 2.1.28+dfsg-10 [66.6 kB] -#0 3.432 Get:13 http://deb.debian.org/debian bookworm/main amd64 publicsuffix all 20230209.2326-1 [126 kB] -#0 3.551 debconf: delaying package configuration, since apt-utils is not installed -#0 3.574 Fetched 1837 kB in 0s (15.5 MB/s) -#0 3.587 Selecting previously unselected package libbrotli1:amd64. -#0 3.587 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) -#0 3.593 Preparing to unpack .../00-libbrotli1_1.0.9-2+b6_amd64.deb ... -#0 3.594 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... -#0 3.626 Selecting previously unselected package libsasl2-modules-db:amd64. -#0 3.627 Preparing to unpack .../01-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... -#0 3.627 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#0 3.646 Selecting previously unselected package libsasl2-2:amd64. -#0 3.646 Preparing to unpack .../02-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... -#0 3.648 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#0 3.664 Selecting previously unselected package libldap-2.5-0:amd64. -#0 3.664 Preparing to unpack .../03-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... -#0 3.665 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#0 3.690 Selecting previously unselected package libnghttp2-14:amd64. -#0 3.691 Preparing to unpack .../04-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... -#0 3.691 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#0 3.709 Selecting previously unselected package libpsl5:amd64. -#0 3.709 Preparing to unpack .../05-libpsl5_0.21.2-1_amd64.deb ... -#0 3.710 Unpacking libpsl5:amd64 (0.21.2-1) ... -#0 3.727 Selecting previously unselected package librtmp1:amd64. -#0 3.727 Preparing to unpack .../06-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... -#0 3.728 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#0 3.744 Selecting previously unselected package libssh2-1:amd64. -#0 3.745 Preparing to unpack .../07-libssh2-1_1.10.0-3+b1_amd64.deb ... -#0 3.745 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... -#0 3.771 Selecting previously unselected package libcurl4:amd64. -#0 3.771 Preparing to unpack .../08-libcurl4_7.88.1-10+deb12u8_amd64.deb ... -#0 3.772 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... -#0 3.807 Selecting previously unselected package curl. -#0 3.807 Preparing to unpack .../09-curl_7.88.1-10+deb12u8_amd64.deb ... -#0 3.808 Unpacking curl (7.88.1-10+deb12u8) ... -#0 3.840 Selecting previously unselected package libldap-common. -#0 3.840 Preparing to unpack .../10-libldap-common_2.5.13+dfsg-5_all.deb ... -#0 3.841 Unpacking libldap-common (2.5.13+dfsg-5) ... -#0 3.857 Selecting previously unselected package libsasl2-modules:amd64. -#0 3.858 Preparing to unpack .../11-libsasl2-modules_2.1.28+dfsg-10_amd64.deb ... -#0 3.863 Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... -#0 3.903 Selecting previously unselected package publicsuffix. -#0 3.904 Preparing to unpack .../12-publicsuffix_20230209.2326-1_all.deb ... -#0 3.905 Unpacking publicsuffix (20230209.2326-1) ... -#0 3.931 Setting up libpsl5:amd64 (0.21.2-1) ... -#0 3.935 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... -#0 3.937 Setting up libsasl2-modules:amd64 (2.1.28+dfsg-10) ... -#0 3.945 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#0 3.948 Setting up libldap-common (2.5.13+dfsg-5) ... -#0 3.952 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#0 3.955 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#0 3.957 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#0 3.960 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... -#0 3.978 Setting up publicsuffix (20230209.2326-1) ... -#0 3.981 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#0 3.983 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... -#0 3.986 Setting up curl (7.88.1-10+deb12u8) ... -#0 3.989 Processing triggers for libc-bin (2.36-9+deb12u9) ... -#41 DONE 4.3s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#0 0.800 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#0 0.901 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#0 0.926 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#0 0.979 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#0 1.076 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#0 1.086 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#0 2.140 Fetched 9303 kB in 2s (5999 kB/s) -#0 2.140 Reading package lists... -#0 2.623 Reading package lists... -#0 3.093 Building dependency tree... -#0 3.207 Reading state information... -#0 3.348 The following additional packages will be installed: -#0 3.348 adwaita-icon-theme at-spi2-common binutils binutils-common -#0 3.348 binutils-x86-64-linux-gnu bzip2 ca-certificates-java coinor-libcbc3 -#0 3.348 coinor-libcgl1 coinor-libclp1 coinor-libcoinmp1v5 coinor-libcoinutils3v5 -#0 3.348 coinor-libosi1v5 cpp cpp-12 default-jre-headless dirmngr dpkg-dev fontconfig -#0 3.348 fontconfig-config fonts-dejavu-core fonts-opensymbol g++ g++-12 gcc gcc-12 -#0 3.348 gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server -#0 3.348 gpgconf gpgsm gtk-update-icon-cache hicolor-icon-theme iso-codes java-common -#0 3.348 libabsl20220623 libabw-0.1-1 libarchive13 libasan8 libasound2 -#0 3.348 libasound2-data libassuan0 libatk1.0-0 libatomic1 libavahi-client3 -#0 3.348 libavahi-common-data libavahi-common3 libbinutils libblas3 -#0 3.348 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-locale1.74.0 -#0 3.348 libboost-thread1.74.0 libbox2d2 libbrotli1 libbsd0 libc-dev-bin libc6-dev -#0 3.348 libcap2-bin libcc1-0 libcdr-0.1-1 libclucene-contribs1v5 libclucene-core1v5 -#0 3.348 libcolamd2 libcrypt-dev libctf-nobfd0 libctf0 libcups2 libcurl3-gnutls -#0 3.348 libcurl4 libdatrie1 libdbus-1-3 libdconf1 libdeflate0 libdpkg-perl -#0 3.348 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 -#0 3.348 libdrm2 libdw1 libe-book-0.1-1 libedit2 libelf1 libeot0 libepoxy0 -#0 3.348 libepubgen-0.1-1 libetonyek-0.1-1 libexpat1 libexttextcat-2.0-0 -#0 3.348 libexttextcat-data libfontconfig1 libfreehand-0.1-1 libfreetype6 libfribidi0 -#0 3.348 libgcc-12-dev libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common -#0 3.348 libgfortran5 libgif7 libgl1 libgl1-mesa-dri libglapi-mesa libglib2.0-0 -#0 3.348 libglvnd0 libglx-mesa0 libglx0 libgomp1 libgpgme11 libgpgmepp6 libgprofng0 -#0 3.348 libgraphite2-3 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk2.0-0 -#0 3.348 libgtk2.0-common libharfbuzz-icu0 libharfbuzz0b libhunspell-1.7-0 libhyphen0 -#0 3.348 libice6 libicu72 libisl23 libitm1 libjansson4 libjbig0 libjemalloc2 -#0 3.348 libjpeg62-turbo libksba8 liblangtag-common liblangtag1 liblapack3 liblcms2-2 -#0 3.348 libldap-2.5-0 liblept5 liblerc4 libllvm15 liblsan0 libltdl7 libmhash2 -#0 3.348 libmpc3 libmpfr6 libmspub-0.1-1 libmwaw-0.3-3 libmythes-1.2-0 libnghttp2-14 -#0 3.348 libnpth0 libnsl-dev libnspr4 libnss3 libnumbertext-1.0-0 libnumbertext-data -#0 3.348 libodfgen-0.1-1 libopenjp2-7 liborc-0.4-0 liborcus-0.17-0 -#0 3.348 liborcus-parser-0.17-0 libpagemaker-0.0-0 libpango-1.0-0 libpangocairo-1.0-0 -#0 3.348 libpangoft2-1.0-0 libpciaccess0 libpcsclite1 libperl5.36 libpixman-1-0 -#0 3.348 libpng16-16 libpoppler126 libpq5 libpsl5 libpython3-stdlib libpython3.11 -#0 3.348 libpython3.11-minimal libpython3.11-stdlib libquadmath0 libqxp-0.0-0 -#0 3.348 libraptor2-0 librasqal3 librdf0 libreoffice-base libreoffice-base-core -#0 3.348 libreoffice-base-drivers libreoffice-calc libreoffice-common -#0 3.348 libreoffice-core libreoffice-draw libreoffice-impress libreoffice-math -#0 3.348 libreoffice-report-builder-bin libreoffice-style-colibre libreoffice-writer -#0 3.348 librevenge-0.0-0 librtmp1 libsasl2-2 libsasl2-modules-db libsensors-config -#0 3.348 libsensors5 libsm6 libssh2-1 libssl-dev libstaroffice-0.0-0 libstdc++-12-dev -#0 3.348 libsuitesparseconfig5 libtesseract5 libthai-data libthai0 libtiff6 -#0 3.348 libtirpc-dev libtsan2 libubsan1 libuno-cppu3 libuno-cppuhelpergcc3-3 -#0 3.348 libuno-purpenvhelpergcc3-3 libuno-sal3 libuno-salhelpergcc3-3 libunwind8 -#0 3.348 libvisio-0.1-1 libwebp7 libwebpmux3 libwpd-0.10-10 libwpg-0.3-3 libwps-0.4-4 -#0 3.348 libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri2-0 libxcb-dri3-0 -#0 3.348 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shm0 -#0 3.348 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcomposite1 libxcursor1 libxdamage1 -#0 3.348 libxdmcp6 libxext6 libxfixes3 libxi6 libxinerama1 libxml2 libxmlsec1 -#0 3.348 libxmlsec1-nss libxrandr2 libxrender1 libxshmfence1 libxslt1.1 libxtst6 -#0 3.349 libxxf86vm1 libyajl2 libz3-4 libzmf-0.0-0 libzxing2 linux-libc-dev lp-solve -#0 3.349 make media-types openjdk-17-jre openjdk-17-jre-headless patch perl -#0 3.349 perl-modules-5.36 pinentry-curses python3 python3-minimal python3-uno -#0 3.349 python3.11 python3.11-minimal rpcsvc-proto sensible-utils shared-mime-info -#0 3.349 tesseract-ocr-eng tesseract-ocr-osd ucf uno-libs-private ure x11-common -#0 3.349 xz-utils -#0 3.350 Suggested packages: -#0 3.350 binutils-doc bzip2-doc cpp-doc gcc-12-locales cpp-12-doc dbus-user-session -#0 3.350 libpam-systemd pinentry-gnome3 tor debian-keyring g++-multilib -#0 3.350 g++-12-multilib gcc-12-doc gcc-multilib manpages-dev autoconf automake -#0 3.350 libtool flex bison gdb gcc-doc gcc-12-multilib parcimonie xloadimage -#0 3.350 scdaemon isoquery lrzip libasound2-plugins alsa-utils glibc-doc cups-common -#0 3.350 git bzr low-memory-monitor libvisual-0.4-plugins gstreamer1.0-tools gvfs -#0 3.350 liblcms2-utils pciutils pcscd postgresql-doc-15 raptor2-utils rasqal-utils -#0 3.350 librdf-storage-mysql librdf-storage-postgresql librdf-storage-sqlite -#0 3.350 librdf-storage-virtuoso redland-utils cups-bsd firefox-esr | thunderbird -#0 3.350 | firefox ghostscript gpa hunspell-dictionary hyphen-hyphenation-patterns -#0 3.350 imagemagick | graphicsmagick-imagemagick-compat libreoffice-gnome -#0 3.350 | libreoffice-plasma libreoffice-grammarcheck libreoffice-help -#0 3.350 libreoffice-l10n libreoffice-librelogo myspell-dictionary mythes-thesaurus -#0 3.350 openclipart-libreoffice pstoedit unixodbc gstreamer1.0-plugins-base -#0 3.350 gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly gstreamer1.0-plugins-bad -#0 3.350 gstreamer1.0-libav libsane1 libofficebean-java libreoffice-report-builder -#0 3.350 libjtds-java libreoffice-sdbc-mysql | libmyodbc | libmariadb-java -#0 3.350 libreoffice-sdbc-postgresql | odbc-postgresql | libpg-java libsqliteodbc -#0 3.350 | tdsodbc | odbc-mdbtools ocl-icd-libopencl1 | mesa-opencl-icd -#0 3.350 | beignet-opencl-icd bluez fonts-crosextra-caladea fonts-crosextra-carlito -#0 3.350 libreoffice-java-common lm-sensors libssl-doc libstdc++-12-doc make-doc -#0 3.350 libnss-mdns fonts-dejavu-extra fonts-ipafont-gothic fonts-ipafont-mincho -#0 3.350 fonts-wqy-microhei | fonts-wqy-zenhei fonts-indic ed diffutils-doc perl-doc -#0 3.350 libterm-readline-gnu-perl | libterm-readline-perl-perl -#0 3.350 libtap-harness-archive-perl pinentry-doc python3-doc python3-tk python3-venv -#0 3.350 python3.11-venv python3.11-doc binfmt-support -#0 3.350 Recommended packages: -#0 3.350 librsvg2-common fakeroot libalgorithm-merge-perl alsa-ucm-conf -#0 3.350 alsa-topology-conf manpages manpages-dev libc-devtools libpam-cap dbus -#0 3.350 libfile-fcntllock-perl liblocale-gettext-perl libgdk-pixbuf2.0-bin -#0 3.350 libglib2.0-data xdg-user-dirs gstreamer1.0-plugins-base libgail-common -#0 3.350 libgtk2.0-bin hunspell-en-us | hunspell-dictionary | myspell-dictionary -#0 3.350 libldap-common poppler-data publicsuffix fonts-crosextra-caladea -#0 3.350 fonts-crosextra-carlito fonts-dejavu fonts-liberation fonts-liberation2 -#0 3.350 fonts-linuxlibertine fonts-noto-core fonts-noto-extra fonts-noto-mono -#0 3.350 fonts-noto-ui-core fonts-sil-gentium-basic libreoffice-nlpsolver -#0 3.350 libreoffice-report-builder libreoffice-script-provider-bsh -#0 3.350 libreoffice-script-provider-js libreoffice-script-provider-python -#0 3.350 libreoffice-sdbc-mysql libreoffice-sdbc-postgresql -#0 3.350 libreoffice-wiki-publisher libreoffice-java-common libreoffice-sdbc-hsqldb -#0 3.350 libreoffice-sdbc-firebird fonts-liberation2 | ttf-mscorefonts-installer -#0 3.350 apparmor xdg-utils libpaper-utils gstreamer1.0-plugins-good -#0 3.350 gstreamer1.0-plugins-ugly gstreamer1.0-plugins-bad gstreamer1.0-libav -#0 3.350 libsasl2-modules libatk-wrapper-java-jni fonts-dejavu-extra -#0 4.480 The following NEW packages will be installed: -#0 4.480 adwaita-icon-theme at-spi2-common binutils binutils-common -#0 4.480 binutils-x86-64-linux-gnu build-essential bzip2 ca-certificates-java -#0 4.480 coinor-libcbc3 coinor-libcgl1 coinor-libclp1 coinor-libcoinmp1v5 -#0 4.480 coinor-libcoinutils3v5 coinor-libosi1v5 cpp cpp-12 default-jre -#0 4.480 default-jre-headless dirmngr dpkg-dev fontconfig fontconfig-config -#0 4.480 fonts-dejavu-core fonts-opensymbol g++ g++-12 gcc gcc-12 gnupg gnupg-l10n -#0 4.480 gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm -#0 4.480 gtk-update-icon-cache hicolor-icon-theme iso-codes java-common -#0 4.480 libabsl20220623 libabw-0.1-1 libarchive13 libasan8 libasound2 -#0 4.480 libasound2-data libassuan0 libatk1.0-0 libatomic1 libavahi-client3 -#0 4.480 libavahi-common-data libavahi-common3 libbinutils libblas3 -#0 4.480 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-locale1.74.0 -#0 4.480 libboost-thread1.74.0 libbox2d2 libbrotli1 libbsd0 libc-dev-bin libc6-dev -#0 4.480 libcairo2 libcap2-bin libcc1-0 libcdr-0.1-1 libclucene-contribs1v5 -#0 4.480 libclucene-core1v5 libcolamd2 libcrypt-dev libctf-nobfd0 libctf0 libcups2 -#0 4.480 libcurl3-gnutls libcurl4 libdatrie1 libdbus-1-3 libdconf1 libdeflate0 -#0 4.480 libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 -#0 4.480 libdrm-radeon1 libdrm2 libdw1 libe-book-0.1-1 libedit2 libelf1 libeot0 -#0 4.480 libepoxy0 libepubgen-0.1-1 libetonyek-0.1-1 libexpat1 libexttextcat-2.0-0 -#0 4.480 libexttextcat-data libfontconfig1 libfreehand-0.1-1 libfreetype6 libfribidi0 -#0 4.480 libgcc-12-dev libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common -#0 4.480 libgfortran5 libgif7 libgl1 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa -#0 4.480 libglib2.0-0 libglvnd0 libglx-mesa0 libglx0 libgomp1 libgpgme11 libgpgmepp6 -#0 4.480 libgprofng0 libgraphite2-3 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 -#0 4.480 libgtk2.0-0 libgtk2.0-common libharfbuzz-icu0 libharfbuzz0b -#0 4.480 libhunspell-1.7-0 libhyphen0 libice6 libicu72 libisl23 libitm1 libjansson4 -#0 4.480 libjbig0 libjemalloc-dev libjemalloc2 libjpeg62-turbo libksba8 -#0 4.480 liblangtag-common liblangtag1 liblapack3 liblcms2-2 libldap-2.5-0 liblept5 -#0 4.480 liblerc4 libllvm15 liblsan0 libltdl7 libmhash2 libmpc3 libmpfr6 -#0 4.480 libmspub-0.1-1 libmwaw-0.3-3 libmythes-1.2-0 libnghttp2-14 libnpth0 -#0 4.480 libnsl-dev libnspr4 libnss3 libnumbertext-1.0-0 libnumbertext-data -#0 4.480 libodfgen-0.1-1 libopenjp2-7 liborc-0.4-0 liborcus-0.17-0 -#0 4.481 liborcus-parser-0.17-0 libpagemaker-0.0-0 libpango-1.0-0 libpangocairo-1.0-0 -#0 4.481 libpangoft2-1.0-0 libpciaccess0 libpcsclite1 libperl5.36 libpixman-1-0 -#0 4.481 libpng16-16 libpoppler126 libpq-dev libpq5 libpsl5 libpython3-stdlib -#0 4.481 libpython3.11 libpython3.11-minimal libpython3.11-stdlib libquadmath0 -#0 4.481 libqxp-0.0-0 libraptor2-0 librasqal3 librdf0 libreoffice libreoffice-base -#0 4.481 libreoffice-base-core libreoffice-base-drivers libreoffice-calc -#0 4.481 libreoffice-common libreoffice-core libreoffice-draw libreoffice-impress -#0 4.481 libreoffice-math libreoffice-report-builder-bin libreoffice-style-colibre -#0 4.481 libreoffice-writer librevenge-0.0-0 librtmp1 libsasl2-2 libsasl2-modules-db -#0 4.481 libsensors-config libsensors5 libsm6 libssh2-1 libssl-dev -#0 4.481 libstaroffice-0.0-0 libstdc++-12-dev libsuitesparseconfig5 libtesseract5 -#0 4.481 libthai-data libthai0 libtiff6 libtirpc-dev libtsan2 libubsan1 libuno-cppu3 -#0 4.481 libuno-cppuhelpergcc3-3 libuno-purpenvhelpergcc3-3 libuno-sal3 -#0 4.481 libuno-salhelpergcc3-3 libunwind8 libvisio-0.1-1 libwebp7 libwebpmux3 -#0 4.481 libwpd-0.10-10 libwpg-0.3-3 libwps-0.4-4 libx11-6 libx11-data libx11-xcb1 -#0 4.481 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 -#0 4.481 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 -#0 4.481 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 -#0 4.481 libxinerama1 libxml2 libxmlsec1 libxmlsec1-nss libxrandr2 libxrender1 -#0 4.481 libxshmfence1 libxslt1.1 libxtst6 libxxf86vm1 libyajl2 libz3-4 libzmf-0.0-0 -#0 4.481 libzxing2 linux-libc-dev lp-solve make media-types openjdk-17-jre -#0 4.481 openjdk-17-jre-headless patch perl perl-modules-5.36 pinentry-curses -#0 4.481 poppler-utils python3 python3-minimal python3-uno python3.11 -#0 4.481 python3.11-minimal rpcsvc-proto sensible-utils shared-mime-info -#0 4.481 tesseract-ocr tesseract-ocr-eng tesseract-ocr-osd ucf uno-libs-private ure -#0 4.481 wget x11-common xz-utils -#0 4.549 0 upgraded, 297 newly installed, 0 to remove and 0 not upgraded. -#0 4.549 Need to get 343 MB of archives. -#0 4.549 After this operation, 1328 MB of additional disk space will be used. -#0 4.549 Get:1 http://deb.debian.org/debian bookworm/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u1 [2815 kB] -#0 4.641 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB] -#0 4.680 Get:3 http://deb.debian.org/debian bookworm/main amd64 libperl5.36 amd64 5.36.0-7+deb12u1 [4218 kB] -#0 4.786 Get:4 http://deb.debian.org/debian bookworm/main amd64 perl amd64 5.36.0-7+deb12u1 [239 kB] -#0 4.831 Get:5 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] -#0 4.872 Get:6 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] -#0 4.919 Get:7 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] -#0 4.991 Get:8 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] -#0 5.054 Get:9 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] -#0 5.097 Get:10 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] -#0 5.129 Get:11 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] -#0 5.166 Get:12 http://deb.debian.org/debian bookworm/main amd64 fontconfig amd64 2.14.1-4 [449 kB] -#0 5.207 Get:13 http://deb.debian.org/debian-security bookworm-security/main amd64 fonts-opensymbol all 4:102.12+LibO7.4.7-1+deb12u6 [114 kB] -#0 5.224 Get:14 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-style-colibre all 4:7.4.7-1+deb12u6 [7172 kB] -#0 5.285 Get:15 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-sal3 amd64 4:7.4.7-1+deb12u6 [196 kB] -#0 5.299 Get:16 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-salhelpergcc3-3 amd64 4:7.4.7-1+deb12u6 [38.0 kB] -#0 5.339 Get:17 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-cppu3 amd64 4:7.4.7-1+deb12u6 [102 kB] -#0 5.355 Get:18 http://deb.debian.org/debian-security bookworm-security/main amd64 uno-libs-private amd64 4:7.4.7-1+deb12u6 [227 kB] -#0 5.388 Get:19 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] -#0 5.468 Get:20 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] -#0 5.485 Get:21 http://deb.debian.org/debian bookworm/main amd64 liblangtag-common all 0.6.4-2 [191 kB] -#0 5.520 Get:22 http://deb.debian.org/debian bookworm/main amd64 liblangtag1 amd64 0.6.4-2 [51.5 kB] -#0 5.553 Get:23 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-cppuhelpergcc3-3 amd64 4:7.4.7-1+deb12u6 [298 kB] -#0 5.592 Get:24 http://deb.debian.org/debian-security bookworm-security/main amd64 libuno-purpenvhelpergcc3-3 amd64 4:7.4.7-1+deb12u6 [37.1 kB] -#0 5.627 Get:25 http://deb.debian.org/debian-security bookworm-security/main amd64 ure amd64 4:7.4.7-1+deb12u6 [1226 kB] -#0 5.675 Get:26 http://deb.debian.org/debian bookworm/main amd64 sensible-utils all 0.0.17+nmu1 [19.0 kB] -#0 5.691 Get:27 http://deb.debian.org/debian bookworm/main amd64 ucf all 3.0043+nmu1+deb12u1 [55.3 kB] -#0 5.707 Get:28 http://deb.debian.org/debian bookworm/main amd64 libnumbertext-data all 1.0.11-1 [70.2 kB] -#0 5.723 Get:29 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-common all 4:7.4.7-1+deb12u6 [24.5 MB] -#42 ... - -#43 [opea/embedding-multimodal-bridgetower:latest 4/6] COPY --chown=user comps /home/user/comps -#43 DONE 0.3s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 5.870 Get:30 http://deb.debian.org/debian bookworm/main amd64 libabsl20220623 amd64 20220623.1-1 [391 kB] -#42 5.876 Get:31 http://deb.debian.org/debian bookworm/main amd64 libboost-thread1.74.0 amd64 1.74.0+ds1-21 [257 kB] -#42 5.879 Get:32 http://deb.debian.org/debian bookworm/main amd64 libboost-locale1.74.0 amd64 1.74.0+ds1-21 [449 kB] -#42 5.887 Get:33 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] -#42 5.890 Get:34 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] -#42 5.890 Get:35 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] -#42 5.892 Get:36 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] -#42 5.898 Get:37 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] -#42 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 ... - -#34 [opea/lvm-llava:latest 3/6] RUN apt-get update && apt-get install -y curl -#34 1.914 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#34 1.948 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#34 1.981 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#34 2.011 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#34 2.280 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#34 2.316 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#34 3.262 Fetched 9303 kB in 2s (3833 kB/s) -#34 3.262 Reading package lists... -#34 3.740 Reading package lists... -#34 4.194 Building dependency tree... -#34 4.287 Reading state information... -#34 4.396 The following additional packages will be installed: -#34 4.396 libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 -#34 4.396 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 -#34 4.396 publicsuffix -#34 4.397 Suggested packages: -#34 4.397 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal -#34 4.397 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql -#34 4.492 The following NEW packages will be installed: -#34 4.492 curl libbrotli1 libcurl4 libldap-2.5-0 libldap-common libnghttp2-14 libpsl5 -#34 4.492 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libssh2-1 -#34 4.493 publicsuffix -#34 4.518 0 upgraded, 13 newly installed, 0 to remove and 0 not upgraded. -#34 4.518 Need to get 1837 kB of archives. -#34 4.518 After this operation, 4548 kB of additional disk space will be used. -#34 4.518 Get:1 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] -#34 4.529 Get:2 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] -#34 4.534 Get:3 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] -#34 4.541 Get:4 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] -#34 4.548 Get:5 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] -#34 4.555 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] -#34 4.561 Get:7 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] -#34 4.567 Get:8 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] -#34 4.577 Get:9 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] -#34 4.614 Get:10 http://deb.debian.org/debian bookworm/main amd64 curl amd64 7.88.1-10+deb12u8 [315 kB] -#34 4.651 Get:11 http://deb.debian.org/debian bookworm/main amd64 libldap-common all 2.5.13+dfsg-5 [29.3 kB] -#34 4.687 Get:12 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules amd64 2.1.28+dfsg-10 [66.6 kB] -#34 4.729 Get:13 http://deb.debian.org/debian bookworm/main amd64 publicsuffix all 20230209.2326-1 [126 kB] -#34 4.862 debconf: delaying package configuration, since apt-utils is not installed -#34 4.918 Fetched 1837 kB in 0s (7758 kB/s) -#34 4.939 Selecting previously unselected package libbrotli1:amd64. -#34 4.939 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) -#34 4.945 Preparing to unpack .../00-libbrotli1_1.0.9-2+b6_amd64.deb ... -#34 4.946 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... -#34 4.979 Selecting previously unselected package libsasl2-modules-db:amd64. -#34 4.980 Preparing to unpack .../01-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... -#34 4.984 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#34 4.997 Selecting previously unselected package libsasl2-2:amd64. -#34 4.998 Preparing to unpack .../02-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... -#34 4.998 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#34 5.015 Selecting previously unselected package libldap-2.5-0:amd64. -#34 5.016 Preparing to unpack .../03-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... -#34 5.016 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#34 5.048 Selecting previously unselected package libnghttp2-14:amd64. -#34 5.048 Preparing to unpack .../04-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... -#34 5.049 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#34 5.067 Selecting previously unselected package libpsl5:amd64. -#34 5.068 Preparing to unpack .../05-libpsl5_0.21.2-1_amd64.deb ... -#34 5.069 Unpacking libpsl5:amd64 (0.21.2-1) ... -#34 5.087 Selecting previously unselected package librtmp1:amd64. -#34 5.088 Preparing to unpack .../06-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... -#34 5.089 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#34 5.108 Selecting previously unselected package libssh2-1:amd64. -#34 5.109 Preparing to unpack .../07-libssh2-1_1.10.0-3+b1_amd64.deb ... -#34 5.110 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... -#34 5.141 Selecting previously unselected package libcurl4:amd64. -#34 5.141 Preparing to unpack .../08-libcurl4_7.88.1-10+deb12u8_amd64.deb ... -#34 5.143 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... -#34 5.179 Selecting previously unselected package curl. -#34 5.179 Preparing to unpack .../09-curl_7.88.1-10+deb12u8_amd64.deb ... -#34 5.180 Unpacking curl (7.88.1-10+deb12u8) ... -#34 5.210 Selecting previously unselected package libldap-common. -#34 5.210 Preparing to unpack .../10-libldap-common_2.5.13+dfsg-5_all.deb ... -#34 5.211 Unpacking libldap-common (2.5.13+dfsg-5) ... -#34 5.225 Selecting previously unselected package libsasl2-modules:amd64. -#34 5.225 Preparing to unpack .../11-libsasl2-modules_2.1.28+dfsg-10_amd64.deb ... -#34 5.231 Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... -#34 5.249 Selecting previously unselected package publicsuffix. -#34 5.250 Preparing to unpack .../12-publicsuffix_20230209.2326-1_all.deb ... -#34 5.251 Unpacking publicsuffix (20230209.2326-1) ... -#34 5.281 Setting up libpsl5:amd64 (0.21.2-1) ... -#34 5.284 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... -#34 5.286 Setting up libsasl2-modules:amd64 (2.1.28+dfsg-10) ... -#34 5.293 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#34 5.297 Setting up libldap-common (2.5.13+dfsg-5) ... -#34 5.301 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#34 5.303 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#34 5.305 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#34 5.307 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... -#34 5.310 Setting up publicsuffix (20230209.2326-1) ... -#34 5.312 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#34 5.314 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... -#34 5.316 Setting up curl (7.88.1-10+deb12u8) ... -#34 5.318 Processing triggers for libc-bin (2.36-9+deb12u9) ... -#34 DONE 5.5s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 5.906 Get:38 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] -#42 5.916 Get:39 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] -#42 5.922 Get:40 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] -#42 5.933 Get:41 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] -#42 5.938 Get:42 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] -#42 5.939 Get:43 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] -#42 5.952 Get:44 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] -#42 5.998 Get:45 http://deb.debian.org/debian bookworm/main amd64 libclucene-core1v5 amd64 2.3.3.4+dfsg-1.1 [489 kB] -#42 6.015 Get:46 http://deb.debian.org/debian bookworm/main amd64 libclucene-contribs1v5 amd64 2.3.3.4+dfsg-1.1 [85.7 kB] -#42 6.028 Get:47 http://deb.debian.org/debian bookworm/main amd64 libavahi-common-data amd64 0.8-10+deb12u1 [107 kB] -#42 6.041 Get:48 http://deb.debian.org/debian bookworm/main amd64 libavahi-common3 amd64 0.8-10+deb12u1 [42.1 kB] -#42 6.047 Get:49 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB] -#42 6.061 Get:50 http://deb.debian.org/debian bookworm/main amd64 libavahi-client3 amd64 0.8-10+deb12u1 [45.8 kB] -#42 6.075 Get:51 http://deb.debian.org/debian bookworm/main amd64 libcups2 amd64 2.4.2-3+deb12u8 [246 kB] -#42 6.080 Get:52 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] -#42 6.086 Get:53 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] -#42 6.092 Get:54 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] -#42 6.099 Get:55 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] -#42 6.104 Get:56 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] -#42 6.111 Get:57 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] -#42 6.117 Get:58 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] -#42 6.123 Get:59 http://deb.debian.org/debian bookworm/main amd64 libcurl3-gnutls amd64 7.88.1-10+deb12u8 [385 kB] -#42 6.132 Get:60 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] -#42 6.151 Get:61 http://deb.debian.org/debian bookworm/main amd64 libdconf1 amd64 0.40.0-4 [40.9 kB] -#42 6.192 Get:62 http://deb.debian.org/debian bookworm/main amd64 libeot0 amd64 0.01-5+b1 [27.1 kB] -#42 6.229 Get:63 http://deb.debian.org/debian bookworm/main amd64 libepoxy0 amd64 1.5.10-1 [189 kB] -#42 6.246 Get:64 http://deb.debian.org/debian bookworm/main amd64 libexttextcat-data all 3.4.5-1 [164 kB] -#42 6.261 Get:65 http://deb.debian.org/debian bookworm/main amd64 libexttextcat-2.0-0 amd64 3.4.5-1 [15.9 kB] -#42 6.274 Get:66 http://deb.debian.org/debian bookworm/main amd64 libassuan0 amd64 2.5.5-5 [48.5 kB] -#42 6.287 Get:67 http://deb.debian.org/debian bookworm/main amd64 gpgconf amd64 2.2.40-1.1 [564 kB] -#42 6.303 Get:68 http://deb.debian.org/debian bookworm/main amd64 libksba8 amd64 1.6.3-2 [128 kB] -#42 6.318 Get:69 http://deb.debian.org/debian bookworm/main amd64 libnpth0 amd64 1.6-3 [19.0 kB] -#42 6.331 Get:70 http://deb.debian.org/debian bookworm/main amd64 dirmngr amd64 2.2.40-1.1 [792 kB] -#42 6.368 Get:71 http://deb.debian.org/debian bookworm/main amd64 gnupg-l10n all 2.2.40-1.1 [1093 kB] -#42 6.392 Get:72 http://deb.debian.org/debian bookworm/main amd64 gnupg-utils amd64 2.2.40-1.1 [927 kB] -#42 6.418 Get:73 http://deb.debian.org/debian bookworm/main amd64 gpg amd64 2.2.40-1.1 [949 kB] -#42 6.434 Get:74 http://deb.debian.org/debian bookworm/main amd64 pinentry-curses amd64 1.2.1-1 [77.4 kB] -#42 6.447 Get:75 http://deb.debian.org/debian bookworm/main amd64 gpg-agent amd64 2.2.40-1.1 [695 kB] -#42 6.462 Get:76 http://deb.debian.org/debian bookworm/main amd64 gpg-wks-client amd64 2.2.40-1.1 [541 kB] -#42 6.480 Get:77 http://deb.debian.org/debian bookworm/main amd64 gpg-wks-server amd64 2.2.40-1.1 [531 kB] -#42 6.493 Get:78 http://deb.debian.org/debian bookworm/main amd64 gpgsm amd64 2.2.40-1.1 [671 kB] -#42 6.540 Get:79 http://deb.debian.org/debian bookworm/main amd64 gnupg all 2.2.40-1.1 [846 kB] -#42 6.599 Get:80 http://deb.debian.org/debian bookworm/main amd64 libgpgme11 amd64 1.18.0-3+b1 [300 kB] -#42 6.646 Get:81 http://deb.debian.org/debian bookworm/main amd64 libgpgmepp6 amd64 1.18.0-3+b1 [293 kB] -#42 6.695 Get:82 http://deb.debian.org/debian bookworm/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -#42 6.726 Get:83 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] -#42 ... - -#45 [opea/lvm-llava:latest 4/6] COPY comps /home/user/comps -#45 DONE 0.3s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 6.772 Get:84 http://deb.debian.org/debian bookworm/main amd64 libdw1 amd64 0.188-2.1 [235 kB] -#42 6.816 Get:85 http://deb.debian.org/debian bookworm/main amd64 libunwind8 amd64 1.6.2-3 [51.2 kB] -#42 6.830 Get:86 http://deb.debian.org/debian bookworm/main amd64 libcap2-bin amd64 1:2.66-4 [34.7 kB] -#42 6.847 Get:87 http://deb.debian.org/debian bookworm/main amd64 libgstreamer1.0-0 amd64 1.22.0-2+deb12u1 [1170 kB] -#42 6.864 Get:88 http://deb.debian.org/debian bookworm/main amd64 liborc-0.4-0 amd64 1:0.4.33-2 [164 kB] -#42 6.878 Get:89 http://deb.debian.org/debian bookworm/main amd64 iso-codes all 4.15.0-1 [2906 kB] -#42 6.904 Get:90 http://deb.debian.org/debian bookworm/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.22.0-3+deb12u4 [935 kB] -#42 6.911 Get:91 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz0b amd64 6.0.0+dfsg-3 [1945 kB] -#42 6.932 Get:92 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz-icu0 amd64 6.0.0+dfsg-3 [1557 kB] -#42 6.975 Get:93 http://deb.debian.org/debian bookworm/main amd64 libhunspell-1.7-0 amd64 1.7.1-1 [193 kB] -#42 7.013 Get:94 http://deb.debian.org/debian bookworm/main amd64 libhyphen0 amd64 2.8.8-7 [32.5 kB] -#42 7.049 Get:95 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB] -#42 7.064 Get:96 http://deb.debian.org/debian bookworm/main amd64 libice6 amd64 2:1.0.10-1 [58.5 kB] -#42 7.070 Get:97 http://deb.debian.org/debian bookworm/main amd64 libjpeg62-turbo amd64 1:2.1.5-2 [166 kB] -#42 7.077 Get:98 http://deb.debian.org/debian bookworm/main amd64 liblcms2-2 amd64 2.14-2 [154 kB] -#42 7.091 Get:99 http://deb.debian.org/debian bookworm/main amd64 libmythes-1.2-0 amd64 2:1.2.5-1 [11.1 kB] -#42 7.097 Get:100 http://deb.debian.org/debian bookworm/main amd64 libnspr4 amd64 2:4.35-1 [113 kB] -#42 7.104 Get:101 http://deb.debian.org/debian bookworm/main amd64 libnss3 amd64 2:3.87.1-1+deb12u1 [1331 kB] -#42 7.125 Get:102 http://deb.debian.org/debian bookworm/main amd64 libnumbertext-1.0-0 amd64 1.0.11-1 [106 kB] -#42 7.139 Get:103 http://deb.debian.org/debian-security bookworm-security/main amd64 libopenjp2-7 amd64 2.5.0-2+deb12u1 [189 kB] -#42 7.154 Get:104 http://deb.debian.org/debian bookworm/main amd64 libboost-filesystem1.74.0 amd64 1.74.0+ds1-21 [258 kB] -#42 7.171 Get:105 http://deb.debian.org/debian bookworm/main amd64 libboost-iostreams1.74.0 amd64 1.74.0+ds1-21 [240 kB] -#42 7.190 Get:106 http://deb.debian.org/debian bookworm/main amd64 liborcus-parser-0.17-0 amd64 0.17.2-2+b2 [111 kB] -#42 7.205 Get:107 http://deb.debian.org/debian bookworm/main amd64 liborcus-0.17-0 amd64 0.17.2-2+b2 [383 kB] -#42 7.211 Get:108 http://deb.debian.org/debian bookworm/main amd64 libdeflate0 amd64 1.14-1 [61.4 kB] -#42 7.220 Get:109 http://deb.debian.org/debian bookworm/main amd64 libjbig0 amd64 2.1-6.1 [31.7 kB] -#42 7.225 Get:110 http://deb.debian.org/debian bookworm/main amd64 liblerc4 amd64 4.0.0+ds-2 [170 kB] -#42 7.233 Get:111 http://deb.debian.org/debian bookworm/main amd64 libwebp7 amd64 1.2.4-0.2+deb12u1 [286 kB] -#42 7.240 Get:112 http://deb.debian.org/debian bookworm/main amd64 libtiff6 amd64 4.5.0-6+deb12u2 [316 kB] -#42 7.254 Get:113 http://deb.debian.org/debian bookworm/main amd64 libpoppler126 amd64 22.12.0-2+b1 [1852 kB] -#42 7.271 Get:114 http://deb.debian.org/debian bookworm/main amd64 libxslt1.1 amd64 1.1.35-1 [242 kB] -#42 7.314 Get:115 http://deb.debian.org/debian bookworm/main amd64 libyajl2 amd64 2.1.0-3+deb12u2 [23.0 kB] -#42 7.356 Get:116 http://deb.debian.org/debian bookworm/main amd64 libraptor2-0 amd64 2.0.15-4 [163 kB] -#42 7.404 Get:117 http://deb.debian.org/debian bookworm/main amd64 libltdl7 amd64 2.4.7-7~deb12u1 [393 kB] -#42 7.419 Get:118 http://deb.debian.org/debian bookworm/main amd64 libmhash2 amd64 0.9.9.9-9 [94.2 kB] -#42 7.435 Get:119 http://deb.debian.org/debian bookworm/main amd64 librasqal3 amd64 0.9.33-2 [191 kB] -#42 7.450 Get:120 http://deb.debian.org/debian bookworm/main amd64 librdf0 amd64 1.0.17-3 [105 kB] -#42 7.478 Get:121 http://deb.debian.org/debian bookworm/main amd64 librevenge-0.0-0 amd64 0.0.5-3 [287 kB] -#42 7.492 Get:122 http://deb.debian.org/debian bookworm/main amd64 libsm6 amd64 2:1.2.3-1 [35.1 kB] -#42 7.498 Get:123 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] -#42 7.505 Get:124 http://deb.debian.org/debian bookworm/main amd64 libxinerama1 amd64 2:1.1.4-3 [17.8 kB] -#42 7.520 Get:125 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1 amd64 1.2.37-2 [153 kB] -#42 7.535 Get:126 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1-nss amd64 1.2.37-2 [64.8 kB] -#42 7.541 Get:127 http://deb.debian.org/debian bookworm/main amd64 libxrandr2 amd64 2:1.5.2-2+b1 [39.2 kB] -#42 7.555 Get:128 http://deb.debian.org/debian bookworm/main amd64 libzxing2 amd64 1.4.0-3+b1 [601 kB] -#42 7.588 Get:129 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-core amd64 4:7.4.7-1+deb12u6 [32.6 MB] -#42 7.802 Get:130 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-base-core amd64 4:7.4.7-1+deb12u6 [799 kB] -#42 7.805 Get:131 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-base-drivers amd64 4:7.4.7-1+deb12u6 [546 kB] -#42 7.807 Get:132 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-base amd64 4:7.4.7-1+deb12u6 [1416 kB] -#42 7.832 Get:133 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-minimal amd64 3.11.2-6+deb12u5 [816 kB] -#42 7.842 Get:134 http://deb.debian.org/debian bookworm/main amd64 python3.11-minimal amd64 3.11.2-6+deb12u5 [2067 kB] -#42 7.862 Get:135 http://deb.debian.org/debian bookworm/main amd64 python3-minimal amd64 3.11.2-1+b1 [26.3 kB] -#42 7.862 Get:136 http://deb.debian.org/debian bookworm/main amd64 media-types all 10.0.0 [26.1 kB] -#42 7.867 Get:137 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-stdlib amd64 3.11.2-6+deb12u5 [1797 kB] -#42 7.878 Get:138 http://deb.debian.org/debian bookworm/main amd64 python3.11 amd64 3.11.2-6+deb12u5 [573 kB] -#42 7.885 Get:139 http://deb.debian.org/debian bookworm/main amd64 libpython3-stdlib amd64 3.11.2-1+b1 [9312 B] -#42 7.891 Get:140 http://deb.debian.org/debian bookworm/main amd64 python3 amd64 3.11.2-1+b1 [26.3 kB] -#42 7.897 Get:141 http://deb.debian.org/debian bookworm/main amd64 bzip2 amd64 1.0.8-5+b1 [49.8 kB] -#42 7.903 Get:142 http://deb.debian.org/debian bookworm/main amd64 wget amd64 1.21.3-1+b2 [984 kB] -#42 7.913 Get:143 http://deb.debian.org/debian bookworm/main amd64 xz-utils amd64 5.4.1-0.2 [471 kB] -#42 7.920 Get:144 http://deb.debian.org/debian bookworm/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -#42 7.926 Get:145 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-common all 2.42.10+dfsg-1+deb12u1 [306 kB] -#42 7.933 Get:146 http://deb.debian.org/debian bookworm/main amd64 shared-mime-info amd64 2.2-1 [729 kB] -#42 7.940 Get:147 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.10+dfsg-1+deb12u1 [139 kB] -#42 7.946 Get:148 http://deb.debian.org/debian bookworm/main amd64 gtk-update-icon-cache amd64 3.24.38-2~deb12u3 [44.2 kB] -#42 7.953 Get:149 http://deb.debian.org/debian bookworm/main amd64 adwaita-icon-theme all 43-1 [5124 kB] -#42 7.982 Get:150 http://deb.debian.org/debian bookworm/main amd64 at-spi2-common all 2.46.0-5 [162 kB] -#42 7.983 Get:151 http://deb.debian.org/debian bookworm/main amd64 binutils-common amd64 2.40-2 [2487 kB] -#42 7.996 Get:152 http://deb.debian.org/debian bookworm/main amd64 libbinutils amd64 2.40-2 [572 kB] -#42 8.003 Get:153 http://deb.debian.org/debian bookworm/main amd64 libctf-nobfd0 amd64 2.40-2 [153 kB] -#42 8.010 Get:154 http://deb.debian.org/debian bookworm/main amd64 libctf0 amd64 2.40-2 [89.8 kB] -#42 8.023 Get:155 http://deb.debian.org/debian bookworm/main amd64 libgprofng0 amd64 2.40-2 [812 kB] -#42 8.035 Get:156 http://deb.debian.org/debian bookworm/main amd64 libjansson4 amd64 2.14-2 [40.8 kB] -#42 8.041 Get:157 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-64-linux-gnu amd64 2.40-2 [2246 kB] -#42 8.082 Get:158 http://deb.debian.org/debian bookworm/main amd64 binutils amd64 2.40-2 [65.0 kB] -#42 8.118 Get:159 http://deb.debian.org/debian bookworm/main amd64 libc-dev-bin amd64 2.36-9+deb12u9 [46.7 kB] -#42 8.154 Get:160 http://deb.debian.org/debian bookworm-updates/main amd64 linux-libc-dev amd64 6.1.124-1 [2099 kB] -#42 8.199 Get:161 http://deb.debian.org/debian bookworm/main amd64 libcrypt-dev amd64 1:4.4.33-2 [118 kB] -#42 8.234 Get:162 http://deb.debian.org/debian bookworm/main amd64 libtirpc-dev amd64 1.3.3+ds-1 [191 kB] -#42 8.271 Get:163 http://deb.debian.org/debian bookworm/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -#42 8.311 Get:164 http://deb.debian.org/debian bookworm/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB] -#42 8.350 Get:165 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd64 2.36-9+deb12u9 [1904 kB] -#42 8.401 Get:166 http://deb.debian.org/debian bookworm/main amd64 libisl23 amd64 0.25-1.1 [683 kB] -#42 8.448 Get:167 http://deb.debian.org/debian bookworm/main amd64 libmpfr6 amd64 4.2.0-1 [701 kB] -#42 8.492 Get:168 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 1.3.1-1 [51.5 kB] -#42 8.574 Get:169 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 12.2.0-14 [9764 kB] -#42 8.685 Get:170 http://deb.debian.org/debian bookworm/main amd64 cpp amd64 4:12.2.0-3 [6836 B] -#42 8.715 Get:171 http://deb.debian.org/debian bookworm/main amd64 libcc1-0 amd64 12.2.0-14 [41.7 kB] -#42 8.744 Get:172 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB] -#42 8.774 Get:173 http://deb.debian.org/debian bookworm/main amd64 libitm1 amd64 12.2.0-14 [26.1 kB] -#42 8.804 Get:174 http://deb.debian.org/debian bookworm/main amd64 libatomic1 amd64 12.2.0-14 [9328 B] -#42 8.834 Get:175 http://deb.debian.org/debian bookworm/main amd64 libasan8 amd64 12.2.0-14 [2195 kB] -#42 8.879 Get:176 http://deb.debian.org/debian bookworm/main amd64 liblsan0 amd64 12.2.0-14 [969 kB] -#42 8.916 Get:177 http://deb.debian.org/debian bookworm/main amd64 libtsan2 amd64 12.2.0-14 [2196 kB] -#42 8.973 Get:178 http://deb.debian.org/debian bookworm/main amd64 libubsan1 amd64 12.2.0-14 [883 kB] -#42 9.007 Get:179 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB] -#42 9.040 Get:180 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev amd64 12.2.0-14 [2437 kB] -#42 9.088 Get:181 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 12.2.0-14 [19.3 MB] -#42 9.343 Get:182 http://deb.debian.org/debian bookworm/main amd64 gcc amd64 4:12.2.0-3 [5216 B] -#42 9.366 Get:183 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-dev amd64 12.2.0-14 [2046 kB] -#42 9.418 Get:184 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 12.2.0-14 [10.7 MB] -#42 ... - -#46 [opea/multimodalqna:latest git 1/2] RUN apt-get update && apt-get install -y --no-install-recommends git -#0 0.335 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#0 0.347 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#0 0.356 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#0 0.438 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#0 0.629 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#0 0.635 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#0 1.655 Fetched 9303 kB in 1s (6984 kB/s) -#0 1.655 Reading package lists... -#0 2.167 Reading package lists... -#0 2.635 Building dependency tree... -#0 2.743 Reading state information... -#0 2.852 The following additional packages will be installed: -#0 2.852 git-man libbrotli1 libcurl3-gnutls liberror-perl libexpat1 libgdbm-compat4 -#0 2.853 libldap-2.5-0 libnghttp2-14 libperl5.36 libpsl5 librtmp1 libsasl2-2 -#0 2.853 libsasl2-modules-db libssh2-1 perl perl-modules-5.36 -#0 2.854 Suggested packages: -#0 2.854 gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-email git-gui -#0 2.854 gitk gitweb git-cvs git-mediawiki git-svn sensible-utils perl-doc -#0 2.854 libterm-readline-gnu-perl | libterm-readline-perl-perl make -#0 2.854 libtap-harness-archive-perl -#0 2.854 Recommended packages: -#0 2.854 patch less ssh-client libldap-common publicsuffix libsasl2-modules -#0 2.973 The following NEW packages will be installed: -#0 2.973 git git-man libbrotli1 libcurl3-gnutls liberror-perl libexpat1 -#0 2.973 libgdbm-compat4 libldap-2.5-0 libnghttp2-14 libperl5.36 libpsl5 librtmp1 -#0 2.974 libsasl2-2 libsasl2-modules-db libssh2-1 perl perl-modules-5.36 -#0 3.001 0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded. -#0 3.001 Need to get 18.1 MB of archives. -#0 3.001 After this operation, 100 MB of additional disk space will be used. -#0 3.001 Get:1 http://deb.debian.org/debian bookworm/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u1 [2815 kB] -#0 3.038 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB] -#0 3.044 Get:3 http://deb.debian.org/debian bookworm/main amd64 libperl5.36 amd64 5.36.0-7+deb12u1 [4218 kB] -#0 3.074 Get:4 http://deb.debian.org/debian bookworm/main amd64 perl amd64 5.36.0-7+deb12u1 [239 kB] -#0 3.079 Get:5 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] -#0 3.087 Get:6 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] -#0 3.094 Get:7 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] -#0 3.101 Get:8 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] -#0 3.109 Get:9 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] -#0 3.117 Get:10 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] -#0 3.126 Get:11 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] -#0 3.133 Get:12 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] -#0 3.140 Get:13 http://deb.debian.org/debian bookworm/main amd64 libcurl3-gnutls amd64 7.88.1-10+deb12u8 [385 kB] -#0 3.171 Get:14 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] -#0 3.199 Get:15 http://deb.debian.org/debian bookworm/main amd64 liberror-perl all 0.17029-2 [29.0 kB] -#0 3.227 Get:16 http://deb.debian.org/debian-security bookworm-security/main amd64 git-man all 1:2.39.5-0+deb12u2 [2053 kB] -#0 3.266 Get:17 http://deb.debian.org/debian-security bookworm-security/main amd64 git amd64 1:2.39.5-0+deb12u2 [7260 kB] -#0 3.417 debconf: delaying package configuration, since apt-utils is not installed -#0 3.440 Fetched 18.1 MB in 0s (55.0 MB/s) -#0 3.454 Selecting previously unselected package perl-modules-5.36. -#0 3.454 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) -#0 3.459 Preparing to unpack .../00-perl-modules-5.36_5.36.0-7+deb12u1_all.deb ... -#0 3.460 Unpacking perl-modules-5.36 (5.36.0-7+deb12u1) ... -#0 3.735 Selecting previously unselected package libgdbm-compat4:amd64. -#0 3.736 Preparing to unpack .../01-libgdbm-compat4_1.23-3_amd64.deb ... -#0 3.737 Unpacking libgdbm-compat4:amd64 (1.23-3) ... -#0 3.755 Selecting previously unselected package libperl5.36:amd64. -#0 3.756 Preparing to unpack .../02-libperl5.36_5.36.0-7+deb12u1_amd64.deb ... -#0 3.757 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u1) ... -#0 4.068 Selecting previously unselected package perl. -#0 4.069 Preparing to unpack .../03-perl_5.36.0-7+deb12u1_amd64.deb ... -#0 4.074 Unpacking perl (5.36.0-7+deb12u1) ... -#0 4.105 Selecting previously unselected package libbrotli1:amd64. -#0 4.106 Preparing to unpack .../04-libbrotli1_1.0.9-2+b6_amd64.deb ... -#0 4.107 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... -#0 4.140 Selecting previously unselected package libsasl2-modules-db:amd64. -#0 4.141 Preparing to unpack .../05-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... -#0 4.141 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#0 4.161 Selecting previously unselected package libsasl2-2:amd64. -#0 4.162 Preparing to unpack .../06-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... -#0 4.163 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#0 4.180 Selecting previously unselected package libldap-2.5-0:amd64. -#0 4.180 Preparing to unpack .../07-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... -#0 4.181 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#0 4.206 Selecting previously unselected package libnghttp2-14:amd64. -#0 4.207 Preparing to unpack .../08-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... -#0 4.207 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#0 4.225 Selecting previously unselected package libpsl5:amd64. -#0 4.226 Preparing to unpack .../09-libpsl5_0.21.2-1_amd64.deb ... -#0 4.227 Unpacking libpsl5:amd64 (0.21.2-1) ... -#0 4.243 Selecting previously unselected package librtmp1:amd64. -#0 4.243 Preparing to unpack .../10-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... -#0 4.244 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#0 4.262 Selecting previously unselected package libssh2-1:amd64. -#0 4.262 Preparing to unpack .../11-libssh2-1_1.10.0-3+b1_amd64.deb ... -#0 4.263 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... -#0 4.309 Selecting previously unselected package libcurl3-gnutls:amd64. -#0 4.309 Preparing to unpack .../12-libcurl3-gnutls_7.88.1-10+deb12u8_amd64.deb ... -#0 4.310 Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... -#0 4.346 Selecting previously unselected package libexpat1:amd64. -#0 4.347 Preparing to unpack .../13-libexpat1_2.5.0-1+deb12u1_amd64.deb ... -#0 4.347 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... -#0 4.367 Selecting previously unselected package liberror-perl. -#0 4.368 Preparing to unpack .../14-liberror-perl_0.17029-2_all.deb ... -#0 4.369 Unpacking liberror-perl (0.17029-2) ... -#0 4.383 Selecting previously unselected package git-man. -#0 4.384 Preparing to unpack .../15-git-man_1%3a2.39.5-0+deb12u2_all.deb ... -#0 4.384 Unpacking git-man (1:2.39.5-0+deb12u2) ... -#0 4.504 Selecting previously unselected package git. -#0 4.505 Preparing to unpack .../16-git_1%3a2.39.5-0+deb12u2_amd64.deb ... -#0 4.510 Unpacking git (1:2.39.5-0+deb12u2) ... -#0 4.832 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... -#0 4.834 Setting up libpsl5:amd64 (0.21.2-1) ... -#0 4.835 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... -#0 4.837 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#0 4.839 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#0 4.841 Setting up perl-modules-5.36 (5.36.0-7+deb12u1) ... -#0 4.843 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#0 4.845 Setting up libgdbm-compat4:amd64 (1.23-3) ... -#0 4.847 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#0 4.849 Setting up git-man (1:2.39.5-0+deb12u2) ... -#0 4.850 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... -#0 4.852 Setting up libperl5.36:amd64 (5.36.0-7+deb12u1) ... -#0 4.854 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#0 4.855 Setting up perl (5.36.0-7+deb12u1) ... -#0 4.864 Setting up libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... -#0 4.866 Setting up liberror-perl (0.17029-2) ... -#0 4.868 Setting up git (1:2.39.5-0+deb12u2) ... -#0 4.875 Processing triggers for libc-bin (2.36-9+deb12u9) ... -#46 DONE 5.7s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 9.717 Get:185 http://deb.debian.org/debian bookworm/main amd64 g++ amd64 4:12.2.0-3 [1356 B] -#42 9.755 Get:186 http://deb.debian.org/debian bookworm/main amd64 make amd64 4.3-4.1 [396 kB] -#42 9.797 Get:187 http://deb.debian.org/debian bookworm/main amd64 libdpkg-perl all 1.21.22 [603 kB] -#42 9.845 Get:188 http://deb.debian.org/debian bookworm/main amd64 patch amd64 2.7.6-7 [128 kB] -#42 9.880 Get:189 http://deb.debian.org/debian bookworm/main amd64 dpkg-dev all 1.21.22 [1353 kB] -#42 9.937 Get:190 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B] -#42 9.971 Get:191 http://deb.debian.org/debian bookworm/main amd64 ca-certificates-java all 20230710~deb12u1 [11.9 kB] -#42 10.01 Get:192 http://deb.debian.org/debian bookworm/main amd64 libblas3 amd64 3.11.0-2 [149 kB] -#42 10.06 Get:193 http://deb.debian.org/debian bookworm/main amd64 libgfortran5 amd64 12.2.0-14 [793 kB] -#42 ... - -#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim -#0 0.795 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#0 0.813 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#0 0.828 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#0 0.903 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#0 1.593 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#0 1.616 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#0 2.589 Fetched 9303 kB in 2s (5101 kB/s) -#0 2.589 Reading package lists... -#0 3.042 Reading package lists... -#0 3.529 Building dependency tree... -#0 3.640 Reading state information... -#0 3.767 The following additional packages will be installed: -#0 3.767 fontconfig-config fonts-dejavu-core libbrotli1 libbsd0 libdrm-amdgpu1 -#0 3.767 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 -#0 3.767 libelf1 libexpat1 libfontconfig1 libfreetype6 libgl1 libgl1-mesa-dri -#0 3.767 libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgpm2 libicu72 libjemalloc2 -#0 3.767 libllvm15 libpciaccess0 libpixman-1-0 libpng16-16 libsensors-config -#0 3.767 libsensors5 libsodium23 libx11-6 libx11-data libx11-xcb1 libxau6 -#0 3.767 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 -#0 3.767 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxdmcp6 -#0 3.768 libxext6 libxfixes3 libxml2 libxrender1 libxshmfence1 libxxf86vm1 libz3-4 -#0 3.768 vim-common vim-runtime -#0 3.769 Suggested packages: -#0 3.769 low-memory-monitor gpm binutils pciutils lm-sensors ctags vim-doc -#0 3.769 vim-scripts -#0 3.769 Recommended packages: -#0 3.769 libglib2.0-data shared-mime-info xdg-user-dirs xxd -#0 4.023 The following NEW packages will be installed: -#0 4.023 fontconfig-config fonts-dejavu-core libbrotli1 libbsd0 libcairo2 -#0 4.023 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 -#0 4.023 libdrm2 libedit2 libelf1 libexpat1 libfontconfig1 libfreetype6 libgl1 -#0 4.023 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa libglib2.0-0 libglvnd0 -#0 4.023 libglx-mesa0 libglx0 libgpm2 libicu72 libjemalloc-dev libjemalloc2 libllvm15 -#0 4.024 libpciaccess0 libpixman-1-0 libpng16-16 libsensors-config libsensors5 -#0 4.024 libsodium23 libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri2-0 -#0 4.024 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 -#0 4.024 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxdmcp6 libxext6 -#0 4.024 libxfixes3 libxml2 libxrender1 libxshmfence1 libxxf86vm1 libz3-4 vim -#0 4.024 vim-common vim-runtime -#0 4.098 0 upgraded, 60 newly installed, 0 to remove and 0 not upgraded. -#0 4.098 Need to get 66.2 MB of archives. -#0 4.098 After this operation, 275 MB of additional disk space will be used. -#0 4.098 Get:1 http://deb.debian.org/debian bookworm/main amd64 vim-common all 2:9.0.1378-2 [124 kB] -#0 4.149 Get:2 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] -#0 4.210 Get:3 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] -#0 4.253 Get:4 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] -#0 4.297 Get:5 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] -#0 4.341 Get:6 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] -#0 4.384 Get:7 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] -#0 4.399 Get:8 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] -#0 4.448 Get:9 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] -#0 4.463 Get:10 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] -#0 4.474 Get:11 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] -#0 4.480 Get:12 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] -#0 4.486 Get:13 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] -#0 4.522 Get:14 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] -#0 4.553 Get:15 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] -#0 4.571 Get:16 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] -#0 4.585 Get:17 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] -#0 4.591 Get:18 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] -#0 4.627 Get:19 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] -#0 4.640 Get:20 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] -#0 4.657 Get:21 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] -#0 4.671 Get:22 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] -#0 4.709 Get:23 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] -#0 4.722 Get:24 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] -#0 4.762 Get:25 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] -#0 4.776 Get:26 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] -#0 4.790 Get:27 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] -#0 4.796 Get:28 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] -#0 4.810 Get:29 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] -#0 4.855 Get:30 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] -#0 4.875 Get:31 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] -#0 4.895 Get:32 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] -#0 4.944 Get:33 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] -#0 4.993 Get:34 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] -#0 5.006 Get:35 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] -#0 5.020 Get:36 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] -#0 5.034 Get:37 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] -#0 5.048 Get:38 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] -#0 5.098 Get:39 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] -#0 5.199 Get:40 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] -#0 5.202 Get:41 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -#0 5.235 Get:42 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -#0 5.257 Get:43 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] -#0 5.406 Get:44 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] -#0 5.419 Get:45 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] -#0 5.510 Get:46 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] -#0 5.711 Get:47 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] -#0 5.714 Get:48 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] -#0 5.719 Get:49 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] -#0 5.780 Get:50 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] -#0 5.781 Get:51 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] -#0 5.789 Get:52 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] -#0 5.807 Get:53 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-glx amd64 22.3.6-1+deb12u1 [14.5 kB] -#0 5.810 Get:54 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] -#0 5.828 Get:55 http://deb.debian.org/debian bookworm/main amd64 libgpm2 amd64 1.20.7-10+b1 [14.2 kB] -#0 5.840 Get:56 http://deb.debian.org/debian bookworm/main amd64 libjemalloc2 amd64 5.3.0-1 [275 kB] -#0 5.855 Get:57 http://deb.debian.org/debian bookworm/main amd64 libjemalloc-dev amd64 5.3.0-1 [494 kB] -#0 5.872 Get:58 http://deb.debian.org/debian bookworm/main amd64 libsodium23 amd64 1.0.18-1 [161 kB] -#0 5.887 Get:59 http://deb.debian.org/debian bookworm/main amd64 vim-runtime all 2:9.0.1378-2 [7025 kB] -#0 5.947 Get:60 http://deb.debian.org/debian bookworm/main amd64 vim amd64 2:9.0.1378-2 [1567 kB] -#0 6.101 debconf: delaying package configuration, since apt-utils is not installed -#0 6.126 Fetched 66.2 MB in 2s (34.4 MB/s) -#0 6.143 Selecting previously unselected package vim-common. -#0 6.143 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) -#0 6.148 Preparing to unpack .../00-vim-common_2%3a9.0.1378-2_all.deb ... -#0 6.149 Unpacking vim-common (2:9.0.1378-2) ... -#0 6.176 Selecting previously unselected package fonts-dejavu-core. -#0 6.177 Preparing to unpack .../01-fonts-dejavu-core_2.37-6_all.deb ... -#0 6.179 Unpacking fonts-dejavu-core (2.37-6) ... -#0 6.270 Selecting previously unselected package fontconfig-config. -#0 6.270 Preparing to unpack .../02-fontconfig-config_2.14.1-4_amd64.deb ... -#0 6.370 Unpacking fontconfig-config (2.14.1-4) ... -#0 6.469 Selecting previously unselected package libbrotli1:amd64. -#0 6.470 Preparing to unpack .../03-libbrotli1_1.0.9-2+b6_amd64.deb ... -#0 6.481 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... -#0 6.516 Selecting previously unselected package libbsd0:amd64. -#0 6.517 Preparing to unpack .../04-libbsd0_0.11.7-2_amd64.deb ... -#0 6.518 Unpacking libbsd0:amd64 (0.11.7-2) ... -#0 6.545 Selecting previously unselected package libexpat1:amd64. -#0 6.546 Preparing to unpack .../05-libexpat1_2.5.0-1+deb12u1_amd64.deb ... -#0 6.549 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... -#0 6.572 Selecting previously unselected package libpng16-16:amd64. -#0 6.572 Preparing to unpack .../06-libpng16-16_1.6.39-2_amd64.deb ... -#0 6.574 Unpacking libpng16-16:amd64 (1.6.39-2) ... -#0 6.606 Selecting previously unselected package libfreetype6:amd64. -#0 6.607 Preparing to unpack .../07-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... -#0 6.647 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#0 6.805 Selecting previously unselected package libfontconfig1:amd64. -#0 6.806 Preparing to unpack .../08-libfontconfig1_2.14.1-4_amd64.deb ... -#0 6.808 Unpacking libfontconfig1:amd64 (2.14.1-4) ... -#0 6.841 Selecting previously unselected package libpixman-1-0:amd64. -#0 6.842 Preparing to unpack .../09-libpixman-1-0_0.42.2-1_amd64.deb ... -#0 6.843 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... -#0 6.882 Selecting previously unselected package libxau6:amd64. -#0 6.883 Preparing to unpack .../10-libxau6_1%3a1.0.9-1_amd64.deb ... -#0 6.884 Unpacking libxau6:amd64 (1:1.0.9-1) ... -#0 6.901 Selecting previously unselected package libxdmcp6:amd64. -#0 6.902 Preparing to unpack .../11-libxdmcp6_1%3a1.1.2-3_amd64.deb ... -#0 6.902 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... -#0 6.922 Selecting previously unselected package libxcb1:amd64. -#0 6.922 Preparing to unpack .../12-libxcb1_1.15-1_amd64.deb ... -#0 6.922 Unpacking libxcb1:amd64 (1.15-1) ... -#0 6.947 Selecting previously unselected package libx11-data. -#0 6.948 Preparing to unpack .../13-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... -#0 6.949 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... -#0 6.994 Selecting previously unselected package libx11-6:amd64. -#0 6.995 Preparing to unpack .../14-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... -#0 6.996 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#0 7.055 Selecting previously unselected package libxcb-render0:amd64. -#0 7.056 Preparing to unpack .../15-libxcb-render0_1.15-1_amd64.deb ... -#0 7.056 Unpacking libxcb-render0:amd64 (1.15-1) ... -#0 7.077 Selecting previously unselected package libxcb-shm0:amd64. -#0 7.078 Preparing to unpack .../16-libxcb-shm0_1.15-1_amd64.deb ... -#0 7.079 Unpacking libxcb-shm0:amd64 (1.15-1) ... -#0 7.097 Selecting previously unselected package libxext6:amd64. -#0 7.098 Preparing to unpack .../17-libxext6_2%3a1.3.4-1+b1_amd64.deb ... -#0 7.099 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... -#0 7.115 Selecting previously unselected package libxrender1:amd64. -#0 7.116 Preparing to unpack .../18-libxrender1_1%3a0.9.10-1.1_amd64.deb ... -#0 7.116 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... -#0 7.131 Selecting previously unselected package libcairo2:amd64. -#0 7.132 Preparing to unpack .../19-libcairo2_1.16.0-7_amd64.deb ... -#0 7.133 Unpacking libcairo2:amd64 (1.16.0-7) ... -#0 7.179 Selecting previously unselected package libdrm-common. -#0 7.180 Preparing to unpack .../20-libdrm-common_2.4.114-1_all.deb ... -#0 7.181 Unpacking libdrm-common (2.4.114-1) ... -#0 7.194 Selecting previously unselected package libdrm2:amd64. -#0 7.195 Preparing to unpack .../21-libdrm2_2.4.114-1+b1_amd64.deb ... -#0 7.195 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... -#0 7.225 Selecting previously unselected package libdrm-amdgpu1:amd64. -#0 7.226 Preparing to unpack .../22-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... -#0 7.227 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#0 7.241 Selecting previously unselected package libpciaccess0:amd64. -#0 7.242 Preparing to unpack .../23-libpciaccess0_0.17-2_amd64.deb ... -#0 7.243 Unpacking libpciaccess0:amd64 (0.17-2) ... -#0 7.259 Selecting previously unselected package libdrm-intel1:amd64. -#0 7.260 Preparing to unpack .../24-libdrm-intel1_2.4.114-1+b1_amd64.deb ... -#0 7.265 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... -#0 7.281 Selecting previously unselected package libdrm-nouveau2:amd64. -#0 7.282 Preparing to unpack .../25-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... -#0 7.283 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#0 7.297 Selecting previously unselected package libdrm-radeon1:amd64. -#0 7.297 Preparing to unpack .../26-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... -#0 7.298 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#0 7.313 Selecting previously unselected package libedit2:amd64. -#0 7.313 Preparing to unpack .../27-libedit2_3.1-20221030-2_amd64.deb ... -#0 7.314 Unpacking libedit2:amd64 (3.1-20221030-2) ... -#0 7.334 Selecting previously unselected package libelf1:amd64. -#0 7.335 Preparing to unpack .../28-libelf1_0.188-2.1_amd64.deb ... -#0 7.336 Unpacking libelf1:amd64 (0.188-2.1) ... -#0 7.363 Selecting previously unselected package libglvnd0:amd64. -#0 7.364 Preparing to unpack .../29-libglvnd0_1.6.0-1_amd64.deb ... -#0 7.365 Unpacking libglvnd0:amd64 (1.6.0-1) ... -#0 7.388 Selecting previously unselected package libglapi-mesa:amd64. -#0 7.389 Preparing to unpack .../30-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... -#0 7.390 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#0 7.408 Selecting previously unselected package libx11-xcb1:amd64. -#0 7.409 Preparing to unpack .../31-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... -#0 7.410 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#0 7.427 Selecting previously unselected package libxcb-dri2-0:amd64. -#0 7.428 Preparing to unpack .../32-libxcb-dri2-0_1.15-1_amd64.deb ... -#0 7.429 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... -#0 7.449 Selecting previously unselected package libxcb-dri3-0:amd64. -#0 7.450 Preparing to unpack .../33-libxcb-dri3-0_1.15-1_amd64.deb ... -#0 7.451 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... -#0 7.471 Selecting previously unselected package libxcb-glx0:amd64. -#0 7.472 Preparing to unpack .../34-libxcb-glx0_1.15-1_amd64.deb ... -#0 7.473 Unpacking libxcb-glx0:amd64 (1.15-1) ... -#0 7.495 Selecting previously unselected package libxcb-present0:amd64. -#0 7.495 Preparing to unpack .../35-libxcb-present0_1.15-1_amd64.deb ... -#0 7.496 Unpacking libxcb-present0:amd64 (1.15-1) ... -#0 7.516 Selecting previously unselected package libxcb-randr0:amd64. -#0 7.516 Preparing to unpack .../36-libxcb-randr0_1.15-1_amd64.deb ... -#0 7.518 Unpacking libxcb-randr0:amd64 (1.15-1) ... -#0 7.538 Selecting previously unselected package libxcb-sync1:amd64. -#0 7.539 Preparing to unpack .../37-libxcb-sync1_1.15-1_amd64.deb ... -#0 7.540 Unpacking libxcb-sync1:amd64 (1.15-1) ... -#0 7.561 Selecting previously unselected package libxcb-xfixes0:amd64. -#0 7.561 Preparing to unpack .../38-libxcb-xfixes0_1.15-1_amd64.deb ... -#0 7.562 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... -#0 7.583 Selecting previously unselected package libxfixes3:amd64. -#0 7.583 Preparing to unpack .../39-libxfixes3_1%3a6.0.0-2_amd64.deb ... -#0 7.585 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... -#0 7.600 Selecting previously unselected package libxshmfence1:amd64. -#0 7.600 Preparing to unpack .../40-libxshmfence1_1.3-1_amd64.deb ... -#0 7.601 Unpacking libxshmfence1:amd64 (1.3-1) ... -#0 7.621 Selecting previously unselected package libxxf86vm1:amd64. -#0 7.622 Preparing to unpack .../41-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -#0 7.623 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#0 7.638 Selecting previously unselected package libicu72:amd64. -#0 7.639 Preparing to unpack .../42-libicu72_72.1-3_amd64.deb ... -#0 7.640 Unpacking libicu72:amd64 (72.1-3) ... -#0 8.150 Selecting previously unselected package libxml2:amd64. -#0 8.151 Preparing to unpack .../43-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... -#0 8.152 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#0 8.221 Selecting previously unselected package libz3-4:amd64. -#0 8.222 Preparing to unpack .../44-libz3-4_4.8.12-3.1_amd64.deb ... -#0 8.223 Unpacking libz3-4:amd64 (4.8.12-3.1) ... -#0 8.729 Selecting previously unselected package libllvm15:amd64. -#0 8.730 Preparing to unpack .../45-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... -#0 8.731 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... -#0 9.586 Selecting previously unselected package libsensors-config. -#0 9.587 Preparing to unpack .../46-libsensors-config_1%3a3.6.0-7.1_all.deb ... -#0 9.589 Unpacking libsensors-config (1:3.6.0-7.1) ... -#0 9.610 Selecting previously unselected package libsensors5:amd64. -#0 9.612 Preparing to unpack .../47-libsensors5_1%3a3.6.0-7.1_amd64.deb ... -#0 9.617 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... -#0 9.636 Selecting previously unselected package libgl1-mesa-dri:amd64. -#0 9.638 Preparing to unpack .../48-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... -#0 9.643 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#47 10.13 Selecting previously unselected package libglx-mesa0:amd64. -#47 10.13 Preparing to unpack .../49-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... -#47 10.13 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#47 10.16 Selecting previously unselected package libglx0:amd64. -#47 ... - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#0 0.801 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#0 0.828 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#0 0.855 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#0 0.893 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#0 1.024 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#0 1.035 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#0 2.069 Fetched 9303 kB in 1s (7231 kB/s) -#0 2.069 Reading package lists... -#0 2.545 Reading package lists... -#0 3.011 Building dependency tree... -#0 3.118 Reading state information... -#0 3.242 The following additional packages will be installed: -#0 3.242 adwaita-icon-theme at-spi2-common binutils binutils-common -#0 3.242 binutils-x86-64-linux-gnu bzip2 ca-certificates-java cpp cpp-12 -#0 3.242 default-jre-headless dpkg-dev fontconfig fontconfig-config fonts-dejavu-core -#0 3.242 g++ g++-12 gcc gcc-12 gtk-update-icon-cache hicolor-icon-theme java-common -#0 3.242 libasan8 libasound2 libasound2-data libatk1.0-0 libatomic1 libavahi-client3 -#0 3.242 libavahi-common-data libavahi-common3 libbinutils libbrotli1 libbsd0 -#0 3.242 libc-dev-bin libc6-dev libcairo2 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 -#0 3.242 libcups2 libdatrie1 libdbus-1-3 libdeflate0 libdpkg-perl libdrm-amdgpu1 -#0 3.242 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 -#0 3.242 libelf1 libexpat1 libfontconfig1 libfreetype6 libfribidi0 libgcc-12-dev -#0 3.243 libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgif7 libgl1 -#0 3.243 libgl1-mesa-dri libglapi-mesa libglib2.0-0 libglvnd0 libglx-mesa0 libglx0 -#0 3.243 libgomp1 libgprofng0 libgraphite2-3 libgtk2.0-0 libgtk2.0-common -#0 3.243 libharfbuzz0b libicu72 libisl23 libitm1 libjansson4 libjbig0 libjemalloc2 -#0 3.243 libjpeg62-turbo liblcms2-2 liblerc4 libllvm15 liblsan0 libmpc3 libmpfr6 -#0 3.243 libnsl-dev libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 -#0 3.243 libpangoft2-1.0-0 libpciaccess0 libpcsclite1 libperl5.36 libpixman-1-0 -#0 3.243 libpng16-16 libpsl5 libquadmath0 libsensors-config libsensors5 -#0 3.243 libstdc++-12-dev libthai-data libthai0 libtiff6 libtirpc-dev libtsan2 -#0 3.243 libubsan1 libwebp7 libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri2-0 -#0 3.243 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 -#0 3.243 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcomposite1 libxcursor1 -#0 3.243 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 libxinerama1 libxml2 -#0 3.243 libxrandr2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 libz3-4 -#0 3.243 linux-libc-dev make openjdk-17-jre openjdk-17-jre-headless patch perl -#0 3.243 perl-modules-5.36 rpcsvc-proto shared-mime-info x11-common xz-utils -#0 3.244 Suggested packages: -#0 3.244 binutils-doc bzip2-doc cpp-doc gcc-12-locales cpp-12-doc debian-keyring -#0 3.244 g++-multilib g++-12-multilib gcc-12-doc gcc-multilib manpages-dev autoconf -#0 3.244 automake libtool flex bison gdb gcc-doc gcc-12-multilib libasound2-plugins -#0 3.244 alsa-utils glibc-doc cups-common gnupg | sq | sqop | pgpainless-cli -#0 3.244 sensible-utils git bzr low-memory-monitor gvfs liblcms2-utils pciutils pcscd -#0 3.244 lm-sensors libstdc++-12-doc make-doc libnss-mdns fonts-dejavu-extra -#0 3.244 fonts-ipafont-gothic fonts-ipafont-mincho fonts-wqy-microhei -#0 3.244 | fonts-wqy-zenhei fonts-indic ed diffutils-doc perl-doc -#0 3.244 libterm-readline-gnu-perl | libterm-readline-perl-perl -#0 3.244 libtap-harness-archive-perl -#0 3.244 Recommended packages: -#0 3.244 librsvg2-common fakeroot gnupg | sq | sqop | pgpainless-cli -#0 3.244 libalgorithm-merge-perl alsa-ucm-conf alsa-topology-conf manpages -#0 3.244 manpages-dev libc-devtools dbus libfile-fcntllock-perl -#0 3.244 liblocale-gettext-perl libgdk-pixbuf2.0-bin libglib2.0-data xdg-user-dirs -#0 3.244 libgail-common libgtk2.0-bin publicsuffix libatk-wrapper-java-jni -#0 3.244 fonts-dejavu-extra -#0 3.816 The following NEW packages will be installed: -#0 3.816 adwaita-icon-theme at-spi2-common binutils binutils-common -#0 3.816 binutils-x86-64-linux-gnu build-essential bzip2 ca-certificates-java cpp -#0 3.816 cpp-12 default-jre default-jre-headless dpkg-dev fontconfig -#0 3.816 fontconfig-config fonts-dejavu-core g++ g++-12 gcc gcc-12 -#0 3.816 gtk-update-icon-cache hicolor-icon-theme java-common libasan8 libasound2 -#0 3.816 libasound2-data libatk1.0-0 libatomic1 libavahi-client3 libavahi-common-data -#0 3.816 libavahi-common3 libbinutils libbrotli1 libbsd0 libc-dev-bin libc6-dev -#0 3.816 libcairo2 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libcups2 libdatrie1 -#0 3.816 libdbus-1-3 libdeflate0 libdpkg-perl libdrm-amdgpu1 libdrm-common -#0 3.816 libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libelf1 -#0 3.816 libexpat1 libfontconfig1 libfreetype6 libfribidi0 libgcc-12-dev -#0 3.816 libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgif7 libgl1 -#0 3.816 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa libglib2.0-0 libglvnd0 -#0 3.816 libglx-mesa0 libglx0 libgomp1 libgprofng0 libgraphite2-3 libgtk2.0-0 -#0 3.816 libgtk2.0-common libharfbuzz0b libicu72 libisl23 libitm1 libjansson4 -#0 3.816 libjbig0 libjemalloc-dev libjemalloc2 libjpeg62-turbo liblcms2-2 liblerc4 -#0 3.816 libllvm15 liblsan0 libmpc3 libmpfr6 libnsl-dev libnspr4 libnss3 -#0 3.816 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -#0 3.817 libpcsclite1 libperl5.36 libpixman-1-0 libpng16-16 libpsl5 libquadmath0 -#0 3.817 libsensors-config libsensors5 libstdc++-12-dev libthai-data libthai0 -#0 3.817 libtiff6 libtirpc-dev libtsan2 libubsan1 libwebp7 libx11-6 libx11-data -#0 3.817 libx11-xcb1 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 -#0 3.817 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 -#0 3.817 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 -#0 3.817 libxinerama1 libxml2 libxrandr2 libxrender1 libxshmfence1 libxtst6 -#0 3.817 libxxf86vm1 libz3-4 linux-libc-dev make openjdk-17-jre -#0 3.817 openjdk-17-jre-headless patch perl perl-modules-5.36 rpcsvc-proto -#0 3.817 shared-mime-info wget x11-common xz-utils -#0 3.874 0 upgraded, 155 newly installed, 0 to remove and 0 not upgraded. -#0 3.874 Need to get 194 MB of archives. -#0 3.874 After this operation, 820 MB of additional disk space will be used. -#0 3.874 Get:1 http://deb.debian.org/debian bookworm/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u1 [2815 kB] -#0 3.965 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB] -#0 3.998 Get:3 http://deb.debian.org/debian bookworm/main amd64 libperl5.36 amd64 5.36.0-7+deb12u1 [4218 kB] -#0 4.112 Get:4 http://deb.debian.org/debian bookworm/main amd64 perl amd64 5.36.0-7+deb12u1 [239 kB] -#0 4.160 Get:5 http://deb.debian.org/debian bookworm/main amd64 bzip2 amd64 1.0.8-5+b1 [49.8 kB] -#0 4.198 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] -#0 4.241 Get:7 http://deb.debian.org/debian bookworm/main amd64 wget amd64 1.21.3-1+b2 [984 kB] -#0 4.271 Get:8 http://deb.debian.org/debian bookworm/main amd64 xz-utils amd64 5.4.1-0.2 [471 kB] -#0 4.287 Get:9 http://deb.debian.org/debian bookworm/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -#0 4.301 Get:10 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-common all 2.42.10+dfsg-1+deb12u1 [306 kB] -#0 4.317 Get:11 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] -#0 4.344 Get:12 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] -#0 4.429 Get:13 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] -#0 4.443 Get:14 http://deb.debian.org/debian bookworm/main amd64 shared-mime-info amd64 2.2-1 [729 kB] -#0 4.489 Get:15 http://deb.debian.org/debian bookworm/main amd64 libjpeg62-turbo amd64 1:2.1.5-2 [166 kB] -#0 4.495 Get:16 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] -#0 4.510 Get:17 http://deb.debian.org/debian bookworm/main amd64 libdeflate0 amd64 1.14-1 [61.4 kB] -#0 4.523 Get:18 http://deb.debian.org/debian bookworm/main amd64 libjbig0 amd64 2.1-6.1 [31.7 kB] -#0 4.537 Get:19 http://deb.debian.org/debian bookworm/main amd64 liblerc4 amd64 4.0.0+ds-2 [170 kB] -#0 4.551 Get:20 http://deb.debian.org/debian bookworm/main amd64 libwebp7 amd64 1.2.4-0.2+deb12u1 [286 kB] -#0 4.591 Get:21 http://deb.debian.org/debian bookworm/main amd64 libtiff6 amd64 4.5.0-6+deb12u2 [316 kB] -#0 4.606 Get:22 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.10+dfsg-1+deb12u1 [139 kB] -#0 4.624 Get:23 http://deb.debian.org/debian bookworm/main amd64 gtk-update-icon-cache amd64 3.24.38-2~deb12u3 [44.2 kB] -#0 4.661 Get:24 http://deb.debian.org/debian bookworm/main amd64 adwaita-icon-theme all 43-1 [5124 kB] -#0 4.694 Get:25 http://deb.debian.org/debian bookworm/main amd64 at-spi2-common all 2.46.0-5 [162 kB] -#0 4.709 Get:26 http://deb.debian.org/debian bookworm/main amd64 binutils-common amd64 2.40-2 [2487 kB] -#0 4.731 Get:27 http://deb.debian.org/debian bookworm/main amd64 libbinutils amd64 2.40-2 [572 kB] -#0 4.754 Get:28 http://deb.debian.org/debian bookworm/main amd64 libctf-nobfd0 amd64 2.40-2 [153 kB] -#0 4.768 Get:29 http://deb.debian.org/debian bookworm/main amd64 libctf0 amd64 2.40-2 [89.8 kB] -#0 4.810 Get:30 http://deb.debian.org/debian bookworm/main amd64 libgprofng0 amd64 2.40-2 [812 kB] -#0 4.827 Get:31 http://deb.debian.org/debian bookworm/main amd64 libjansson4 amd64 2.14-2 [40.8 kB] -#0 4.842 Get:32 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-64-linux-gnu amd64 2.40-2 [2246 kB] -#0 4.894 Get:33 http://deb.debian.org/debian bookworm/main amd64 binutils amd64 2.40-2 [65.0 kB] -#0 4.908 Get:34 http://deb.debian.org/debian bookworm/main amd64 libc-dev-bin amd64 2.36-9+deb12u9 [46.7 kB] -#0 4.929 Get:35 http://deb.debian.org/debian bookworm-updates/main amd64 linux-libc-dev amd64 6.1.124-1 [2099 kB] -#0 4.951 Get:36 http://deb.debian.org/debian bookworm/main amd64 libcrypt-dev amd64 1:4.4.33-2 [118 kB] -#0 4.968 Get:37 http://deb.debian.org/debian bookworm/main amd64 libtirpc-dev amd64 1.3.3+ds-1 [191 kB] -#0 4.982 Get:38 http://deb.debian.org/debian bookworm/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -#0 4.997 Get:39 http://deb.debian.org/debian bookworm/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB] -#0 5.047 Get:40 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd64 2.36-9+deb12u9 [1904 kB] -#0 5.068 Get:41 http://deb.debian.org/debian bookworm/main amd64 libisl23 amd64 0.25-1.1 [683 kB] -#0 5.087 Get:42 http://deb.debian.org/debian bookworm/main amd64 libmpfr6 amd64 4.2.0-1 [701 kB] -#0 5.104 Get:43 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 1.3.1-1 [51.5 kB] -#0 5.119 Get:44 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 12.2.0-14 [9764 kB] -#0 5.217 Get:45 http://deb.debian.org/debian bookworm/main amd64 cpp amd64 4:12.2.0-3 [6836 B] -#0 5.259 Get:46 http://deb.debian.org/debian bookworm/main amd64 libcc1-0 amd64 12.2.0-14 [41.7 kB] -#0 5.296 Get:47 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB] -#0 5.310 Get:48 http://deb.debian.org/debian bookworm/main amd64 libitm1 amd64 12.2.0-14 [26.1 kB] -#0 5.324 Get:49 http://deb.debian.org/debian bookworm/main amd64 libatomic1 amd64 12.2.0-14 [9328 B] -#0 5.338 Get:50 http://deb.debian.org/debian bookworm/main amd64 libasan8 amd64 12.2.0-14 [2195 kB] -#0 5.366 Get:51 http://deb.debian.org/debian bookworm/main amd64 liblsan0 amd64 12.2.0-14 [969 kB] -#0 5.402 Get:52 http://deb.debian.org/debian bookworm/main amd64 libtsan2 amd64 12.2.0-14 [2196 kB] -#0 5.468 Get:53 http://deb.debian.org/debian bookworm/main amd64 libubsan1 amd64 12.2.0-14 [883 kB] -#0 5.493 Get:54 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB] -#0 5.507 Get:55 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev amd64 12.2.0-14 [2437 kB] -#0 5.530 Get:56 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 12.2.0-14 [19.3 MB] -#0 5.701 Get:57 http://deb.debian.org/debian bookworm/main amd64 gcc amd64 4:12.2.0-3 [5216 B] -#0 5.703 Get:58 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-dev amd64 12.2.0-14 [2046 kB] -#0 5.740 Get:59 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 12.2.0-14 [10.7 MB] -#0 5.955 Get:60 http://deb.debian.org/debian bookworm/main amd64 g++ amd64 4:12.2.0-3 [1356 B] -#0 5.998 Get:61 http://deb.debian.org/debian bookworm/main amd64 make amd64 4.3-4.1 [396 kB] -#0 6.045 Get:62 http://deb.debian.org/debian bookworm/main amd64 libdpkg-perl all 1.21.22 [603 kB] -#0 6.089 Get:63 http://deb.debian.org/debian bookworm/main amd64 patch amd64 2.7.6-7 [128 kB] -#0 6.131 Get:64 http://deb.debian.org/debian bookworm/main amd64 dpkg-dev all 1.21.22 [1353 kB] -#0 6.163 Get:65 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B] -#0 6.176 Get:66 http://deb.debian.org/debian bookworm/main amd64 ca-certificates-java all 20230710~deb12u1 [11.9 kB] -#0 6.189 Get:67 http://deb.debian.org/debian bookworm/main amd64 java-common all 0.74 [6388 B] -#0 6.194 Get:68 http://deb.debian.org/debian bookworm/main amd64 libavahi-common-data amd64 0.8-10+deb12u1 [107 kB] -#0 6.201 Get:69 http://deb.debian.org/debian bookworm/main amd64 libavahi-common3 amd64 0.8-10+deb12u1 [42.1 kB] -#0 6.207 Get:70 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB] -#0 6.214 Get:71 http://deb.debian.org/debian bookworm/main amd64 libavahi-client3 amd64 0.8-10+deb12u1 [45.8 kB] -#0 6.221 Get:72 http://deb.debian.org/debian bookworm/main amd64 libcups2 amd64 2.4.2-3+deb12u8 [246 kB] -#0 6.227 Get:73 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] -#0 6.235 Get:74 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] -#0 6.262 Get:75 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] -#0 6.293 Get:76 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] -#0 6.332 Get:77 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] -#0 6.341 Get:78 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] -#0 6.356 Get:79 http://deb.debian.org/debian bookworm/main amd64 liblcms2-2 amd64 2.14-2 [154 kB] -#0 6.370 Get:80 http://deb.debian.org/debian bookworm/main amd64 libnspr4 amd64 2:4.35-1 [113 kB] -#0 6.406 Get:81 http://deb.debian.org/debian bookworm/main amd64 libnss3 amd64 2:3.87.1-1+deb12u1 [1331 kB] -#0 6.451 Get:82 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB] -#0 6.485 Get:83 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB] -#0 6.503 Get:84 http://deb.debian.org/debian bookworm/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -#0 6.516 Get:85 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz0b amd64 6.0.0+dfsg-3 [1945 kB] -#0 6.537 Get:86 http://deb.debian.org/debian bookworm/main amd64 libpcsclite1 amd64 1.9.9-2 [49.7 kB] -#0 6.551 Get:87 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre-headless amd64 17.0.14+7-1~deb12u1 [43.8 MB] -#0 6.803 Get:88 http://deb.debian.org/debian bookworm/main amd64 default-jre-headless amd64 2:1.17-74 [2936 B] -#0 6.803 Get:89 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-common all 2.24.33-2+deb12u1 [2660 kB] -#0 6.850 Get:90 http://deb.debian.org/debian bookworm/main amd64 libatk1.0-0 amd64 2.46.0-5 [49.6 kB] -#0 6.883 Get:91 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] -#0 6.925 Get:92 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] -#0 6.959 Get:93 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] -#0 6.967 Get:94 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] -#0 6.973 Get:95 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] -#0 6.979 Get:96 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] -#0 6.986 Get:97 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] -#0 6.995 Get:98 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] -#0 7.001 Get:99 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] -#0 7.007 Get:100 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] -#0 7.017 Get:101 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] -#0 7.026 Get:102 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] -#0 7.035 Get:103 http://deb.debian.org/debian bookworm/main amd64 fontconfig amd64 2.14.1-4 [449 kB] -#0 7.052 Get:104 http://deb.debian.org/debian bookworm/main amd64 libfribidi0 amd64 1.0.8-2.1 [65.0 kB] -#0 7.066 Get:105 http://deb.debian.org/debian bookworm/main amd64 libthai-data all 0.1.29-1 [176 kB] -#0 7.080 Get:106 http://deb.debian.org/debian bookworm/main amd64 libdatrie1 amd64 0.2.13-2+b1 [43.3 kB] -#0 7.093 Get:107 http://deb.debian.org/debian bookworm/main amd64 libthai0 amd64 0.1.29-1 [57.5 kB] -#0 7.106 Get:108 http://deb.debian.org/debian bookworm/main amd64 libpango-1.0-0 amd64 1.50.12+ds-1 [212 kB] -#0 7.122 Get:109 http://deb.debian.org/debian bookworm/main amd64 libpangoft2-1.0-0 amd64 1.50.12+ds-1 [47.4 kB] -#0 7.136 Get:110 http://deb.debian.org/debian bookworm/main amd64 libpangocairo-1.0-0 amd64 1.50.12+ds-1 [34.2 kB] -#0 7.150 Get:111 http://deb.debian.org/debian bookworm/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -#0 7.156 Get:112 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] -#0 7.171 Get:113 http://deb.debian.org/debian bookworm/main amd64 libxcursor1 amd64 1:1.2.1-1 [40.9 kB] -#0 7.186 Get:114 http://deb.debian.org/debian bookworm/main amd64 libxdamage1 amd64 1:1.1.6-1 [15.1 kB] -#0 7.226 Get:115 http://deb.debian.org/debian bookworm/main amd64 libxi6 amd64 2:1.8-1+b1 [84.2 kB] -#0 7.268 Get:116 http://deb.debian.org/debian bookworm/main amd64 libxinerama1 amd64 2:1.1.4-3 [17.8 kB] -#0 7.283 Get:117 http://deb.debian.org/debian bookworm/main amd64 libxrandr2 amd64 2:1.5.2-2+b1 [39.2 kB] -#0 7.297 Get:118 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-0 amd64 2.24.33-2+deb12u1 [1811 kB] -#0 7.309 Get:119 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] -#0 7.315 Get:120 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] -#0 7.321 Get:121 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] -#0 7.327 Get:122 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] -#0 7.333 Get:123 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] -#0 7.340 Get:124 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] -#0 7.348 Get:125 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] -#0 7.354 Get:126 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] -#0 7.360 Get:127 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] -#0 7.366 Get:128 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] -#0 7.372 Get:129 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] -#0 7.394 Get:130 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] -#0 7.418 Get:131 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -#0 7.441 Get:132 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -#0 7.462 Get:133 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] -#0 7.485 Get:134 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] -#0 7.508 Get:135 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] -#0 7.533 Get:136 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] -#0 7.558 Get:137 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] -#0 7.583 Get:138 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] -#0 7.613 Get:139 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] -#0 7.639 Get:140 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] -#0 7.793 Get:141 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] -#0 8.396 Get:142 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] -#0 8.408 Get:143 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] -#0 8.441 Get:144 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] -#0 8.636 Get:145 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] -#0 8.673 Get:146 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] -#0 8.710 Get:147 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] -#0 8.726 Get:148 http://deb.debian.org/debian bookworm/main amd64 libgif7 amd64 5.2.1-2.5 [46.9 kB] -#0 8.732 Get:149 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB] -#0 8.747 Get:150 http://deb.debian.org/debian bookworm/main amd64 libxtst6 amd64 2:1.2.3-1.1 [28.0 kB] -#0 8.792 Get:151 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre amd64 17.0.14+7-1~deb12u1 [210 kB] -#0 8.810 Get:152 http://deb.debian.org/debian bookworm/main amd64 default-jre amd64 2:1.17-74 [1056 B] -#0 8.817 Get:153 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-glx amd64 22.3.6-1+deb12u1 [14.5 kB] -#0 8.823 Get:154 http://deb.debian.org/debian bookworm/main amd64 libjemalloc2 amd64 5.3.0-1 [275 kB] -#0 8.832 Get:155 http://deb.debian.org/debian bookworm/main amd64 libjemalloc-dev amd64 5.3.0-1 [494 kB] -#0 9.039 debconf: delaying package configuration, since apt-utils is not installed -#0 9.127 Fetched 194 MB in 5s (38.8 MB/s) -#0 9.229 Selecting previously unselected package perl-modules-5.36. -#0 9.229 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) -#0 9.233 Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u1_all.deb ... -#0 9.270 Unpacking perl-modules-5.36 (5.36.0-7+deb12u1) ... -#0 9.600 Selecting previously unselected package libgdbm-compat4:amd64. -#0 9.601 Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... -#0 9.604 Unpacking libgdbm-compat4:amd64 (1.23-3) ... -#0 9.627 Selecting previously unselected package libperl5.36:amd64. -#0 9.629 Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u1_amd64.deb ... -#0 9.630 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u1) ... -#0 9.949 Selecting previously unselected package perl. -#0 9.951 Preparing to unpack .../003-perl_5.36.0-7+deb12u1_amd64.deb ... -#0 9.956 Unpacking perl (5.36.0-7+deb12u1) ... -#0 9.984 Selecting previously unselected package bzip2. -#0 9.985 Preparing to unpack .../004-bzip2_1.0.8-5+b1_amd64.deb ... -#0 9.986 Unpacking bzip2 (1.0.8-5+b1) ... -#0 10.00 Selecting previously unselected package libpsl5:amd64. -#0 10.00 Preparing to unpack .../005-libpsl5_0.21.2-1_amd64.deb ... -#0 10.00 Unpacking libpsl5:amd64 (0.21.2-1) ... -#0 10.02 Selecting previously unselected package wget. -#0 10.02 Preparing to unpack .../006-wget_1.21.3-1+b2_amd64.deb ... -#0 10.02 Unpacking wget (1.21.3-1+b2) ... -#0 10.09 Selecting previously unselected package xz-utils. -#0 10.09 Preparing to unpack .../007-xz-utils_5.4.1-0.2_amd64.deb ... -#0 10.09 Unpacking xz-utils (5.4.1-0.2) ... -#0 10.14 Selecting previously unselected package hicolor-icon-theme. -#0 10.14 Preparing to unpack .../008-hicolor-icon-theme_0.17-2_all.deb ... -#0 10.14 Unpacking hicolor-icon-theme (0.17-2) ... -#48 10.22 Selecting previously unselected package libgdk-pixbuf2.0-common. -#48 10.22 Preparing to unpack .../009-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u1_all.deb ... -#48 10.22 Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... -#48 ... - -#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim -#47 10.16 Preparing to unpack .../50-libglx0_1.6.0-1_amd64.deb ... -#47 10.16 Unpacking libglx0:amd64 (1.6.0-1) ... -#47 10.19 Selecting previously unselected package libgl1:amd64. -#47 10.19 Preparing to unpack .../51-libgl1_1.6.0-1_amd64.deb ... -#47 10.19 Unpacking libgl1:amd64 (1.6.0-1) ... -#47 10.21 Selecting previously unselected package libgl1-mesa-glx:amd64. -#47 10.21 Preparing to unpack .../52-libgl1-mesa-glx_22.3.6-1+deb12u1_amd64.deb ... -#47 10.21 Unpacking libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... -#47 10.23 Selecting previously unselected package libglib2.0-0:amd64. -#47 10.23 Preparing to unpack .../53-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... -#47 10.23 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#47 10.33 Selecting previously unselected package libgpm2:amd64. -#47 10.34 Preparing to unpack .../54-libgpm2_1.20.7-10+b1_amd64.deb ... -#47 10.34 Unpacking libgpm2:amd64 (1.20.7-10+b1) ... -#47 10.35 Selecting previously unselected package libjemalloc2:amd64. -#47 10.35 Preparing to unpack .../55-libjemalloc2_5.3.0-1_amd64.deb ... -#47 10.35 Unpacking libjemalloc2:amd64 (5.3.0-1) ... -#47 10.38 Selecting previously unselected package libjemalloc-dev. -#47 10.39 Preparing to unpack .../56-libjemalloc-dev_5.3.0-1_amd64.deb ... -#47 10.39 Unpacking libjemalloc-dev (5.3.0-1) ... -#47 10.44 Selecting previously unselected package libsodium23:amd64. -#47 10.44 Preparing to unpack .../57-libsodium23_1.0.18-1_amd64.deb ... -#47 10.44 Unpacking libsodium23:amd64 (1.0.18-1) ... -#47 10.47 Selecting previously unselected package vim-runtime. -#47 10.47 Preparing to unpack .../58-vim-runtime_2%3a9.0.1378-2_all.deb ... -#47 10.47 Adding 'diversion of /usr/share/vim/vim90/doc/help.txt to /usr/share/vim/vim90/doc/help.txt.vim-tiny by vim-runtime' -#47 10.48 Adding 'diversion of /usr/share/vim/vim90/doc/tags to /usr/share/vim/vim90/doc/tags.vim-tiny by vim-runtime' -#47 10.48 Unpacking vim-runtime (2:9.0.1378-2) ... -#47 10.92 Selecting previously unselected package vim. -#47 10.92 Preparing to unpack .../59-vim_2%3a9.0.1378-2_amd64.deb ... -#47 10.92 Unpacking vim (2:9.0.1378-2) ... -#47 11.05 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... -#47 11.05 Setting up libpixman-1-0:amd64 (0.42.2-1) ... -#47 11.05 Setting up libpciaccess0:amd64 (0.17-2) ... -#47 11.05 Setting up libxau6:amd64 (1:1.0.9-1) ... -#47 11.06 Setting up libsodium23:amd64 (1.0.18-1) ... -#47 11.06 Setting up libgpm2:amd64 (1.20.7-10+b1) ... -#47 11.06 Setting up libicu72:amd64 (72.1-3) ... -#47 11.06 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#47 11.07 No schema files found: doing nothing. -#47 11.07 Setting up libglvnd0:amd64 (1.6.0-1) ... -#47 11.07 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... -#47 11.08 Setting up libsensors-config (1:3.6.0-7.1) ... -#47 11.08 Setting up libjemalloc2:amd64 (5.3.0-1) ... -#47 11.08 Setting up libjemalloc-dev (5.3.0-1) ... -#47 11.08 Setting up libz3-4:amd64 (4.8.12-3.1) ... -#47 11.09 Setting up vim-common (2:9.0.1378-2) ... -#47 11.09 Setting up libx11-data (2:1.8.4-2+deb12u2) ... -#47 11.09 Setting up libpng16-16:amd64 (1.6.39-2) ... -#47 11.09 Setting up fonts-dejavu-core (2.37-6) ... -#47 11.10 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... -#47 11.11 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#47 11.11 Setting up libxshmfence1:amd64 (1.3-1) ... -#47 11.11 Setting up vim-runtime (2:9.0.1378-2) ... -#47 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#0 0.945 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] -#0 0.978 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -#0 1.011 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -#0 1.039 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] -#0 1.445 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.5 kB] -#0 1.475 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [243 kB] -#0 2.394 Fetched 9303 kB in 2s (5948 kB/s) -#0 2.394 Reading package lists... -#0 2.877 Reading package lists... -#0 3.365 Building dependency tree... -#0 3.459 Reading state information... -#0 3.573 The following additional packages will be installed: -#0 3.573 alsa-topology-conf alsa-ucm-conf dbus dbus-bin dbus-daemon -#0 3.573 dbus-session-bus-common dbus-system-bus-common fontconfig fontconfig-config -#0 3.573 fonts-dejavu-core i965-va-driver intel-media-va-driver libaacs0 libaom3 -#0 3.573 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 libavc1394-0 -#0 3.573 libavcodec59 libavdevice59 libavfilter8 libavformat59 libavutil57 libbdplus0 -#0 3.574 libblas3 libbluray2 libbrotli1 libbs2b0 libbsd0 libcaca0 libcairo-gobject2 -#0 3.574 libcairo2 libcdio-cdda2 libcdio-paranoia2 libcdio19 libchromaprint1 -#0 3.574 libcjson1 libcodec2-1.0 libcurl4 libdatrie1 libdav1d6 libdbus-1-3 -#0 3.574 libdc1394-25 libdecor-0-0 libdecor-0-plugin-1-cairo libdeflate0 -#0 3.574 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 -#0 3.574 libdrm2 libedit2 libelf1 libepoxy0 libexpat1 libflac12 libflite1 -#0 3.574 libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgdk-pixbuf-2.0-0 -#0 3.574 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgfortran5 libgl1 -#0 3.574 libgl1-mesa-dri libglapi-mesa libglib2.0-0 libglib2.0-data libglvnd0 -#0 3.574 libglx-mesa0 libglx0 libgme0 libgomp1 libgraphite2-3 libgsm1 libharfbuzz0b -#0 3.574 libhwy1 libicu72 libiec61883-0 libigdgmm12 libjack-jackd2-0 libjbig0 -#0 3.574 libjpeg62-turbo libjxl0.7 liblapack3 liblcms2-2 libldap-2.5-0 libldap-common -#0 3.574 liblerc4 liblilv-0-0 libllvm15 libmbedcrypto7 libmfx1 libmp3lame0 -#0 3.574 libmpg123-0 libmysofa1 libnghttp2-14 libnorm1 libnuma1 libogg0 -#0 3.574 libopenal-data libopenal1 libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0 -#0 3.574 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 libpgm-5.3-0 -#0 3.574 libpixman-1-0 libplacebo208 libpng16-16 libpocketsphinx3 libpostproc56 -#0 3.574 libpsl5 libpulse0 libpython3-stdlib libpython3.11-minimal -#0 3.574 libpython3.11-stdlib libquadmath0 librabbitmq4 librav1e0 libraw1394-11 -#0 3.574 librist4 librsvg2-2 librsvg2-common librtmp1 librubberband2 libsamplerate0 -#0 3.574 libsasl2-2 libsasl2-modules libsasl2-modules-db libsdl2-2.0-0 -#0 3.574 libsensors-config libsensors5 libserd-0-0 libshine3 libslang2 libsnappy1v5 -#0 3.574 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 libsoxr0 libspeex1 -#0 3.574 libsphinxbase3 libsratom-0-0 libsrt1.5-gnutls libssh-gcrypt-4 libssh2-1 -#0 3.574 libsvtav1enc1 libswresample4 libswscale6 libthai-data libthai0 libtheora0 -#0 3.574 libtiff6 libtwolame0 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 -#0 3.574 libvdpau-va-gl1 libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 -#0 3.574 libvorbisfile3 libvpx7 libvulkan1 libwayland-client0 libwayland-cursor0 -#0 3.574 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3 libx11-6 libx11-data -#0 3.574 libx11-xcb1 libx264-164 libx265-199 libxau6 libxcb-dri2-0 libxcb-dri3-0 -#0 3.574 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 -#0 3.574 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcursor1 libxdmcp6 -#0 3.574 libxext6 libxfixes3 libxi6 libxkbcommon0 libxml2 libxrandr2 libxrender1 -#0 3.574 libxshmfence1 libxss1 libxv1 libxvidcore4 libxxf86vm1 libz3-4 libzimg2 -#0 3.574 libzmq5 libzvbi-common libzvbi0 media-types mesa-va-drivers -#0 3.574 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 pocketsphinx-en-us -#0 3.574 publicsuffix python3 python3-minimal python3.11 python3.11-minimal -#0 3.574 shared-mime-info va-driver-all vdpau-driver-all x11-common xdg-user-dirs -#0 3.574 xkb-data -#0 3.575 Suggested packages: -#0 3.575 default-dbus-session-bus | dbus-session-bus ffmpeg-doc -#0 3.575 i965-va-driver-shaders libasound2-plugins alsa-utils libcuda1 libnvcuvid1 -#0 3.575 libnvidia-encode1 libbluray-bdj low-memory-monitor jackd2 liblcms2-utils -#0 3.575 libportaudio2 opus-tools pciutils pulseaudio libraw1394-doc librsvg2-bin -#0 3.575 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal -#0 3.575 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql xdg-utils -#0 3.575 lm-sensors serdi sndiod sordi speex opencl-icd python3-doc python3-tk -#0 3.575 python3-venv python3.11-venv python3.11-doc binutils binfmt-support -#0 3.575 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -#0 3.575 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -#0 3.575 nvidia-legacy-340xx-vdpau-driver -#0 4.579 The following NEW packages will be installed: -#0 4.579 alsa-topology-conf alsa-ucm-conf curl dbus dbus-bin dbus-daemon -#0 4.579 dbus-session-bus-common dbus-system-bus-common ffmpeg fontconfig -#0 4.579 fontconfig-config fonts-dejavu-core i965-va-driver intel-media-va-driver -#0 4.579 libaacs0 libaom3 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 -#0 4.579 libavc1394-0 libavcodec59 libavdevice59 libavfilter8 libavformat59 -#0 4.579 libavutil57 libbdplus0 libblas3 libbluray2 libbrotli1 libbs2b0 libbsd0 -#0 4.579 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2 libcdio-paranoia2 -#0 4.579 libcdio19 libchromaprint1 libcjson1 libcodec2-1.0 libcurl4 libdatrie1 -#0 4.579 libdav1d6 libdbus-1-3 libdc1394-25 libdecor-0-0 libdecor-0-plugin-1-cairo -#0 4.579 libdeflate0 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 -#0 4.579 libdrm-radeon1 libdrm2 libedit2 libelf1 libepoxy0 libexpat1 libflac12 -#0 4.579 libflite1 libfontconfig1 libfreetype6 libfribidi0 libgbm1 -#0 4.579 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common -#0 4.580 libgfortran5 libgl1 libgl1-mesa-dri libglapi-mesa libglib2.0-0 -#0 4.580 libglib2.0-data libglvnd0 libglx-mesa0 libglx0 libgme0 libgomp1 -#0 4.580 libgraphite2-3 libgsm1 libharfbuzz0b libhwy1 libicu72 libiec61883-0 -#0 4.580 libigdgmm12 libjack-jackd2-0 libjbig0 libjpeg62-turbo libjxl0.7 liblapack3 -#0 4.580 liblcms2-2 libldap-2.5-0 libldap-common liblerc4 liblilv-0-0 libllvm15 -#0 4.580 libmbedcrypto7 libmfx1 libmp3lame0 libmpg123-0 libmysofa1 libnghttp2-14 -#0 4.580 libnorm1 libnuma1 libogg0 libopenal-data libopenal1 libopenjp2-7 libopenmpt0 -#0 4.580 libopus0 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -#0 4.580 libpgm-5.3-0 libpixman-1-0 libplacebo208 libpng16-16 libpocketsphinx3 -#0 4.580 libpostproc56 libpsl5 libpulse0 libpython3-stdlib libpython3.11-minimal -#0 4.580 libpython3.11-stdlib libquadmath0 librabbitmq4 librav1e0 libraw1394-11 -#0 4.580 librist4 librsvg2-2 librsvg2-common librtmp1 librubberband2 libsamplerate0 -#0 4.580 libsasl2-2 libsasl2-modules libsasl2-modules-db libsdl2-2.0-0 -#0 4.580 libsensors-config libsensors5 libserd-0-0 libshine3 libslang2 libsnappy1v5 -#0 4.580 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 libsoxr0 libspeex1 -#0 4.580 libsphinxbase3 libsratom-0-0 libsrt1.5-gnutls libssh-gcrypt-4 libssh2-1 -#0 4.580 libsvtav1enc1 libswresample4 libswscale6 libthai-data libthai0 libtheora0 -#0 4.580 libtiff6 libtwolame0 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 -#0 4.580 libvdpau-va-gl1 libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 -#0 4.580 libvorbisfile3 libvpx7 libvulkan1 libwayland-client0 libwayland-cursor0 -#0 4.580 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3 libx11-6 libx11-data -#0 4.580 libx11-xcb1 libx264-164 libx265-199 libxau6 libxcb-dri2-0 libxcb-dri3-0 -#0 4.580 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 -#0 4.580 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcursor1 libxdmcp6 -#0 4.580 libxext6 libxfixes3 libxi6 libxkbcommon0 libxml2 libxrandr2 libxrender1 -#0 4.580 libxshmfence1 libxss1 libxv1 libxvidcore4 libxxf86vm1 libz3-4 libzimg2 -#0 4.580 libzmq5 libzvbi-common libzvbi0 media-types mesa-va-drivers -#0 4.580 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 pocketsphinx-en-us -#0 4.580 publicsuffix python3 python3-minimal python3.11 python3.11-minimal -#0 4.580 shared-mime-info va-driver-all vdpau-driver-all x11-common xdg-user-dirs -#0 4.580 xkb-data -#0 4.622 0 upgraded, 238 newly installed, 0 to remove and 0 not upgraded. -#0 4.622 Need to get 182 MB of archives. -#0 4.622 After this operation, 628 MB of additional disk space will be used. -#0 4.622 Get:1 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB] -#0 4.670 Get:2 http://deb.debian.org/debian bookworm/main amd64 dbus-bin amd64 1.14.10-1~deb12u1 [105 kB] -#0 4.690 Get:3 http://deb.debian.org/debian bookworm/main amd64 dbus-session-bus-common all 1.14.10-1~deb12u1 [78.2 kB] -#0 4.709 Get:4 http://deb.debian.org/debian bookworm/main amd64 libapparmor1 amd64 3.0.8-3 [41.2 kB] -#0 4.714 Get:5 http://deb.debian.org/debian bookworm/main amd64 libexpat1 amd64 2.5.0-1+deb12u1 [98.9 kB] -#0 4.729 Get:6 http://deb.debian.org/debian bookworm/main amd64 dbus-daemon amd64 1.14.10-1~deb12u1 [184 kB] -#0 4.744 Get:7 http://deb.debian.org/debian bookworm/main amd64 dbus-system-bus-common all 1.14.10-1~deb12u1 [79.3 kB] -#0 4.787 Get:8 http://deb.debian.org/debian bookworm/main amd64 dbus amd64 1.14.10-1~deb12u1 [97.4 kB] -#0 4.835 Get:9 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-minimal amd64 3.11.2-6+deb12u5 [816 kB] -#0 4.897 Get:10 http://deb.debian.org/debian bookworm/main amd64 python3.11-minimal amd64 3.11.2-6+deb12u5 [2067 kB] -#0 4.937 Get:11 http://deb.debian.org/debian bookworm/main amd64 python3-minimal amd64 3.11.2-1+b1 [26.3 kB] -#0 4.950 Get:12 http://deb.debian.org/debian bookworm/main amd64 media-types all 10.0.0 [26.1 kB] -#0 4.964 Get:13 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-stdlib amd64 3.11.2-6+deb12u5 [1797 kB] -#0 5.027 Get:14 http://deb.debian.org/debian bookworm/main amd64 python3.11 amd64 3.11.2-6+deb12u5 [573 kB] -#0 5.082 Get:15 http://deb.debian.org/debian bookworm/main amd64 libpython3-stdlib amd64 3.11.2-1+b1 [9312 B] -#0 5.128 Get:16 http://deb.debian.org/debian bookworm/main amd64 python3 amd64 3.11.2-1+b1 [26.3 kB] -#0 5.214 Get:17 http://deb.debian.org/debian bookworm/main amd64 alsa-topology-conf all 1.2.5.1-2 [15.2 kB] -#0 5.227 Get:18 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB] -#0 5.240 Get:19 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB] -#0 5.283 Get:20 http://deb.debian.org/debian bookworm/main amd64 alsa-ucm-conf all 1.2.8-1 [51.7 kB] -#0 5.314 Get:21 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB] -#0 5.347 Get:22 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB] -#0 5.377 Get:23 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB] -#0 5.411 Get:24 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB] -#0 5.444 Get:25 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u2 [73.0 kB] -#0 5.481 Get:26 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB] -#0 5.523 Get:27 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB] -#0 5.564 Get:28 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB] -#0 5.608 Get:29 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] -#0 5.654 Get:30 http://deb.debian.org/debian bookworm/main amd64 curl amd64 7.88.1-10+deb12u8 [315 kB] -#0 5.709 Get:31 http://deb.debian.org/debian bookworm/main amd64 libaom3 amd64 3.6.0-1+deb12u1 [1851 kB] -#0 5.767 Get:32 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] -#0 5.803 Get:33 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] -#0 5.817 Get:34 http://deb.debian.org/debian bookworm/main amd64 libva2 amd64 2.17.0-1 [69.2 kB] -#0 5.860 Get:35 http://deb.debian.org/debian bookworm/main amd64 libmfx1 amd64 22.5.4-1 [3219 kB] -#0 5.898 Get:36 http://deb.debian.org/debian bookworm/main amd64 libva-drm2 amd64 2.17.0-1 [16.4 kB] -#0 5.904 Get:37 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] -#0 5.910 Get:38 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB] -#0 5.917 Get:39 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] -#0 5.924 Get:40 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] -#0 5.963 Get:41 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB] -#0 6.008 Get:42 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB] -#0 6.064 Get:43 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB] -#0 6.150 Get:44 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] -#0 6.276 Get:45 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] -#0 6.298 Get:46 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] -#0 6.328 Get:47 http://deb.debian.org/debian bookworm/main amd64 libva-x11-2 amd64 2.17.0-1 [21.0 kB] -#0 6.342 Get:48 http://deb.debian.org/debian bookworm/main amd64 libvdpau1 amd64 1.5-2 [26.1 kB] -#0 6.357 Get:49 http://deb.debian.org/debian bookworm/main amd64 ocl-icd-libopencl1 amd64 2.3.1-1 [43.0 kB] -#0 6.371 Get:50 http://deb.debian.org/debian bookworm/main amd64 libavutil57 amd64 7:5.1.6-0+deb12u1 [365 kB] -#0 6.414 Get:51 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB] -#0 6.458 Get:52 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u3 [398 kB] -#0 6.502 Get:53 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB] -#0 6.620 Get:54 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] -#0 6.658 Get:55 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] -#0 6.694 Get:56 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB] -#0 6.727 Get:57 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] -#0 6.734 Get:58 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB] -#0 6.740 Get:59 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] -#0 6.746 Get:60 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB] -#0 6.762 Get:61 http://deb.debian.org/debian bookworm/main amd64 libcodec2-1.0 amd64 1.0.5-1 [8171 kB] -#0 6.841 Get:62 http://deb.debian.org/debian bookworm/main amd64 libdav1d6 amd64 1.0.0-2+deb12u1 [513 kB] -#0 6.873 Get:63 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2+deb12u5 [1403 kB] -#0 6.921 Get:64 http://deb.debian.org/debian bookworm/main amd64 libgsm1 amd64 1.0.22-1 [30.9 kB] -#0 6.962 Get:65 http://deb.debian.org/debian bookworm/main amd64 libhwy1 amd64 1.0.3-3+deb12u1 [348 kB] -#0 6.998 Get:66 http://deb.debian.org/debian bookworm/main amd64 liblcms2-2 amd64 2.14-2 [154 kB] -#0 7.012 Get:67 http://deb.debian.org/debian bookworm/main amd64 libjxl0.7 amd64 0.7.0-10 [1046 kB] -#0 7.028 Get:68 http://deb.debian.org/debian bookworm/main amd64 libmp3lame0 amd64 3.100-6 [365 kB] -#0 7.037 Get:69 http://deb.debian.org/debian-security bookworm-security/main amd64 libopenjp2-7 amd64 2.5.0-2+deb12u1 [189 kB] -#0 7.056 Get:70 http://deb.debian.org/debian bookworm/main amd64 libopus0 amd64 1.3.1-3 [195 kB] -#0 7.071 Get:71 http://deb.debian.org/debian bookworm/main amd64 librav1e0 amd64 0.5.1-6 [763 kB] -#0 7.090 Get:72 http://deb.debian.org/debian bookworm/main amd64 libcairo-gobject2 amd64 1.16.0-7 [112 kB] -#0 7.096 Get:73 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-common all 2.42.10+dfsg-1+deb12u1 [306 kB] -#0 7.103 Get:74 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB] -#0 7.170 Get:75 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB] -#0 7.174 Get:76 http://deb.debian.org/debian bookworm/main amd64 shared-mime-info amd64 2.2-1 [729 kB] -#0 7.178 Get:77 http://deb.debian.org/debian bookworm/main amd64 libjpeg62-turbo amd64 1:2.1.5-2 [166 kB] -#0 7.180 Get:78 http://deb.debian.org/debian bookworm/main amd64 libdeflate0 amd64 1.14-1 [61.4 kB] -#0 7.189 Get:79 http://deb.debian.org/debian bookworm/main amd64 libjbig0 amd64 2.1-6.1 [31.7 kB] -#0 7.195 Get:80 http://deb.debian.org/debian bookworm/main amd64 liblerc4 amd64 4.0.0+ds-2 [170 kB] -#0 7.201 Get:81 http://deb.debian.org/debian bookworm/main amd64 libwebp7 amd64 1.2.4-0.2+deb12u1 [286 kB] -#0 7.210 Get:82 http://deb.debian.org/debian bookworm/main amd64 libtiff6 amd64 4.5.0-6+deb12u2 [316 kB] -#0 7.217 Get:83 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.10+dfsg-1+deb12u1 [139 kB] -#0 7.223 Get:84 http://deb.debian.org/debian bookworm/main amd64 fontconfig amd64 2.14.1-4 [449 kB] -#0 7.230 Get:85 http://deb.debian.org/debian bookworm/main amd64 libfribidi0 amd64 1.0.8-2.1 [65.0 kB] -#0 7.236 Get:86 http://deb.debian.org/debian bookworm/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -#0 7.242 Get:87 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz0b amd64 6.0.0+dfsg-3 [1945 kB] -#0 7.254 Get:88 http://deb.debian.org/debian bookworm/main amd64 libthai-data all 0.1.29-1 [176 kB] -#0 7.263 Get:89 http://deb.debian.org/debian bookworm/main amd64 libdatrie1 amd64 0.2.13-2+b1 [43.3 kB] -#0 7.269 Get:90 http://deb.debian.org/debian bookworm/main amd64 libthai0 amd64 0.1.29-1 [57.5 kB] -#0 7.275 Get:91 http://deb.debian.org/debian bookworm/main amd64 libpango-1.0-0 amd64 1.50.12+ds-1 [212 kB] -#0 7.282 Get:92 http://deb.debian.org/debian bookworm/main amd64 libpangoft2-1.0-0 amd64 1.50.12+ds-1 [47.4 kB] -#0 7.288 Get:93 http://deb.debian.org/debian bookworm/main amd64 libpangocairo-1.0-0 amd64 1.50.12+ds-1 [34.2 kB] -#0 7.301 Get:94 http://deb.debian.org/debian bookworm/main amd64 librsvg2-2 amd64 2.54.7+dfsg-1~deb12u1 [2620 kB] -#0 7.325 Get:95 http://deb.debian.org/debian bookworm/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -#0 7.346 Get:96 http://deb.debian.org/debian bookworm/main amd64 libsnappy1v5 amd64 1.1.9-3 [26.0 kB] -#0 7.359 Get:97 http://deb.debian.org/debian bookworm/main amd64 libspeex1 amd64 1.2.1-2 [54.6 kB] -#0 7.366 Get:98 http://deb.debian.org/debian bookworm/main amd64 libsvtav1enc1 amd64 1.4.1+dfsg-1 [2121 kB] -#0 7.380 Get:99 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB] -#0 7.393 Get:100 http://deb.debian.org/debian bookworm/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -#0 7.407 Get:101 http://deb.debian.org/debian bookworm/main amd64 libswresample4 amd64 7:5.1.6-0+deb12u1 [99.3 kB] -#0 7.425 Get:102 http://deb.debian.org/debian bookworm/main amd64 libogg0 amd64 1.3.5-3 [23.4 kB] -#0 7.440 Get:103 http://deb.debian.org/debian bookworm/main amd64 libtheora0 amd64 1.1.1+dfsg.1-16.1+b1 [154 kB] -#0 7.455 Get:104 http://deb.debian.org/debian bookworm/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -#0 7.470 Get:105 http://deb.debian.org/debian bookworm/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -#0 7.483 Get:106 http://deb.debian.org/debian bookworm/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -#0 7.498 Get:107 http://deb.debian.org/debian bookworm/main amd64 libvpx7 amd64 1.12.0-1+deb12u3 [1003 kB] -#0 7.514 Get:108 http://deb.debian.org/debian bookworm/main amd64 libwebpmux3 amd64 1.2.4-0.2+deb12u1 [109 kB] -#0 7.528 Get:109 http://deb.debian.org/debian bookworm/main amd64 libx264-164 amd64 2:0.164.3095+gitbaee400-3 [547 kB] -#0 7.544 Get:110 http://deb.debian.org/debian bookworm/main amd64 libnuma1 amd64 2.0.16-1 [21.0 kB] -#0 7.558 Get:111 http://deb.debian.org/debian bookworm/main amd64 libx265-199 amd64 3.5-2+b1 [1150 kB] -#0 7.576 Get:112 http://deb.debian.org/debian bookworm/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -#0 7.599 Get:113 http://deb.debian.org/debian bookworm/main amd64 libzvbi-common all 0.2.41-1 [69.7 kB] -#0 7.613 Get:114 http://deb.debian.org/debian bookworm/main amd64 libzvbi0 amd64 0.2.41-1 [274 kB] -#0 7.629 Get:115 http://deb.debian.org/debian bookworm/main amd64 libavcodec59 amd64 7:5.1.6-0+deb12u1 [5222 kB] -#0 7.658 Get:116 http://deb.debian.org/debian bookworm/main amd64 libraw1394-11 amd64 2.1.2-2 [41.1 kB] -#0 7.671 Get:117 http://deb.debian.org/debian bookworm/main amd64 libavc1394-0 amd64 0.5.4-5 [19.9 kB] -#0 7.714 Get:118 http://deb.debian.org/debian bookworm/main amd64 libass9 amd64 1:0.17.1-1 [107 kB] -#0 7.729 Get:119 http://deb.debian.org/debian bookworm/main amd64 libudfread0 amd64 1.1.2-1 [16.5 kB] -#0 7.743 Get:120 http://deb.debian.org/debian bookworm/main amd64 libbluray2 amd64 1:1.3.4-1 [138 kB] -#0 7.758 Get:121 http://deb.debian.org/debian bookworm/main amd64 libchromaprint1 amd64 1.5.1-2+b1 [41.0 kB] -#0 7.802 Get:122 http://deb.debian.org/debian bookworm/main amd64 libgme0 amd64 0.6.3-6 [130 kB] -#0 7.851 Get:123 http://deb.debian.org/debian bookworm/main amd64 libmpg123-0 amd64 1.31.2-1+deb12u1 [147 kB] -#0 7.898 Get:124 http://deb.debian.org/debian bookworm/main amd64 libvorbisfile3 amd64 1.3.7-1 [26.1 kB] -#0 7.945 Get:125 http://deb.debian.org/debian bookworm/main amd64 libopenmpt0 amd64 0.6.9-1 [693 kB] -#0 8.004 Get:126 http://deb.debian.org/debian bookworm/main amd64 librabbitmq4 amd64 0.11.0-1+b1 [43.5 kB] -#0 8.051 Get:127 http://deb.debian.org/debian bookworm/main amd64 libcjson1 amd64 1.7.15-1+deb12u2 [22.9 kB] -#0 8.099 Get:128 http://deb.debian.org/debian bookworm/main amd64 libmbedcrypto7 amd64 2.28.3-1 [277 kB] -#0 8.149 Get:129 http://deb.debian.org/debian bookworm/main amd64 librist4 amd64 0.2.7+dfsg-1 [73.9 kB] -#0 8.196 Get:130 http://deb.debian.org/debian bookworm/main amd64 libsrt1.5-gnutls amd64 1.5.1-1+deb12u1 [313 kB] -#0 8.248 Get:131 http://deb.debian.org/debian bookworm/main amd64 libssh-gcrypt-4 amd64 0.10.6-0+deb12u1 [219 kB] -#0 8.294 Get:132 http://deb.debian.org/debian bookworm/main amd64 libnorm1 amd64 1.5.9+dfsg-2 [221 kB] -#0 8.340 Get:133 http://deb.debian.org/debian bookworm/main amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB] -#0 8.387 Get:134 http://deb.debian.org/debian bookworm/main amd64 libsodium23 amd64 1.0.18-1 [161 kB] -#0 8.478 Get:135 http://deb.debian.org/debian bookworm/main amd64 libzmq5 amd64 4.3.4-6 [273 kB] -#0 8.512 Get:136 http://deb.debian.org/debian bookworm/main amd64 libavformat59 amd64 7:5.1.6-0+deb12u1 [1104 kB] -#0 8.558 Get:137 http://deb.debian.org/debian bookworm/main amd64 libbs2b0 amd64 3.1.0+dfsg-7 [11.5 kB] -#0 8.591 Get:138 http://deb.debian.org/debian bookworm/main amd64 libflite1 amd64 2.2-5 [12.8 MB] -#0 8.740 Get:139 http://deb.debian.org/debian bookworm/main amd64 libserd-0-0 amd64 0.30.16-1 [47.5 kB] -#0 8.777 Get:140 http://deb.debian.org/debian bookworm/main amd64 libsord-0-0 amd64 0.16.14+git221008-1 [20.8 kB] -#0 8.814 Get:141 http://deb.debian.org/debian bookworm/main amd64 libsratom-0-0 amd64 0.6.14-1 [17.7 kB] -#0 8.853 Get:142 http://deb.debian.org/debian bookworm/main amd64 liblilv-0-0 amd64 0.24.14-1 [49.4 kB] -#0 8.895 Get:143 http://deb.debian.org/debian bookworm/main amd64 libmysofa1 amd64 1.3.1~dfsg0-1 [1158 kB] -#0 8.943 Get:144 http://deb.debian.org/debian bookworm/main amd64 libepoxy0 amd64 1.5.10-1 [189 kB] -#0 8.988 Get:145 http://deb.debian.org/debian bookworm/main amd64 libvulkan1 amd64 1.3.239.0-1 [116 kB] -#0 9.032 Get:146 http://deb.debian.org/debian bookworm/main amd64 libplacebo208 amd64 4.208.0-3 [2239 kB] -#0 9.091 Get:147 http://deb.debian.org/debian bookworm/main amd64 libblas3 amd64 3.11.0-2 [149 kB] -#0 9.129 Get:148 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB] -#0 9.165 Get:149 http://deb.debian.org/debian bookworm/main amd64 libgfortran5 amd64 12.2.0-14 [793 kB] -#0 9.211 Get:150 http://deb.debian.org/debian bookworm/main amd64 liblapack3 amd64 3.11.0-2 [2323 kB] -#0 9.269 Get:151 http://deb.debian.org/debian bookworm/main amd64 libasyncns0 amd64 0.8-6+b3 [12.9 kB] -#0 9.304 Get:152 http://deb.debian.org/debian bookworm/main amd64 libflac12 amd64 1.4.2+ds-2 [198 kB] -#0 9.345 Get:153 http://deb.debian.org/debian bookworm/main amd64 libsndfile1 amd64 1.2.0-1 [196 kB] -#0 9.387 Get:154 http://deb.debian.org/debian bookworm/main amd64 libpulse0 amd64 16.1+dfsg1-2+b1 [274 kB] -#0 9.436 Get:155 http://deb.debian.org/debian bookworm/main amd64 libsphinxbase3 amd64 0.8+5prealpha+1-16 [118 kB] -#0 9.482 Get:156 http://deb.debian.org/debian bookworm/main amd64 libpocketsphinx3 amd64 0.8+5prealpha+1-15 [125 kB] -#0 9.528 Get:157 http://deb.debian.org/debian bookworm/main amd64 libpostproc56 amd64 7:5.1.6-0+deb12u1 [95.9 kB] -#0 9.575 Get:158 http://deb.debian.org/debian bookworm/main amd64 librubberband2 amd64 3.1.2+dfsg0-1 [137 kB] -#0 9.625 Get:159 http://deb.debian.org/debian bookworm/main amd64 libswscale6 amd64 7:5.1.6-0+deb12u1 [217 kB] -#0 9.676 Get:160 http://deb.debian.org/debian bookworm/main amd64 libvidstab1.1 amd64 1.1.0-2+b1 [37.8 kB] -#0 9.728 Get:161 http://deb.debian.org/debian bookworm/main amd64 libzimg2 amd64 3.0.4+ds1-1 [227 kB] -#0 9.773 Get:162 http://deb.debian.org/debian bookworm/main amd64 libavfilter8 amd64 7:5.1.6-0+deb12u1 [3706 kB] -#0 9.863 Get:163 http://deb.debian.org/debian bookworm/main amd64 libslang2 amd64 2.3.3-3 [554 kB] -#0 9.908 Get:164 http://deb.debian.org/debian bookworm/main amd64 libcaca0 amd64 0.99.beta20-3 [205 kB] -#0 9.951 Get:165 http://deb.debian.org/debian bookworm/main amd64 libcdio19 amd64 2.1.0-4 [203 kB] -#0 9.987 Get:166 http://deb.debian.org/debian bookworm/main amd64 libcdio-cdda2 amd64 10.2+2.0.1-1 [20.9 kB] -#0 10.02 Get:167 http://deb.debian.org/debian bookworm/main amd64 libcdio-paranoia2 amd64 10.2+2.0.1-1 [20.4 kB] -#0 10.06 Get:168 http://deb.debian.org/debian bookworm/main amd64 libusb-1.0-0 amd64 2:1.0.26-1 [62.6 kB] -#0 10.09 Get:169 http://deb.debian.org/debian bookworm/main amd64 libdc1394-25 amd64 2.2.6-4 [109 kB] -#49 10.14 Get:170 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] -#49 10.16 Get:171 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] -#49 10.19 Get:172 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] -#49 ... - -#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt -#0 2.003 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#0 2.142 Collecting pip -#0 2.274 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#0 2.277 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#0 2.553 Collecting setuptools -#0 2.592 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#0 2.705 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#0 2.968 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 7.2 MB/s eta 0:00:00 -#0 3.010 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#0 3.117 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 11.7 MB/s eta 0:00:00 -#0 3.252 Installing collected packages: setuptools, pip -#0 3.252 Attempting uninstall: setuptools -#0 3.255 Found existing installation: setuptools 65.5.1 -#0 3.274 Uninstalling setuptools-65.5.1: -#0 3.329 Successfully uninstalled setuptools-65.5.1 -#0 3.996 Attempting uninstall: pip -#0 3.999 Found existing installation: pip 24.0 -#0 4.051 Uninstalling pip-24.0: -#0 4.262 Successfully uninstalled pip-24.0 -#0 5.150 Successfully installed pip-25.0 setuptools-75.8.0 -#0 5.150 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#0 6.485 Collecting aiohttp (from -r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 6.642 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#0 6.739 Collecting docarray (from -r /home/comps/embeddings/src/requirements.txt (line 2)) -#0 6.772 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#0 6.821 Collecting einops (from -r /home/comps/embeddings/src/requirements.txt (line 3)) -#0 6.851 Downloading einops-0.8.0-py3-none-any.whl.metadata (12 kB) -#0 6.917 Collecting fastapi (from -r /home/comps/embeddings/src/requirements.txt (line 4)) -#0 6.952 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#0 7.002 Collecting huggingface_hub (from -r /home/comps/embeddings/src/requirements.txt (line 5)) -#0 7.038 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#0 7.080 Collecting open-clip-torch (from -r /home/comps/embeddings/src/requirements.txt (line 6)) -#0 7.119 Downloading open_clip_torch-2.30.0-py3-none-any.whl.metadata (31 kB) -#0 7.206 Collecting openai (from -r /home/comps/embeddings/src/requirements.txt (line 7)) -#0 7.248 Downloading openai-1.61.0-py3-none-any.whl.metadata (27 kB) -#0 7.285 Collecting opentelemetry-api (from -r /home/comps/embeddings/src/requirements.txt (line 8)) -#0 7.331 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) -#0 7.384 Collecting opentelemetry-exporter-otlp (from -r /home/comps/embeddings/src/requirements.txt (line 9)) -#0 7.431 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#0 7.456 Collecting opentelemetry-sdk (from -r /home/comps/embeddings/src/requirements.txt (line 10)) -#0 7.619 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) -#0 7.839 Collecting Pillow (from -r /home/comps/embeddings/src/requirements.txt (line 11)) -#0 7.873 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#0 7.963 Collecting predictionguard==2.2.1 (from -r /home/comps/embeddings/src/requirements.txt (line 12)) -#0 8.003 Downloading predictionguard-2.2.1-py2.py3-none-any.whl.metadata (766 bytes) -#0 8.025 Collecting prometheus-fastapi-instrumentator (from -r /home/comps/embeddings/src/requirements.txt (line 13)) -#0 8.085 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#0 8.134 Collecting PyYAML (from -r /home/comps/embeddings/src/requirements.txt (line 14)) -#0 8.176 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#0 8.192 Collecting shortuuid (from -r /home/comps/embeddings/src/requirements.txt (line 15)) -#0 8.234 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#0 8.288 Collecting transformers (from -r /home/comps/embeddings/src/requirements.txt (line 16)) -#0 8.330 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) -#0 8.507 Collecting uvicorn (from -r /home/comps/embeddings/src/requirements.txt (line 17)) -#0 8.561 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#0 8.583 Collecting tabulate>=0.8.10 (from predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) -#0 8.629 Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) -#0 8.688 Collecting requests>=2.27.1 (from predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) -#0 8.735 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#0 8.805 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 8.844 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#0 8.863 Collecting aiosignal>=1.1.2 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 8.897 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#0 8.924 Collecting attrs>=17.3.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 8.957 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#0 9.045 Collecting frozenlist>=1.1.1 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 9.078 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#0 9.324 Collecting multidict<7.0,>=4.5 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 9.367 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#0 9.404 Collecting propcache>=0.2.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 9.446 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#0 9.733 Collecting yarl<2.0,>=1.17.0 (from aiohttp->-r /home/comps/embeddings/src/requirements.txt (line 1)) -#0 9.776 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#0 10.04 Collecting numpy>=1.17.3 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#0 10.08 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#50 ... - -#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim -#47 11.19 Setting up libbsd0:amd64 (0.11.7-2) ... -#47 11.19 Setting up libdrm-common (2.4.114-1) ... -#47 11.19 Setting up libelf1:amd64 (0.188-2.1) ... -#47 11.19 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#47 11.19 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... -#47 11.20 Setting up libxcb1:amd64 (1.15-1) ... -#47 11.20 Setting up vim (2:9.0.1378-2) ... -#47 11.20 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in auto mode -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/man1/editor.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/da/man1/editor.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/de/man1/editor.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/editor.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/it/man1/editor.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/editor.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/editor.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/editor.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.20 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/editor.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group editor) doesn't exist -#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/ex (ex) in auto mode -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/man1/ex.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/da/man1/ex.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/de/man1/ex.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/ex.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/it/man1/ex.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/ex.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/ex.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/ex.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/ex.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group ex) doesn't exist -#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rview (rview) in auto mode -#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rvim (rvim) in auto mode -#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vi (vi) in auto mode -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/man1/vi.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/da/man1/vi.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/de/man1/vi.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/vi.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/it/man1/vi.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/vi.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/vi.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/vi.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/vi.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group vi) doesn't exist -#47 11.21 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/view (view) in auto mode -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/man1/view.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/da/man1/view.1.gz because associated file /usr/share/man/da/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/de/man1/view.1.gz because associated file /usr/share/man/de/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/view.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/it/man1/view.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ja/man1/view.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/pl/man1/view.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/ru/man1/view.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group view) doesn't exist -#47 11.21 update-alternatives: warning: skip creation of /usr/share/man/tr/man1/view.1.gz because associated file /usr/share/man/tr/man1/vim.1.gz (of link group view) doesn't exist -#47 11.22 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vim (vim) in auto mode -#47 11.22 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vimdiff (vimdiff) in auto mode -#47 11.22 Setting up libxcb-xfixes0:amd64 (1.15-1) ... -#47 11.22 Setting up libxcb-render0:amd64 (1.15-1) ... -#47 11.22 Setting up fontconfig-config (2.14.1-4) ... -#47 11.30 debconf: unable to initialize frontend: Dialog -#47 11.30 debconf: (TERM is not set, so the dialog frontend is not usable.) -#47 11.30 debconf: falling back to frontend: Readline -#47 11.30 debconf: unable to initialize frontend: Readline -#47 11.30 debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.36.0 /usr/local/share/perl/5.36.0 /usr/lib/x86_64-linux-gnu/perl5/5.36 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.36 /usr/share/perl/5.36 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) -#47 11.30 debconf: falling back to frontend: Teletype -#47 11.62 Setting up libxcb-glx0:amd64 (1.15-1) ... -#47 11.76 Setting up libedit2:amd64 (3.1-20221030-2) ... -#47 11.83 Setting up libxcb-shm0:amd64 (1.15-1) ... -#47 11.93 Setting up libxcb-present0:amd64 (1.15-1) ... -#47 11.99 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#47 12.02 Setting up libxcb-sync1:amd64 (1.15-1) ... -#47 12.04 Setting up libxcb-dri2-0:amd64 (1.15-1) ... -#47 ... - -#51 [opea/multimodalqna:latest git 2/2] RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git -#0 0.222 Cloning into 'GenAIComps'... -#51 DONE 2.5s - -#47 [opea/retriever:latest 2/6] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing libgl1-mesa-glx libjemalloc-dev libcairo2 libglib2.0-0 vim -#47 12.08 Setting up libdrm2:amd64 (2.4.114-1+b1) ... -#47 12.13 Setting up libxcb-randr0:amd64 (1.15-1) ... -#47 12.13 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... -#47 12.13 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#47 12.13 Setting up libfontconfig1:amd64 (2.14.1-4) ... -#47 12.14 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#47 12.14 Setting up libxcb-dri3-0:amd64 (1.15-1) ... -#47 12.14 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#47 12.14 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#47 12.14 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... -#47 12.15 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#47 12.16 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... -#47 12.19 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#47 12.20 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... -#47 12.20 Setting up libcairo2:amd64 (1.16.0-7) ... -#47 12.21 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#47 12.21 Setting up libxfixes3:amd64 (1:6.0.0-2) ... -#47 12.21 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#47 12.21 Setting up libglx0:amd64 (1.6.0-1) ... -#47 12.22 Setting up libgl1:amd64 (1.6.0-1) ... -#47 12.22 Setting up libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... -#47 12.22 Processing triggers for libc-bin (2.36-9+deb12u9) ... -#47 DONE 12.3s - -#52 [opea/retriever:latest 3/6] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ -#52 DONE 0.3s - -#53 [opea/retriever:latest 4/6] COPY comps /home/user/comps -#53 DONE 0.2s - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 ... - -#55 [opea/multimodalqna:latest comps-base 1/5] COPY --from=git /home/user/GenAIComps/comps /home/user/GenAIComps/comps -#55 DONE 0.2s - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 10.26 Selecting previously unselected package libglib2.0-0:amd64. -#48 10.26 Preparing to unpack .../010-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... -#48 10.26 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#48 10.37 Selecting previously unselected package libicu72:amd64. -#48 10.37 Preparing to unpack .../011-libicu72_72.1-3_amd64.deb ... -#48 10.37 Unpacking libicu72:amd64 (72.1-3) ... -#48 10.89 Selecting previously unselected package libxml2:amd64. -#48 10.89 Preparing to unpack .../012-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... -#48 10.89 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#48 10.95 Selecting previously unselected package shared-mime-info. -#48 10.95 Preparing to unpack .../013-shared-mime-info_2.2-1_amd64.deb ... -#48 10.95 Unpacking shared-mime-info (2.2-1) ... -#48 11.01 Selecting previously unselected package libjpeg62-turbo:amd64. -#48 11.01 Preparing to unpack .../014-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... -#48 11.02 Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... -#48 11.04 Selecting previously unselected package libpng16-16:amd64. -#48 11.04 Preparing to unpack .../015-libpng16-16_1.6.39-2_amd64.deb ... -#48 11.04 Unpacking libpng16-16:amd64 (1.6.39-2) ... -#48 11.07 Selecting previously unselected package libdeflate0:amd64. -#48 11.07 Preparing to unpack .../016-libdeflate0_1.14-1_amd64.deb ... -#48 11.07 Unpacking libdeflate0:amd64 (1.14-1) ... -#48 11.09 Selecting previously unselected package libjbig0:amd64. -#48 11.09 Preparing to unpack .../017-libjbig0_2.1-6.1_amd64.deb ... -#48 11.10 Unpacking libjbig0:amd64 (2.1-6.1) ... -#48 11.11 Selecting previously unselected package liblerc4:amd64. -#48 11.11 Preparing to unpack .../018-liblerc4_4.0.0+ds-2_amd64.deb ... -#48 11.11 Unpacking liblerc4:amd64 (4.0.0+ds-2) ... -#48 11.14 Selecting previously unselected package libwebp7:amd64. -#48 11.14 Preparing to unpack .../019-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... -#48 11.19 Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... -#48 11.22 Selecting previously unselected package libtiff6:amd64. -#48 11.22 Preparing to unpack .../020-libtiff6_4.5.0-6+deb12u2_amd64.deb ... -#48 11.22 Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... -#48 11.25 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -#48 11.25 Preparing to unpack .../021-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u1_amd64.deb ... -#48 11.25 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... -#48 11.28 Selecting previously unselected package gtk-update-icon-cache. -#48 11.28 Preparing to unpack .../022-gtk-update-icon-cache_3.24.38-2~deb12u3_amd64.deb ... -#48 11.28 Unpacking gtk-update-icon-cache (3.24.38-2~deb12u3) ... -#48 11.31 Selecting previously unselected package adwaita-icon-theme. -#48 11.31 Preparing to unpack .../023-adwaita-icon-theme_43-1_all.deb ... -#48 11.31 Unpacking adwaita-icon-theme (43-1) ... -#48 12.32 Selecting previously unselected package at-spi2-common. -#48 12.32 Preparing to unpack .../024-at-spi2-common_2.46.0-5_all.deb ... -#48 12.32 Unpacking at-spi2-common (2.46.0-5) ... -#48 12.35 Selecting previously unselected package binutils-common:amd64. -#48 12.35 Preparing to unpack .../025-binutils-common_2.40-2_amd64.deb ... -#48 12.35 Unpacking binutils-common:amd64 (2.40-2) ... -#48 12.55 Selecting previously unselected package libbinutils:amd64. -#48 12.55 Preparing to unpack .../026-libbinutils_2.40-2_amd64.deb ... -#48 12.55 Unpacking libbinutils:amd64 (2.40-2) ... -#48 12.63 Selecting previously unselected package libctf-nobfd0:amd64. -#48 12.63 Preparing to unpack .../027-libctf-nobfd0_2.40-2_amd64.deb ... -#48 12.63 Unpacking libctf-nobfd0:amd64 (2.40-2) ... -#48 12.66 Selecting previously unselected package libctf0:amd64. -#48 12.66 Preparing to unpack .../028-libctf0_2.40-2_amd64.deb ... -#48 12.66 Unpacking libctf0:amd64 (2.40-2) ... -#48 12.68 Selecting previously unselected package libgprofng0:amd64. -#48 12.68 Preparing to unpack .../029-libgprofng0_2.40-2_amd64.deb ... -#48 12.68 Unpacking libgprofng0:amd64 (2.40-2) ... -#48 12.83 Selecting previously unselected package libjansson4:amd64. -#48 12.83 Preparing to unpack .../030-libjansson4_2.14-2_amd64.deb ... -#48 12.84 Unpacking libjansson4:amd64 (2.14-2) ... -#48 12.85 Selecting previously unselected package binutils-x86-64-linux-gnu. -#48 12.85 Preparing to unpack .../031-binutils-x86-64-linux-gnu_2.40-2_amd64.deb ... -#48 12.85 Unpacking binutils-x86-64-linux-gnu (2.40-2) ... -#48 13.06 Selecting previously unselected package binutils. -#48 13.07 Preparing to unpack .../032-binutils_2.40-2_amd64.deb ... -#48 13.07 Unpacking binutils (2.40-2) ... -#48 13.09 Selecting previously unselected package libc-dev-bin. -#48 13.09 Preparing to unpack .../033-libc-dev-bin_2.36-9+deb12u9_amd64.deb ... -#48 13.09 Unpacking libc-dev-bin (2.36-9+deb12u9) ... -#48 13.10 Selecting previously unselected package linux-libc-dev:amd64. -#48 13.11 Preparing to unpack .../034-linux-libc-dev_6.1.124-1_amd64.deb ... -#48 13.15 Unpacking linux-libc-dev:amd64 (6.1.124-1) ... -#48 ... - -#56 [opea/multimodalqna:latest comps-base 2/5] COPY --from=git /home/user/GenAIComps/*.* /home/user/GenAIComps/LICENSE /home/user/GenAIComps/ -#56 DONE 0.1s - -#57 [opea/multimodalqna:latest comps-base 3/5] WORKDIR /home/user/GenAIComps -#57 DONE 0.0s - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 13.29 Selecting previously unselected package libcrypt-dev:amd64. -#48 13.29 Preparing to unpack .../035-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... -#48 13.30 Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... -#48 13.32 Selecting previously unselected package libtirpc-dev:amd64. -#48 13.32 Preparing to unpack .../036-libtirpc-dev_1.3.3+ds-1_amd64.deb ... -#48 13.32 Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... -#48 13.35 Selecting previously unselected package libnsl-dev:amd64. -#48 13.35 Preparing to unpack .../037-libnsl-dev_1.3.0-2_amd64.deb ... -#48 13.35 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -#48 13.36 Selecting previously unselected package rpcsvc-proto. -#48 13.37 Preparing to unpack .../038-rpcsvc-proto_1.4.3-1_amd64.deb ... -#48 13.37 Unpacking rpcsvc-proto (1.4.3-1) ... -#48 13.39 Selecting previously unselected package libc6-dev:amd64. -#48 13.39 Preparing to unpack .../039-libc6-dev_2.36-9+deb12u9_amd64.deb ... -#48 13.39 Unpacking libc6-dev:amd64 (2.36-9+deb12u9) ... -#48 13.55 Selecting previously unselected package libisl23:amd64. -#48 13.55 Preparing to unpack .../040-libisl23_0.25-1.1_amd64.deb ... -#48 13.55 Unpacking libisl23:amd64 (0.25-1.1) ... -#48 13.61 Selecting previously unselected package libmpfr6:amd64. -#48 13.61 Preparing to unpack .../041-libmpfr6_4.2.0-1_amd64.deb ... -#48 13.62 Unpacking libmpfr6:amd64 (4.2.0-1) ... -#48 13.66 Selecting previously unselected package libmpc3:amd64. -#48 13.66 Preparing to unpack .../042-libmpc3_1.3.1-1_amd64.deb ... -#48 13.66 Unpacking libmpc3:amd64 (1.3.1-1) ... -#48 13.67 Selecting previously unselected package cpp-12. -#48 13.68 Preparing to unpack .../043-cpp-12_12.2.0-14_amd64.deb ... -#48 13.68 Unpacking cpp-12 (12.2.0-14) ... -#48 14.26 Selecting previously unselected package cpp. -#48 14.26 Preparing to unpack .../044-cpp_4%3a12.2.0-3_amd64.deb ... -#48 14.26 Unpacking cpp (4:12.2.0-3) ... -#48 14.27 Selecting previously unselected package libcc1-0:amd64. -#48 14.27 Preparing to unpack .../045-libcc1-0_12.2.0-14_amd64.deb ... -#48 14.27 Unpacking libcc1-0:amd64 (12.2.0-14) ... -#48 14.29 Selecting previously unselected package libgomp1:amd64. -#48 14.29 Preparing to unpack .../046-libgomp1_12.2.0-14_amd64.deb ... -#48 14.29 Unpacking libgomp1:amd64 (12.2.0-14) ... -#48 14.31 Selecting previously unselected package libitm1:amd64. -#48 14.31 Preparing to unpack .../047-libitm1_12.2.0-14_amd64.deb ... -#48 14.32 Unpacking libitm1:amd64 (12.2.0-14) ... -#48 14.33 Selecting previously unselected package libatomic1:amd64. -#48 14.33 Preparing to unpack .../048-libatomic1_12.2.0-14_amd64.deb ... -#48 14.33 Unpacking libatomic1:amd64 (12.2.0-14) ... -#48 14.35 Selecting previously unselected package libasan8:amd64. -#48 14.35 Preparing to unpack .../049-libasan8_12.2.0-14_amd64.deb ... -#48 14.35 Unpacking libasan8:amd64 (12.2.0-14) ... -#48 14.53 Selecting previously unselected package liblsan0:amd64. -#48 14.53 Preparing to unpack .../050-liblsan0_12.2.0-14_amd64.deb ... -#48 14.53 Unpacking liblsan0:amd64 (12.2.0-14) ... -#48 14.62 Selecting previously unselected package libtsan2:amd64. -#48 14.62 Preparing to unpack .../051-libtsan2_12.2.0-14_amd64.deb ... -#48 14.62 Unpacking libtsan2:amd64 (12.2.0-14) ... -#48 14.80 Selecting previously unselected package libubsan1:amd64. -#48 14.80 Preparing to unpack .../052-libubsan1_12.2.0-14_amd64.deb ... -#48 14.80 Unpacking libubsan1:amd64 (12.2.0-14) ... -#48 14.88 Selecting previously unselected package libquadmath0:amd64. -#48 14.88 Preparing to unpack .../053-libquadmath0_12.2.0-14_amd64.deb ... -#48 14.88 Unpacking libquadmath0:amd64 (12.2.0-14) ... -#48 14.91 Selecting previously unselected package libgcc-12-dev:amd64. -#48 14.91 Preparing to unpack .../054-libgcc-12-dev_12.2.0-14_amd64.deb ... -#48 14.91 Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... -#48 15.08 Selecting previously unselected package gcc-12. -#48 15.08 Preparing to unpack .../055-gcc-12_12.2.0-14_amd64.deb ... -#48 15.08 Unpacking gcc-12 (12.2.0-14) ... -#48 15.72 Selecting previously unselected package gcc. -#48 15.73 Preparing to unpack .../056-gcc_4%3a12.2.0-3_amd64.deb ... -#48 15.73 Unpacking gcc (4:12.2.0-3) ... -#48 15.74 Selecting previously unselected package libstdc++-12-dev:amd64. -#48 15.74 Preparing to unpack .../057-libstdc++-12-dev_12.2.0-14_amd64.deb ... -#48 15.74 Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... -#48 15.91 Selecting previously unselected package g++-12. -#48 15.92 Preparing to unpack .../058-g++-12_12.2.0-14_amd64.deb ... -#48 15.92 Unpacking g++-12 (12.2.0-14) ... -#48 ... - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 4.910 Attempting uninstall: pip -#37 4.913 Found existing installation: pip 24.0 -#37 4.964 Uninstalling pip-24.0: -#37 5.143 Successfully uninstalled pip-24.0 -#37 6.093 Successfully installed pip-25.0 setuptools-75.8.0 -#37 6.094 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#37 6.976 Collecting datasets (from -r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 7.029 Downloading datasets-3.2.0-py3-none-any.whl.metadata (20 kB) -#37 7.193 Collecting fastapi (from -r /home/user/comps/lvms/src/requirements.txt (line 3)) -#37 7.201 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#37 7.292 Collecting huggingface_hub (from -r /home/user/comps/lvms/src/requirements.txt (line 4)) -#37 7.300 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#37 7.452 Collecting langchain-core (from -r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 7.460 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) -#37 7.502 Collecting opentelemetry-api (from -r /home/user/comps/lvms/src/requirements.txt (line 6)) -#37 7.510 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) -#37 7.552 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/lvms/src/requirements.txt (line 7)) -#37 7.560 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#37 7.602 Collecting opentelemetry-sdk (from -r /home/user/comps/lvms/src/requirements.txt (line 8)) -#37 7.611 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) -#37 7.651 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/lvms/src/requirements.txt (line 10)) -#37 7.670 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#37 7.849 Collecting pydantic==2.7.2 (from -r /home/user/comps/lvms/src/requirements.txt (line 11)) -#37 7.859 Downloading pydantic-2.7.2-py3-none-any.whl.metadata (108 kB) -#37 7.971 Collecting pydub (from -r /home/user/comps/lvms/src/requirements.txt (line 12)) -#37 7.979 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) -#37 8.009 Collecting shortuuid (from -r /home/user/comps/lvms/src/requirements.txt (line 13)) -#37 8.017 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#37 8.069 Collecting uvicorn (from -r /home/user/comps/lvms/src/requirements.txt (line 14)) -#37 8.076 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#37 8.263 Collecting docarray[full] (from -r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 8.275 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#37 8.404 Collecting optimum[habana] (from -r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 8.414 Downloading optimum-1.24.0-py3-none-any.whl.metadata (21 kB) -#37 8.485 Collecting annotated-types>=0.4.0 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/requirements.txt (line 11)) -#37 8.493 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#37 9.377 Collecting pydantic-core==2.18.3 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/requirements.txt (line 11)) -#37 9.388 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) -#37 9.438 Collecting typing-extensions>=4.6.1 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/requirements.txt (line 11)) -#37 9.446 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#37 9.580 Collecting filelock (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 9.588 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#37 9.892 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 9.901 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#37 10.12 Collecting pyarrow>=15.0.0 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.14 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) -#37 10.19 Collecting dill<0.3.9,>=0.3.0 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.21 Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB) -#37 10.39 Collecting pandas (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.40 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) -#37 10.52 Collecting requests>=2.32.2 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.53 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#37 10.61 Collecting tqdm>=4.66.3 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.63 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#37 10.79 Collecting xxhash (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.80 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) -#37 10.85 Collecting multiprocess<0.70.17 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.86 Downloading multiprocess-0.70.16-py311-none-any.whl.metadata (7.2 kB) -#37 10.93 Collecting fsspec<=2024.9.0,>=2023.1.0 (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 10.94 Downloading fsspec-2024.9.0-py3-none-any.whl.metadata (11 kB) -#37 11.57 Collecting aiohttp (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 11.58 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#37 11.66 Collecting packaging (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 11.67 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#37 11.75 Collecting pyyaml>=5.1 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 11.75 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#37 11.85 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 11.86 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) -#37 11.93 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 11.94 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) -#37 12.07 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 12.08 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#37 12.51 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 12.51 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#37 12.77 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 12.78 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#37 13.02 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 13.03 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#37 13.15 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 13.16 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#37 13.37 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 13.38 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) -#37 13.45 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 13.46 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) -#37 13.59 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 13.60 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#37 13.64 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 13.65 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) -#37 13.72 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/lvms/src/requirements.txt (line 3)) -#37 13.72 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#37 13.85 Collecting jsonpatch<2.0,>=1.33 (from langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 13.86 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) -#37 14.05 Collecting langsmith<0.4,>=0.1.125 (from langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 14.05 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) -#37 14.15 Collecting tenacity!=8.4.0,<10.0.0,>=8.1.0 (from langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 14.16 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) -#37 14.21 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) -#37 14.22 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#37 14.30 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) -#37 14.31 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) -#37 14.37 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) -#37 14.38 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#37 14.43 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) -#37 14.44 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#37 14.50 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) -#37 14.51 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#37 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 10.12 Get:194 http://deb.debian.org/debian bookworm/main amd64 liblapack3 amd64 3.11.0-2 [2323 kB] -#42 10.22 Get:195 http://deb.debian.org/debian bookworm/main amd64 coinor-libcoinutils3v5 amd64 2.11.4+repack1-2 [440 kB] -#42 10.26 Get:196 http://deb.debian.org/debian bookworm/main amd64 coinor-libosi1v5 amd64 0.108.6+repack1-2 [276 kB] -#42 10.31 Get:197 http://deb.debian.org/debian bookworm/main amd64 coinor-libclp1 amd64 1.17.6-3 [843 kB] -#42 10.37 Get:198 http://deb.debian.org/debian bookworm/main amd64 coinor-libcgl1 amd64 0.60.3+repack1-4 [409 kB] -#42 10.42 Get:199 http://deb.debian.org/debian bookworm/main amd64 coinor-libcbc3 amd64 2.10.8+ds1-1 [715 kB] -#42 10.47 Get:200 http://deb.debian.org/debian bookworm/main amd64 coinor-libcoinmp1v5 amd64 1.8.3-3 [31.6 kB] -#42 10.50 Get:201 http://deb.debian.org/debian bookworm/main amd64 java-common all 0.74 [6388 B] -#42 10.53 Get:202 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB] -#42 10.56 Get:203 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB] -#42 10.60 Get:204 http://deb.debian.org/debian bookworm/main amd64 libpcsclite1 amd64 1.9.9-2 [49.7 kB] -#42 10.64 Get:205 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre-headless amd64 17.0.14+7-1~deb12u1 [43.8 MB] -#42 11.62 Get:206 http://deb.debian.org/debian bookworm/main amd64 default-jre-headless amd64 2:1.17-74 [2936 B] -#42 11.62 Get:207 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-common all 2.24.33-2+deb12u1 [2660 kB] -#42 11.67 Get:208 http://deb.debian.org/debian bookworm/main amd64 libatk1.0-0 amd64 2.46.0-5 [49.6 kB] -#42 11.68 Get:209 http://deb.debian.org/debian bookworm/main amd64 libfribidi0 amd64 1.0.8-2.1 [65.0 kB] -#42 11.69 Get:210 http://deb.debian.org/debian bookworm/main amd64 libthai-data all 0.1.29-1 [176 kB] -#42 11.72 Get:211 http://deb.debian.org/debian bookworm/main amd64 libdatrie1 amd64 0.2.13-2+b1 [43.3 kB] -#42 11.75 Get:212 http://deb.debian.org/debian bookworm/main amd64 libthai0 amd64 0.1.29-1 [57.5 kB] -#42 11.79 Get:213 http://deb.debian.org/debian bookworm/main amd64 libpango-1.0-0 amd64 1.50.12+ds-1 [212 kB] -#42 11.82 Get:214 http://deb.debian.org/debian bookworm/main amd64 libpangoft2-1.0-0 amd64 1.50.12+ds-1 [47.4 kB] -#42 11.85 Get:215 http://deb.debian.org/debian bookworm/main amd64 libpangocairo-1.0-0 amd64 1.50.12+ds-1 [34.2 kB] -#42 11.89 Get:216 http://deb.debian.org/debian bookworm/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -#42 11.92 Get:217 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB] -#42 11.96 Get:218 http://deb.debian.org/debian bookworm/main amd64 libxcursor1 amd64 1:1.2.1-1 [40.9 kB] -#42 11.99 Get:219 http://deb.debian.org/debian bookworm/main amd64 libxdamage1 amd64 1:1.1.6-1 [15.1 kB] -#42 12.02 Get:220 http://deb.debian.org/debian bookworm/main amd64 libxi6 amd64 2:1.8-1+b1 [84.2 kB] -#42 12.06 Get:221 http://deb.debian.org/debian bookworm/main amd64 libgtk2.0-0 amd64 2.24.33-2+deb12u1 [1811 kB] -#42 12.14 Get:222 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB] -#42 12.17 Get:223 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B] -#42 12.21 Get:224 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB] -#42 12.25 Get:225 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB] -#42 12.28 Get:226 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB] -#42 12.32 Get:227 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB] -#42 12.36 Get:228 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] -#42 12.40 Get:229 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] -#42 12.44 Get:230 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] -#42 12.48 Get:231 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] -#42 12.52 Get:232 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] -#42 12.57 Get:233 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -#42 12.60 Get:234 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -#42 12.70 Get:235 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] -#42 12.72 Get:236 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] -#42 12.74 Get:237 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] -#42 12.76 Get:238 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] -#42 12.79 Get:239 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] -#42 12.81 Get:240 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] -#42 12.83 Get:241 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] -#42 13.00 Get:242 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] -#42 13.49 Get:243 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] -#42 13.52 Get:244 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] -#42 13.54 Get:245 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] -#42 13.74 Get:246 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] -#42 13.77 Get:247 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] -#42 13.79 Get:248 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] -#42 13.82 Get:249 http://deb.debian.org/debian bookworm/main amd64 libgif7 amd64 5.2.1-2.5 [46.9 kB] -#42 13.85 Get:250 http://deb.debian.org/debian bookworm/main amd64 libxtst6 amd64 2:1.2.3-1.1 [28.0 kB] -#42 13.88 Get:251 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre amd64 17.0.14+7-1~deb12u1 [210 kB] -#42 13.90 Get:252 http://deb.debian.org/debian bookworm/main amd64 default-jre amd64 2:1.17-74 [1056 B] -#42 13.94 Get:253 http://deb.debian.org/debian bookworm/main amd64 libabw-0.1-1 amd64 0.1.3-1 [128 kB] -#42 13.97 Get:254 http://deb.debian.org/debian bookworm/main amd64 libarchive13 amd64 3.6.2-1+deb12u2 [343 kB] -#42 14.02 Get:255 http://deb.debian.org/debian bookworm/main amd64 libbox2d2 amd64 2.4.1-3 [97.1 kB] -#42 14.06 Get:256 http://deb.debian.org/debian bookworm/main amd64 libcdr-0.1-1 amd64 0.1.6-2+b2 [392 kB] -#42 14.13 Get:257 http://deb.debian.org/debian bookworm/main amd64 libsuitesparseconfig5 amd64 1:5.12.0+dfsg-2 [23.9 kB] -#42 14.16 Get:258 http://deb.debian.org/debian bookworm/main amd64 libcolamd2 amd64 1:5.12.0+dfsg-2 [32.9 kB] -#42 14.19 Get:259 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u8 [390 kB] -#42 14.24 Get:260 http://deb.debian.org/debian bookworm/main amd64 libe-book-0.1-1 amd64 0.1.3-2+b2 [198 kB] -#42 14.29 Get:261 http://deb.debian.org/debian bookworm/main amd64 libepubgen-0.1-1 amd64 0.1.1-1 [153 kB] -#42 14.32 Get:262 http://deb.debian.org/debian bookworm/main amd64 libetonyek-0.1-1 amd64 0.1.10-3+b1 [803 kB] -#42 14.38 Get:263 http://deb.debian.org/debian bookworm/main amd64 libfreehand-0.1-1 amd64 0.1.2-3 [267 kB] -#42 14.41 Get:264 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-glx amd64 22.3.6-1+deb12u1 [14.5 kB] -#42 14.45 Get:265 http://deb.debian.org/debian bookworm/main amd64 libjemalloc2 amd64 5.3.0-1 [275 kB] -#42 14.49 Get:266 http://deb.debian.org/debian bookworm/main amd64 libjemalloc-dev amd64 5.3.0-1 [494 kB] -#42 14.54 Get:267 http://deb.debian.org/debian bookworm/main amd64 libwebpmux3 amd64 1.2.4-0.2+deb12u1 [109 kB] -#42 14.59 Get:268 http://deb.debian.org/debian bookworm/main amd64 liblept5 amd64 1.82.0-3+b3 [1050 kB] -#42 14.66 Get:269 http://deb.debian.org/debian bookworm/main amd64 libmspub-0.1-1 amd64 0.1.4-3+b3 [174 kB] -#42 14.70 Get:270 http://deb.debian.org/debian bookworm/main amd64 libmwaw-0.3-3 amd64 0.3.21-1 [2606 kB] -#42 14.82 Get:271 http://deb.debian.org/debian bookworm/main amd64 libodfgen-0.1-1 amd64 0.1.8-2 [293 kB] -#42 14.87 Get:272 http://deb.debian.org/debian bookworm/main amd64 libpagemaker-0.0-0 amd64 0.0.4-1 [79.6 kB] -#42 14.91 Get:273 http://deb.debian.org/debian bookworm/main amd64 libpq5 amd64 15.10-0+deb12u1 [191 kB] -#42 14.96 Get:274 http://deb.debian.org/debian bookworm/main amd64 libssl-dev amd64 3.0.15-1~deb12u1 [2439 kB] -#42 15.08 Get:275 http://deb.debian.org/debian bookworm/main amd64 libpq-dev amd64 15.10-0+deb12u1 [145 kB] -#42 15.13 Get:276 http://deb.debian.org/debian bookworm/main amd64 libpython3.11 amd64 3.11.2-6+deb12u5 [1988 kB] -#42 15.23 Get:277 http://deb.debian.org/debian bookworm/main amd64 libqxp-0.0-0 amd64 0.0.2-1+b3 [125 kB] -#42 15.28 Get:278 http://deb.debian.org/debian bookworm/main amd64 lp-solve amd64 5.5.2.5-2 [293 kB] -#42 15.34 Get:279 http://deb.debian.org/debian bookworm/main amd64 libstaroffice-0.0-0 amd64 0.0.7-1 [728 kB] -#42 15.43 Get:280 http://deb.debian.org/debian bookworm/main amd64 libwps-0.4-4 amd64 0.4.13-1 [886 kB] -#42 15.48 Get:281 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-calc amd64 4:7.4.7-1+deb12u6 [7406 kB] -#42 15.73 Get:282 http://deb.debian.org/debian bookworm/main amd64 libvisio-0.1-1 amd64 0.1.7-1+b3 [304 kB] -#42 15.78 Get:283 http://deb.debian.org/debian bookworm/main amd64 libwpd-0.10-10 amd64 0.10.3-2+b1 [261 kB] -#42 15.83 Get:284 http://deb.debian.org/debian bookworm/main amd64 libwpg-0.3-3 amd64 0.3.3-1 [76.3 kB] -#42 15.87 Get:285 http://deb.debian.org/debian bookworm/main amd64 libzmf-0.0-0 amd64 0.0.2-1+b5 [84.2 kB] -#42 15.90 Get:286 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-draw amd64 4:7.4.7-1+deb12u6 [2701 kB] -#42 16.03 Get:287 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-impress amd64 4:7.4.7-1+deb12u6 [1117 kB] -#42 16.10 Get:288 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-math amd64 4:7.4.7-1+deb12u6 [539 kB] -#42 16.16 Get:289 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-report-builder-bin amd64 4:7.4.7-1+deb12u6 [826 kB] -#42 16.23 Get:290 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice-writer amd64 4:7.4.7-1+deb12u6 [9261 kB] -#42 ... - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 16.50 Selecting previously unselected package g++. -#48 16.51 Preparing to unpack .../059-g++_4%3a12.2.0-3_amd64.deb ... -#48 16.51 Unpacking g++ (4:12.2.0-3) ... -#48 16.52 Selecting previously unselected package make. -#48 16.52 Preparing to unpack .../060-make_4.3-4.1_amd64.deb ... -#48 16.52 Unpacking make (4.3-4.1) ... -#48 16.56 Selecting previously unselected package libdpkg-perl. -#48 16.56 Preparing to unpack .../061-libdpkg-perl_1.21.22_all.deb ... -#48 16.57 Unpacking libdpkg-perl (1.21.22) ... -#48 16.62 Selecting previously unselected package patch. -#48 16.62 Preparing to unpack .../062-patch_2.7.6-7_amd64.deb ... -#48 16.62 Unpacking patch (2.7.6-7) ... -#48 16.64 Selecting previously unselected package dpkg-dev. -#48 16.64 Preparing to unpack .../063-dpkg-dev_1.21.22_all.deb ... -#48 16.64 Unpacking dpkg-dev (1.21.22) ... -#48 16.74 Selecting previously unselected package build-essential. -#48 16.74 Preparing to unpack .../064-build-essential_12.9_amd64.deb ... -#48 16.74 Unpacking build-essential (12.9) ... -#48 16.75 Selecting previously unselected package ca-certificates-java. -#48 16.76 Preparing to unpack .../065-ca-certificates-java_20230710~deb12u1_all.deb ... -#48 16.76 Unpacking ca-certificates-java (20230710~deb12u1) ... -#48 16.77 Selecting previously unselected package java-common. -#48 16.78 Preparing to unpack .../066-java-common_0.74_all.deb ... -#48 16.78 Unpacking java-common (0.74) ... -#48 16.79 Selecting previously unselected package libavahi-common-data:amd64. -#48 16.79 Preparing to unpack .../067-libavahi-common-data_0.8-10+deb12u1_amd64.deb ... -#48 16.79 Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ... -#48 16.86 Selecting previously unselected package libavahi-common3:amd64. -#48 16.86 Preparing to unpack .../068-libavahi-common3_0.8-10+deb12u1_amd64.deb ... -#48 16.86 Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ... -#48 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#0 1.693 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#0 1.832 Collecting pip -#0 1.891 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#0 1.894 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#0 2.168 Collecting setuptools -#0 2.183 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#0 2.242 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#0 2.343 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 18.7 MB/s eta 0:00:00 -#0 2.352 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#0 2.386 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 38.6 MB/s eta 0:00:00 -#0 2.514 Installing collected packages: setuptools, pip -#0 2.514 Attempting uninstall: setuptools -#0 2.517 Found existing installation: setuptools 65.5.1 -#0 2.536 Uninstalling setuptools-65.5.1: -#0 2.610 Successfully uninstalled setuptools-65.5.1 -#0 3.393 Attempting uninstall: pip -#0 3.396 Found existing installation: pip 24.0 -#0 3.448 Uninstalling pip-24.0: -#0 3.606 Successfully uninstalled pip-24.0 -#0 4.456 Successfully installed pip-25.0 setuptools-75.8.0 -#0 4.456 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#0 5.457 Collecting datasets (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 5.518 Downloading datasets-3.2.0-py3-none-any.whl.metadata (20 kB) -#0 5.697 Collecting fastapi (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) -#0 5.706 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#0 5.856 Collecting huggingface_hub (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 4)) -#0 5.867 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#0 6.024 Collecting langchain-core (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#0 6.037 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) -#0 6.091 Collecting opentelemetry-api (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) -#0 6.100 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) -#0 6.145 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) -#0 6.155 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#0 6.201 Collecting opentelemetry-sdk (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 8)) -#0 6.212 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) -#0 6.253 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 10)) -#0 6.262 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#0 6.458 Collecting pydantic==2.7.2 (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) -#0 6.470 Downloading pydantic-2.7.2-py3-none-any.whl.metadata (108 kB) -#0 6.599 Collecting pydub (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 12)) -#0 6.608 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) -#0 6.658 Collecting shortuuid (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 13)) -#0 6.670 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#0 6.742 Collecting uvicorn (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 14)) -#0 6.751 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#0 6.940 Collecting docarray[full] (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#0 6.953 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#0 7.021 Collecting optimum[habana] (from -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#0 7.033 Downloading optimum-1.24.0-py3-none-any.whl.metadata (21 kB) -#0 7.101 Collecting annotated-types>=0.4.0 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) -#0 7.110 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#0 8.156 Collecting pydantic-core==2.18.3 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) -#0 8.171 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) -#0 8.225 Collecting typing-extensions>=4.6.1 (from pydantic==2.7.2->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 11)) -#0 8.235 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#0 8.306 Collecting filelock (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 8.315 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#0 8.657 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 8.667 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#0 8.847 Collecting pyarrow>=15.0.0 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 8.859 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) -#0 8.906 Collecting dill<0.3.9,>=0.3.0 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 8.916 Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB) -#0 9.125 Collecting pandas (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 9.138 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) -#0 9.266 Collecting requests>=2.32.2 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 9.275 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#0 9.366 Collecting tqdm>=4.66.3 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 9.376 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#0 9.617 Collecting xxhash (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 9.729 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) -#0 9.792 Collecting multiprocess<0.70.17 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 9.802 Downloading multiprocess-0.70.16-py311-none-any.whl.metadata (7.2 kB) -#0 9.866 Collecting fsspec<=2024.9.0,>=2023.1.0 (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#0 9.880 Downloading fsspec-2024.9.0-py3-none-any.whl.metadata (11 kB) -#58 ... - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 16.88 Selecting previously unselected package libdbus-1-3:amd64. -#48 16.88 Preparing to unpack .../069-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ... -#48 16.88 Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... -#48 16.91 Selecting previously unselected package libavahi-client3:amd64. -#48 16.91 Preparing to unpack .../070-libavahi-client3_0.8-10+deb12u1_amd64.deb ... -#48 16.91 Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ... -#48 16.92 Selecting previously unselected package libcups2:amd64. -#48 16.93 Preparing to unpack .../071-libcups2_2.4.2-3+deb12u8_amd64.deb ... -#48 16.93 Unpacking libcups2:amd64 (2.4.2-3+deb12u8) ... -#48 16.96 Selecting previously unselected package libexpat1:amd64. -#48 16.96 Preparing to unpack .../072-libexpat1_2.5.0-1+deb12u1_amd64.deb ... -#48 16.96 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... -#48 16.98 Selecting previously unselected package libbrotli1:amd64. -#48 16.98 Preparing to unpack .../073-libbrotli1_1.0.9-2+b6_amd64.deb ... -#48 16.98 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... -#48 17.02 Selecting previously unselected package libfreetype6:amd64. -#48 17.02 Preparing to unpack .../074-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... -#48 17.02 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#48 17.06 Selecting previously unselected package fonts-dejavu-core. -#48 17.06 Preparing to unpack .../075-fonts-dejavu-core_2.37-6_all.deb ... -#48 17.06 Unpacking fonts-dejavu-core (2.37-6) ... -#48 17.15 Selecting previously unselected package fontconfig-config. -#48 17.15 Preparing to unpack .../076-fontconfig-config_2.14.1-4_amd64.deb ... -#48 17.26 Unpacking fontconfig-config (2.14.1-4) ... -#48 17.28 Selecting previously unselected package libfontconfig1:amd64. -#48 17.29 Preparing to unpack .../077-libfontconfig1_2.14.1-4_amd64.deb ... -#48 17.29 Unpacking libfontconfig1:amd64 (2.14.1-4) ... -#48 17.31 Selecting previously unselected package liblcms2-2:amd64. -#48 17.32 Preparing to unpack .../078-liblcms2-2_2.14-2_amd64.deb ... -#48 17.32 Unpacking liblcms2-2:amd64 (2.14-2) ... -#48 17.34 Selecting previously unselected package libnspr4:amd64. -#48 17.34 Preparing to unpack .../079-libnspr4_2%3a4.35-1_amd64.deb ... -#48 17.34 Unpacking libnspr4:amd64 (2:4.35-1) ... -#48 17.37 Selecting previously unselected package libnss3:amd64. -#48 17.37 Preparing to unpack .../080-libnss3_2%3a3.87.1-1+deb12u1_amd64.deb ... -#48 17.37 Unpacking libnss3:amd64 (2:3.87.1-1+deb12u1) ... -#48 17.47 Selecting previously unselected package libasound2-data. -#48 17.47 Preparing to unpack .../081-libasound2-data_1.2.8-1_all.deb ... -#48 17.47 Unpacking libasound2-data (1.2.8-1) ... -#48 17.50 Selecting previously unselected package libasound2:amd64. -#48 17.50 Preparing to unpack .../082-libasound2_1.2.8-1+b1_amd64.deb ... -#48 17.50 Unpacking libasound2:amd64 (1.2.8-1+b1) ... -#48 17.54 Selecting previously unselected package libgraphite2-3:amd64. -#48 17.54 Preparing to unpack .../083-libgraphite2-3_1.3.14-1_amd64.deb ... -#48 17.55 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -#48 17.57 Selecting previously unselected package libharfbuzz0b:amd64. -#48 17.57 Preparing to unpack .../084-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ... -#48 17.57 Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... -#48 17.63 Selecting previously unselected package libpcsclite1:amd64. -#48 17.63 Preparing to unpack .../085-libpcsclite1_1.9.9-2_amd64.deb ... -#48 17.63 Unpacking libpcsclite1:amd64 (1.9.9-2) ... -#48 17.65 Selecting previously unselected package openjdk-17-jre-headless:amd64. -#48 17.65 Preparing to unpack .../086-openjdk-17-jre-headless_17.0.14+7-1~deb12u1_amd64.deb ... -#48 17.65 Unpacking openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... -#48 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 1.764 Requirement already satisfied: pip in /usr/local/lib/python3.10/site-packages (23.0.1) -#44 2.021 Collecting pip -#44 2.087 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#44 2.213 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 15.3 MB/s eta 0:00:00 -#44 2.284 Installing collected packages: pip -#44 2.284 Attempting uninstall: pip -#44 2.285 Found existing installation: pip 23.0.1 -#44 2.482 Uninstalling pip-23.0.1: -#44 2.691 Successfully uninstalled pip-23.0.1 -#44 3.742 Successfully installed pip-25.0 -#44 3.742 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#44 4.686 Collecting fastapi (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) -#44 4.747 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#44 4.847 Collecting huggingface_hub (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 4.857 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#44 5.150 Collecting langchain (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 5.162 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) -#44 5.283 Collecting opentelemetry-api (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) -#44 5.297 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) -#44 5.349 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) -#44 5.360 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#44 5.473 Collecting opentelemetry-sdk (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 7)) -#44 5.483 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) -#44 5.529 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 8)) -#44 5.539 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#44 5.766 Collecting pydantic==2.8.2 (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) -#44 5.776 Downloading pydantic-2.8.2-py3-none-any.whl.metadata (125 kB) -#44 5.907 Collecting shortuuid (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 10)) -#44 5.928 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#44 6.044 Collecting torch (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 6.057 Downloading torch-2.6.0-cp310-cp310-manylinux1_x86_64.whl.metadata (28 kB) -#44 6.175 Collecting torchvision (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 12)) -#44 6.185 Downloading torchvision-0.21.0-cp310-cp310-manylinux1_x86_64.whl.metadata (6.1 kB) -#44 6.275 Collecting transformers (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) -#44 6.286 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) -#44 6.694 Collecting uvicorn (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 14)) -#44 6.703 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#44 6.892 Collecting docarray[full] (from -r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 6.920 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#44 6.975 Collecting annotated-types>=0.4.0 (from pydantic==2.8.2->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) -#44 6.986 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#44 7.963 Collecting pydantic-core==2.20.1 (from pydantic==2.8.2->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) -#44 7.974 Downloading pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#44 8.025 Collecting typing-extensions>=4.6.1 (from pydantic==2.8.2->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 9)) -#44 8.034 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#44 8.348 Collecting numpy>=1.17.3 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 8.359 Downloading numpy-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#44 8.819 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 8.829 Downloading orjson-3.10.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#44 8.935 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 8.946 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#44 9.021 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 9.031 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#44 9.080 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 9.089 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) -#44 9.199 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 9.211 Downloading av-14.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) -#44 9.282 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 9.292 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) -#44 9.437 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 9.449 Downloading lz4-4.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#44 9.715 Collecting pandas>=1.1.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 9.725 Downloading pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) -#44 10.14 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 10.15 Downloading pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#44 10.49 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 10.50 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#44 10.56 Collecting pydub<0.26.0,>=0.25.1 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 10.57 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) -#44 10.77 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 10.78 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) -#44 10.87 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 10.88 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) -#44 11.03 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) -#44 11.04 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#44 11.16 Collecting filelock (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 11.17 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#44 11.23 Collecting fsspec>=2023.5.0 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 11.24 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) -#44 11.35 Collecting packaging>=20.9 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 11.36 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#44 11.48 Collecting pyyaml>=5.1 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 11.49 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#44 11.57 Collecting requests (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 11.58 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#44 11.67 Collecting tqdm>=4.42.1 (from huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 11.68 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#44 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 10.82 Collecting aiohttp (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 10.83 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#58 10.91 Collecting packaging (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 10.92 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#58 11.04 Collecting pyyaml>=5.1 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 11.05 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#58 11.20 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 11.22 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) -#58 11.29 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 11.30 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) -#58 11.46 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 11.47 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#58 12.13 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 12.14 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#58 12.55 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 12.56 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#58 12.98 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 12.99 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#58 13.12 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 13.13 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#58 13.39 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 13.40 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) -#58 13.48 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 13.49 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) -#58 13.57 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 13.58 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#58 13.63 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 13.64 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) -#58 13.73 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) -#58 13.74 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#58 13.88 Collecting jsonpatch<2.0,>=1.33 (from langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 13.89 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) -#58 14.03 Collecting langsmith<0.4,>=0.1.125 (from langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 14.04 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) -#58 14.14 Collecting tenacity!=8.4.0,<10.0.0,>=8.1.0 (from langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 14.15 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) -#58 14.21 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) -#58 14.22 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#58 14.31 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) -#58 14.32 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) -#58 14.39 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) -#58 14.40 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#58 14.45 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) -#58 14.46 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#58 14.53 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) -#58 14.54 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#58 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 10.23 Get:173 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB] -#49 10.26 Get:174 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB] -#49 10.30 Get:175 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB] -#49 10.33 Get:176 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB] -#49 10.37 Get:177 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB] -#49 10.42 Get:178 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -#49 10.47 Get:179 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -#49 10.54 Get:180 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB] -#49 10.55 Get:181 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB] -#49 10.58 Get:182 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB] -#49 10.63 Get:183 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB] -#49 10.67 Get:184 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB] -#49 10.75 Get:185 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB] -#49 10.79 Get:186 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB] -#49 10.84 Get:187 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB] -#49 11.03 Get:188 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB] -#49 11.41 Get:189 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB] -#49 11.44 Get:190 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB] -#49 11.48 Get:191 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB] -#49 11.64 Get:192 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB] -#49 11.67 Get:193 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB] -#49 11.71 Get:194 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB] -#49 11.75 Get:195 http://deb.debian.org/debian bookworm/main amd64 libiec61883-0 amd64 1.2.0-6+b1 [30.5 kB] -#49 11.80 Get:196 http://deb.debian.org/debian bookworm/main amd64 libsamplerate0 amd64 0.2.2-3 [952 kB] -#49 11.86 Get:197 http://deb.debian.org/debian bookworm/main amd64 libjack-jackd2-0 amd64 1.9.21~dfsg-3 [281 kB] -#49 11.91 Get:198 http://deb.debian.org/debian bookworm/main amd64 libopenal-data all 1:1.19.1-2 [170 kB] -#49 11.96 Get:199 http://deb.debian.org/debian bookworm/main amd64 libsndio7.0 amd64 1.9.0-0.3+b2 [27.3 kB] -#49 12.01 Get:200 http://deb.debian.org/debian bookworm/main amd64 libopenal1 amd64 1:1.19.1-2 [501 kB] -#49 12.07 Get:201 http://deb.debian.org/debian bookworm/main amd64 libwayland-client0 amd64 1.21.0-1 [28.3 kB] -#49 12.12 Get:202 http://deb.debian.org/debian bookworm/main amd64 libdecor-0-0 amd64 0.1.1-2 [14.6 kB] -#49 12.17 Get:203 http://deb.debian.org/debian bookworm/main amd64 libwayland-server0 amd64 1.21.0-1 [35.9 kB] -#49 12.22 Get:204 http://deb.debian.org/debian bookworm/main amd64 libgbm1 amd64 22.3.6-1+deb12u1 [38.0 kB] -#49 12.30 Get:205 http://deb.debian.org/debian bookworm/main amd64 libwayland-cursor0 amd64 1.21.0-1 [14.4 kB] -#49 12.35 Get:206 http://deb.debian.org/debian bookworm/main amd64 libwayland-egl1 amd64 1.21.0-1 [8640 B] -#49 12.38 Get:207 http://deb.debian.org/debian bookworm/main amd64 libxcursor1 amd64 1:1.2.1-1 [40.9 kB] -#49 12.41 Get:208 http://deb.debian.org/debian bookworm/main amd64 libxi6 amd64 2:1.8-1+b1 [84.2 kB] -#49 12.44 Get:209 http://deb.debian.org/debian bookworm/main amd64 xkb-data all 2.35.1-1 [764 kB] -#49 12.49 Get:210 http://deb.debian.org/debian bookworm/main amd64 libxkbcommon0 amd64 1.5.0-1 [106 kB] -#49 12.52 Get:211 http://deb.debian.org/debian bookworm/main amd64 libxrandr2 amd64 2:1.5.2-2+b1 [39.2 kB] -#49 12.55 Get:212 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB] -#49 12.60 Get:213 http://deb.debian.org/debian bookworm/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB] -#49 12.64 Get:214 http://deb.debian.org/debian bookworm/main amd64 libsdl2-2.0-0 amd64 2.26.5+dfsg-1 [629 kB] -#49 12.69 Get:215 http://deb.debian.org/debian bookworm/main amd64 libxcb-shape0 amd64 1.15-1 [106 kB] -#49 12.74 Get:216 http://deb.debian.org/debian bookworm/main amd64 libxv1 amd64 2:1.0.11-1.1 [24.8 kB] -#49 12.79 Get:217 http://deb.debian.org/debian bookworm/main amd64 libavdevice59 amd64 7:5.1.6-0+deb12u1 [116 kB] -#49 12.84 Get:218 http://deb.debian.org/debian bookworm/main amd64 ffmpeg amd64 7:5.1.6-0+deb12u1 [1816 kB] -#49 12.94 Get:219 http://deb.debian.org/debian bookworm/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -#49 13.04 Get:220 http://deb.debian.org/debian bookworm/main amd64 libigdgmm12 amd64 22.3.3+ds1-1 [139 kB] -#49 13.08 Get:221 http://deb.debian.org/debian bookworm/main amd64 intel-media-va-driver amd64 23.1.1+dfsg1-1 [2882 kB] -#49 13.19 Get:222 http://deb.debian.org/debian bookworm/main amd64 libaacs0 amd64 0.11.1-2 [57.1 kB] -#49 13.23 Get:223 http://deb.debian.org/debian bookworm/main amd64 libbdplus0 amd64 0.2.0-3 [52.6 kB] -#49 13.27 Get:224 http://deb.debian.org/debian bookworm/main amd64 libdecor-0-plugin-1-cairo amd64 0.1.1-2 [20.1 kB] -#49 13.30 Get:225 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.10+dfsg-1+deb12u1 [17.7 kB] -#49 13.34 Get:226 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-data all 2.74.6-2+deb12u5 [1209 kB] -#49 13.40 Get:227 http://deb.debian.org/debian bookworm/main amd64 libldap-common all 2.5.13+dfsg-5 [29.3 kB] -#49 13.43 Get:228 http://deb.debian.org/debian bookworm/main amd64 librsvg2-common amd64 2.54.7+dfsg-1~deb12u1 [21.4 kB] -#49 13.46 Get:229 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules amd64 2.1.28+dfsg-10 [66.6 kB] -#49 13.51 Get:230 http://deb.debian.org/debian bookworm/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -#49 13.55 Get:231 http://deb.debian.org/debian bookworm/main amd64 mesa-va-drivers amd64 22.3.6-1+deb12u1 [3299 kB] -#49 13.72 Get:232 http://deb.debian.org/debian bookworm/main amd64 mesa-vdpau-drivers amd64 22.3.6-1+deb12u1 [3181 kB] -#49 13.91 Get:233 http://deb.debian.org/debian bookworm/main amd64 mesa-vulkan-drivers amd64 22.3.6-1+deb12u1 [8000 kB] -#49 14.26 Get:234 http://deb.debian.org/debian bookworm/main amd64 pocketsphinx-en-us all 0.8+5prealpha+1-15 [24.3 MB] -#49 15.81 Get:235 http://deb.debian.org/debian bookworm/main amd64 publicsuffix all 20230209.2326-1 [126 kB] -#49 15.84 Get:236 http://deb.debian.org/debian bookworm/main amd64 va-driver-all amd64 2.17.0-1 [12.8 kB] -#49 15.88 Get:237 http://deb.debian.org/debian bookworm/main amd64 vdpau-driver-all amd64 1.5-2 [4348 B] -#49 15.93 Get:238 http://deb.debian.org/debian bookworm/main amd64 xdg-user-dirs amd64 0.18-1 [54.4 kB] -#49 16.00 perl: warning: Setting locale failed. -#49 16.00 perl: warning: Please check that your locale settings: -#49 16.00 LANGUAGE = (unset), -#49 16.00 LC_ALL = (unset), -#49 16.00 LANG = "en_US.UTF-8" -#49 16.00 are supported and installed on your system. -#49 16.00 perl: warning: Falling back to the standard locale ("C"). -#49 16.06 debconf: delaying package configuration, since apt-utils is not installed -#49 16.09 Fetched 182 MB in 11s (16.1 MB/s) -#49 16.10 Selecting previously unselected package libdbus-1-3:amd64. -#49 16.10 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) -#49 16.11 Preparing to unpack .../0-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ... -#49 16.11 Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... -#49 16.13 Selecting previously unselected package dbus-bin. -#49 16.13 Preparing to unpack .../1-dbus-bin_1.14.10-1~deb12u1_amd64.deb ... -#49 16.13 Unpacking dbus-bin (1.14.10-1~deb12u1) ... -#49 16.15 Selecting previously unselected package dbus-session-bus-common. -#49 16.15 Preparing to unpack .../2-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ... -#49 16.15 Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) ... -#49 16.17 Selecting previously unselected package libapparmor1:amd64. -#49 16.17 Preparing to unpack .../3-libapparmor1_3.0.8-3_amd64.deb ... -#49 16.17 Unpacking libapparmor1:amd64 (3.0.8-3) ... -#49 16.18 Selecting previously unselected package libexpat1:amd64. -#49 16.18 Preparing to unpack .../4-libexpat1_2.5.0-1+deb12u1_amd64.deb ... -#49 16.18 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... -#49 16.20 Selecting previously unselected package dbus-daemon. -#49 16.20 Preparing to unpack .../5-dbus-daemon_1.14.10-1~deb12u1_amd64.deb ... -#49 16.21 Unpacking dbus-daemon (1.14.10-1~deb12u1) ... -#49 16.23 Selecting previously unselected package dbus-system-bus-common. -#49 16.23 Preparing to unpack .../6-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ... -#49 16.23 Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) ... -#49 16.25 Selecting previously unselected package dbus. -#49 16.25 Preparing to unpack .../7-dbus_1.14.10-1~deb12u1_amd64.deb ... -#49 16.25 Unpacking dbus (1.14.10-1~deb12u1) ... -#49 16.28 Selecting previously unselected package libpython3.11-minimal:amd64. -#49 16.28 Preparing to unpack .../8-libpython3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... -#49 16.28 Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... -#49 16.35 Selecting previously unselected package python3.11-minimal. -#49 16.35 Preparing to unpack .../9-python3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... -#49 16.35 Unpacking python3.11-minimal (3.11.2-6+deb12u5) ... -#49 16.52 Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... -#49 16.53 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... -#49 16.53 Setting up python3.11-minimal (3.11.2-6+deb12u5) ... -#49 17.16 Selecting previously unselected package python3-minimal. -#49 17.16 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 7088 files and directories currently installed.) -#49 17.16 Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ... -#49 17.16 Unpacking python3-minimal (3.11.2-1+b1) ... -#49 17.18 Selecting previously unselected package media-types. -#49 17.18 Preparing to unpack .../media-types_10.0.0_all.deb ... -#49 17.18 Unpacking media-types (10.0.0) ... -#49 17.19 Selecting previously unselected package libpython3.11-stdlib:amd64. -#49 17.19 Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u5_amd64.deb ... -#49 17.19 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... -#49 17.33 Selecting previously unselected package python3.11. -#49 17.33 Preparing to unpack .../python3.11_3.11.2-6+deb12u5_amd64.deb ... -#49 17.33 Unpacking python3.11 (3.11.2-6+deb12u5) ... -#49 17.36 Selecting previously unselected package libpython3-stdlib:amd64. -#49 17.36 Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ... -#49 17.36 Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ... -#49 17.37 Setting up python3-minimal (3.11.2-1+b1) ... -#49 17.52 Selecting previously unselected package python3. -#49 17.52 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 7498 files and directories currently installed.) -#49 17.53 Preparing to unpack .../000-python3_3.11.2-1+b1_amd64.deb ... -#49 17.53 Unpacking python3 (3.11.2-1+b1) ... -#49 17.55 Selecting previously unselected package alsa-topology-conf. -#49 17.55 Preparing to unpack .../001-alsa-topology-conf_1.2.5.1-2_all.deb ... -#49 17.55 Unpacking alsa-topology-conf (1.2.5.1-2) ... -#49 17.57 Selecting previously unselected package libasound2-data. -#49 17.57 Preparing to unpack .../002-libasound2-data_1.2.8-1_all.deb ... -#49 17.57 Unpacking libasound2-data (1.2.8-1) ... -#49 17.59 Selecting previously unselected package libasound2:amd64. -#49 17.59 Preparing to unpack .../003-libasound2_1.2.8-1+b1_amd64.deb ... -#49 17.59 Unpacking libasound2:amd64 (1.2.8-1+b1) ... -#49 17.63 Selecting previously unselected package alsa-ucm-conf. -#49 17.63 Preparing to unpack .../004-alsa-ucm-conf_1.2.8-1_all.deb ... -#49 17.63 Unpacking alsa-ucm-conf (1.2.8-1) ... -#49 17.71 Selecting previously unselected package libbrotli1:amd64. -#49 17.71 Preparing to unpack .../005-libbrotli1_1.0.9-2+b6_amd64.deb ... -#49 17.71 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... -#49 17.74 Selecting previously unselected package libsasl2-modules-db:amd64. -#49 17.74 Preparing to unpack .../006-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... -#49 17.75 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#49 17.76 Selecting previously unselected package libsasl2-2:amd64. -#49 17.76 Preparing to unpack .../007-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... -#49 17.76 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#49 17.78 Selecting previously unselected package libldap-2.5-0:amd64. -#49 17.78 Preparing to unpack .../008-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... -#49 17.78 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#49 17.81 Selecting previously unselected package libnghttp2-14:amd64. -#49 17.81 Preparing to unpack .../009-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... -#49 17.81 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#49 17.82 Selecting previously unselected package libpsl5:amd64. -#49 17.83 Preparing to unpack .../010-libpsl5_0.21.2-1_amd64.deb ... -#49 17.83 Unpacking libpsl5:amd64 (0.21.2-1) ... -#49 17.84 Selecting previously unselected package librtmp1:amd64. -#49 17.84 Preparing to unpack .../011-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... -#49 17.84 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#49 17.86 Selecting previously unselected package libssh2-1:amd64. -#49 17.86 Preparing to unpack .../012-libssh2-1_1.10.0-3+b1_amd64.deb ... -#49 17.86 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... -#49 17.89 Selecting previously unselected package libcurl4:amd64. -#49 17.89 Preparing to unpack .../013-libcurl4_7.88.1-10+deb12u8_amd64.deb ... -#49 17.89 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... -#49 17.92 Selecting previously unselected package curl. -#49 17.92 Preparing to unpack .../014-curl_7.88.1-10+deb12u8_amd64.deb ... -#49 17.92 Unpacking curl (7.88.1-10+deb12u8) ... -#49 17.95 Selecting previously unselected package libaom3:amd64. -#49 17.95 Preparing to unpack .../015-libaom3_3.6.0-1+deb12u1_amd64.deb ... -#49 17.96 Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... -#49 18.10 Selecting previously unselected package libdrm-common. -#49 18.10 Preparing to unpack .../016-libdrm-common_2.4.114-1_all.deb ... -#49 18.10 Unpacking libdrm-common (2.4.114-1) ... -#49 18.11 Selecting previously unselected package libdrm2:amd64. -#49 18.11 Preparing to unpack .../017-libdrm2_2.4.114-1+b1_amd64.deb ... -#49 18.11 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... -#49 18.13 Selecting previously unselected package libva2:amd64. -#49 18.13 Preparing to unpack .../018-libva2_2.17.0-1_amd64.deb ... -#49 18.13 Unpacking libva2:amd64 (2.17.0-1) ... -#49 18.15 Selecting previously unselected package libmfx1:amd64. -#49 18.15 Preparing to unpack .../019-libmfx1_22.5.4-1_amd64.deb ... -#49 18.15 Unpacking libmfx1:amd64 (22.5.4-1) ... -#49 18.41 Selecting previously unselected package libva-drm2:amd64. -#49 18.41 Preparing to unpack .../020-libva-drm2_2.17.0-1_amd64.deb ... -#49 18.41 Unpacking libva-drm2:amd64 (2.17.0-1) ... -#49 18.42 Selecting previously unselected package libxau6:amd64. -#49 18.42 Preparing to unpack .../021-libxau6_1%3a1.0.9-1_amd64.deb ... -#49 18.42 Unpacking libxau6:amd64 (1:1.0.9-1) ... -#49 18.44 Selecting previously unselected package libbsd0:amd64. -#49 18.44 Preparing to unpack .../022-libbsd0_0.11.7-2_amd64.deb ... -#49 18.44 Unpacking libbsd0:amd64 (0.11.7-2) ... -#49 18.46 Selecting previously unselected package libxdmcp6:amd64. -#49 18.46 Preparing to unpack .../023-libxdmcp6_1%3a1.1.2-3_amd64.deb ... -#49 18.46 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... -#49 18.47 Selecting previously unselected package libxcb1:amd64. -#49 18.47 Preparing to unpack .../024-libxcb1_1.15-1_amd64.deb ... -#49 18.47 Unpacking libxcb1:amd64 (1.15-1) ... -#49 18.49 Selecting previously unselected package libx11-data. -#49 18.49 Preparing to unpack .../025-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... -#49 18.49 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... -#49 18.54 Selecting previously unselected package libx11-6:amd64. -#49 18.54 Preparing to unpack .../026-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... -#49 18.54 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#49 18.60 Selecting previously unselected package libx11-xcb1:amd64. -#49 18.60 Preparing to unpack .../027-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... -#49 18.60 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#49 18.62 Selecting previously unselected package libxcb-dri3-0:amd64. -#49 18.62 Preparing to unpack .../028-libxcb-dri3-0_1.15-1_amd64.deb ... -#49 18.62 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... -#49 18.64 Selecting previously unselected package libxext6:amd64. -#49 18.64 Preparing to unpack .../029-libxext6_2%3a1.3.4-1+b1_amd64.deb ... -#49 18.64 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... -#49 18.65 Selecting previously unselected package libxfixes3:amd64. -#49 18.65 Preparing to unpack .../030-libxfixes3_1%3a6.0.0-2_amd64.deb ... -#49 18.66 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... -#49 18.67 Selecting previously unselected package libva-x11-2:amd64. -#49 18.67 Preparing to unpack .../031-libva-x11-2_2.17.0-1_amd64.deb ... -#49 18.67 Unpacking libva-x11-2:amd64 (2.17.0-1) ... -#49 18.68 Selecting previously unselected package libvdpau1:amd64. -#49 18.69 Preparing to unpack .../032-libvdpau1_1.5-2_amd64.deb ... -#49 18.69 Unpacking libvdpau1:amd64 (1.5-2) ... -#49 18.70 Selecting previously unselected package ocl-icd-libopencl1:amd64. -#49 18.70 Preparing to unpack .../033-ocl-icd-libopencl1_2.3.1-1_amd64.deb ... -#49 18.70 Unpacking ocl-icd-libopencl1:amd64 (2.3.1-1) ... -#49 18.72 Selecting previously unselected package libavutil57:amd64. -#49 18.72 Preparing to unpack .../034-libavutil57_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 18.72 Unpacking libavutil57:amd64 (7:5.1.6-0+deb12u1) ... -#49 18.76 Selecting previously unselected package libpng16-16:amd64. -#49 18.76 Preparing to unpack .../035-libpng16-16_1.6.39-2_amd64.deb ... -#49 18.76 Unpacking libpng16-16:amd64 (1.6.39-2) ... -#49 18.79 Selecting previously unselected package libfreetype6:amd64. -#49 18.79 Preparing to unpack .../036-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... -#49 18.79 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#49 18.83 Selecting previously unselected package fonts-dejavu-core. -#49 18.83 Preparing to unpack .../037-fonts-dejavu-core_2.37-6_all.deb ... -#49 18.83 Unpacking fonts-dejavu-core (2.37-6) ... -#49 18.92 Selecting previously unselected package fontconfig-config. -#49 18.92 Preparing to unpack .../038-fontconfig-config_2.14.1-4_amd64.deb ... -#49 19.01 Unpacking fontconfig-config (2.14.1-4) ... -#49 19.04 Selecting previously unselected package libfontconfig1:amd64. -#49 19.04 Preparing to unpack .../039-libfontconfig1_2.14.1-4_amd64.deb ... -#49 19.04 Unpacking libfontconfig1:amd64 (2.14.1-4) ... -#49 19.06 Selecting previously unselected package libpixman-1-0:amd64. -#49 19.07 Preparing to unpack .../040-libpixman-1-0_0.42.2-1_amd64.deb ... -#49 19.07 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... -#49 19.10 Selecting previously unselected package libxcb-render0:amd64. -#49 19.10 Preparing to unpack .../041-libxcb-render0_1.15-1_amd64.deb ... -#49 19.10 Unpacking libxcb-render0:amd64 (1.15-1) ... -#49 19.12 Selecting previously unselected package libxcb-shm0:amd64. -#49 19.12 Preparing to unpack .../042-libxcb-shm0_1.15-1_amd64.deb ... -#49 19.12 Unpacking libxcb-shm0:amd64 (1.15-1) ... -#49 19.14 Selecting previously unselected package libxrender1:amd64. -#49 19.15 Preparing to unpack .../043-libxrender1_1%3a0.9.10-1.1_amd64.deb ... -#49 19.15 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... -#49 19.16 Selecting previously unselected package libcairo2:amd64. -#49 19.16 Preparing to unpack .../044-libcairo2_1.16.0-7_amd64.deb ... -#49 19.16 Unpacking libcairo2:amd64 (1.16.0-7) ... -#49 19.21 Selecting previously unselected package libcodec2-1.0:amd64. -#49 19.21 Preparing to unpack .../045-libcodec2-1.0_1.0.5-1_amd64.deb ... -#49 19.21 Unpacking libcodec2-1.0:amd64 (1.0.5-1) ... -#49 19.77 Selecting previously unselected package libdav1d6:amd64. -#49 19.77 Preparing to unpack .../046-libdav1d6_1.0.0-2+deb12u1_amd64.deb ... -#49 19.77 Unpacking libdav1d6:amd64 (1.0.0-2+deb12u1) ... -#49 19.83 Selecting previously unselected package libglib2.0-0:amd64. -#49 19.83 Preparing to unpack .../047-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... -#49 19.83 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#49 19.93 Selecting previously unselected package libgsm1:amd64. -#49 19.93 Preparing to unpack .../048-libgsm1_1.0.22-1_amd64.deb ... -#49 19.93 Unpacking libgsm1:amd64 (1.0.22-1) ... -#49 19.95 Selecting previously unselected package libhwy1:amd64. -#49 19.95 Preparing to unpack .../049-libhwy1_1.0.3-3+deb12u1_amd64.deb ... -#49 19.95 Unpacking libhwy1:amd64 (1.0.3-3+deb12u1) ... -#49 19.99 Selecting previously unselected package liblcms2-2:amd64. -#49 19.99 Preparing to unpack .../050-liblcms2-2_2.14-2_amd64.deb ... -#49 19.99 Unpacking liblcms2-2:amd64 (2.14-2) ... -#49 20.01 Selecting previously unselected package libjxl0.7:amd64. -#49 20.01 Preparing to unpack .../051-libjxl0.7_0.7.0-10_amd64.deb ... -#49 20.01 Unpacking libjxl0.7:amd64 (0.7.0-10) ... -#49 20.10 Selecting previously unselected package libmp3lame0:amd64. -#49 20.10 Preparing to unpack .../052-libmp3lame0_3.100-6_amd64.deb ... -#49 20.11 Unpacking libmp3lame0:amd64 (3.100-6) ... -#49 20.13 Selecting previously unselected package libopenjp2-7:amd64. -#49 20.14 Preparing to unpack .../053-libopenjp2-7_2.5.0-2+deb12u1_amd64.deb ... -#49 20.14 Unpacking libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... -#49 20.16 Selecting previously unselected package libopus0:amd64. -#49 20.16 Preparing to unpack .../054-libopus0_1.3.1-3_amd64.deb ... -#49 20.16 Unpacking libopus0:amd64 (1.3.1-3) ... -#49 20.19 Selecting previously unselected package librav1e0:amd64. -#49 20.19 Preparing to unpack .../055-librav1e0_0.5.1-6_amd64.deb ... -#49 20.19 Unpacking librav1e0:amd64 (0.5.1-6) ... -#49 20.26 Selecting previously unselected package libcairo-gobject2:amd64. -#49 20.26 Preparing to unpack .../056-libcairo-gobject2_1.16.0-7_amd64.deb ... -#49 20.26 Unpacking libcairo-gobject2:amd64 (1.16.0-7) ... -#49 20.28 Selecting previously unselected package libgdk-pixbuf2.0-common. -#49 20.28 Preparing to unpack .../057-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u1_all.deb ... -#49 20.28 Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... -#49 20.32 Selecting previously unselected package libicu72:amd64. -#49 20.32 Preparing to unpack .../058-libicu72_72.1-3_amd64.deb ... -#49 20.32 Unpacking libicu72:amd64 (72.1-3) ... -#49 ... - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 18.73 Selecting previously unselected package default-jre-headless. -#48 18.74 Preparing to unpack .../087-default-jre-headless_2%3a1.17-74_amd64.deb ... -#48 18.74 Unpacking default-jre-headless (2:1.17-74) ... -#48 18.76 Selecting previously unselected package libgtk2.0-common. -#48 18.76 Preparing to unpack .../088-libgtk2.0-common_2.24.33-2+deb12u1_all.deb ... -#48 18.76 Unpacking libgtk2.0-common (2.24.33-2+deb12u1) ... -#48 18.97 Selecting previously unselected package libatk1.0-0:amd64. -#48 18.97 Preparing to unpack .../089-libatk1.0-0_2.46.0-5_amd64.deb ... -#48 18.98 Unpacking libatk1.0-0:amd64 (2.46.0-5) ... -#48 18.99 Selecting previously unselected package libpixman-1-0:amd64. -#48 18.99 Preparing to unpack .../090-libpixman-1-0_0.42.2-1_amd64.deb ... -#48 19.00 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... -#48 19.03 Selecting previously unselected package libxau6:amd64. -#48 19.03 Preparing to unpack .../091-libxau6_1%3a1.0.9-1_amd64.deb ... -#48 19.03 Unpacking libxau6:amd64 (1:1.0.9-1) ... -#48 19.05 Selecting previously unselected package libbsd0:amd64. -#48 19.05 Preparing to unpack .../092-libbsd0_0.11.7-2_amd64.deb ... -#48 19.05 Unpacking libbsd0:amd64 (0.11.7-2) ... -#48 19.07 Selecting previously unselected package libxdmcp6:amd64. -#48 19.07 Preparing to unpack .../093-libxdmcp6_1%3a1.1.2-3_amd64.deb ... -#48 19.07 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... -#48 19.09 Selecting previously unselected package libxcb1:amd64. -#48 19.09 Preparing to unpack .../094-libxcb1_1.15-1_amd64.deb ... -#48 19.09 Unpacking libxcb1:amd64 (1.15-1) ... -#48 19.10 Selecting previously unselected package libx11-data. -#48 19.11 Preparing to unpack .../095-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... -#48 19.11 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... -#48 19.15 Selecting previously unselected package libx11-6:amd64. -#48 19.15 Preparing to unpack .../096-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... -#48 19.15 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#48 19.21 Selecting previously unselected package libxcb-render0:amd64. -#48 19.21 Preparing to unpack .../097-libxcb-render0_1.15-1_amd64.deb ... -#48 19.21 Unpacking libxcb-render0:amd64 (1.15-1) ... -#48 19.23 Selecting previously unselected package libxcb-shm0:amd64. -#48 19.24 Preparing to unpack .../098-libxcb-shm0_1.15-1_amd64.deb ... -#48 19.24 Unpacking libxcb-shm0:amd64 (1.15-1) ... -#48 19.26 Selecting previously unselected package libxext6:amd64. -#48 19.26 Preparing to unpack .../099-libxext6_2%3a1.3.4-1+b1_amd64.deb ... -#48 19.26 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... -#48 19.28 Selecting previously unselected package libxrender1:amd64. -#48 19.28 Preparing to unpack .../100-libxrender1_1%3a0.9.10-1.1_amd64.deb ... -#48 19.28 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... -#48 19.29 Selecting previously unselected package libcairo2:amd64. -#48 19.29 Preparing to unpack .../101-libcairo2_1.16.0-7_amd64.deb ... -#48 19.30 Unpacking libcairo2:amd64 (1.16.0-7) ... -#48 19.34 Selecting previously unselected package fontconfig. -#48 19.35 Preparing to unpack .../102-fontconfig_2.14.1-4_amd64.deb ... -#48 19.35 Unpacking fontconfig (2.14.1-4) ... -#48 19.37 Selecting previously unselected package libfribidi0:amd64. -#48 19.37 Preparing to unpack .../103-libfribidi0_1.0.8-2.1_amd64.deb ... -#48 19.37 Unpacking libfribidi0:amd64 (1.0.8-2.1) ... -#48 19.39 Selecting previously unselected package libthai-data. -#48 19.39 Preparing to unpack .../104-libthai-data_0.1.29-1_all.deb ... -#48 19.39 Unpacking libthai-data (0.1.29-1) ... -#48 19.42 Selecting previously unselected package libdatrie1:amd64. -#48 19.42 Preparing to unpack .../105-libdatrie1_0.2.13-2+b1_amd64.deb ... -#48 19.42 Unpacking libdatrie1:amd64 (0.2.13-2+b1) ... -#48 19.44 Selecting previously unselected package libthai0:amd64. -#48 19.44 Preparing to unpack .../106-libthai0_0.1.29-1_amd64.deb ... -#48 19.44 Unpacking libthai0:amd64 (0.1.29-1) ... -#48 19.46 Selecting previously unselected package libpango-1.0-0:amd64. -#48 19.46 Preparing to unpack .../107-libpango-1.0-0_1.50.12+ds-1_amd64.deb ... -#48 19.46 Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ... -#48 19.49 Selecting previously unselected package libpangoft2-1.0-0:amd64. -#48 19.49 Preparing to unpack .../108-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ... -#48 19.49 Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... -#48 19.51 Selecting previously unselected package libpangocairo-1.0-0:amd64. -#48 19.51 Preparing to unpack .../109-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ... -#48 19.51 Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... -#48 19.53 Selecting previously unselected package libxcomposite1:amd64. -#48 19.53 Preparing to unpack .../110-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -#48 19.53 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -#48 19.55 Selecting previously unselected package libxfixes3:amd64. -#48 19.55 Preparing to unpack .../111-libxfixes3_1%3a6.0.0-2_amd64.deb ... -#48 19.55 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... -#48 19.56 Selecting previously unselected package libxcursor1:amd64. -#48 19.57 Preparing to unpack .../112-libxcursor1_1%3a1.2.1-1_amd64.deb ... -#48 19.57 Unpacking libxcursor1:amd64 (1:1.2.1-1) ... -#48 19.58 Selecting previously unselected package libxdamage1:amd64. -#48 19.58 Preparing to unpack .../113-libxdamage1_1%3a1.1.6-1_amd64.deb ... -#48 19.59 Unpacking libxdamage1:amd64 (1:1.1.6-1) ... -#48 19.60 Selecting previously unselected package libxi6:amd64. -#48 19.60 Preparing to unpack .../114-libxi6_2%3a1.8-1+b1_amd64.deb ... -#48 19.60 Unpacking libxi6:amd64 (2:1.8-1+b1) ... -#48 19.62 Selecting previously unselected package libxinerama1:amd64. -#48 19.62 Preparing to unpack .../115-libxinerama1_2%3a1.1.4-3_amd64.deb ... -#48 19.62 Unpacking libxinerama1:amd64 (2:1.1.4-3) ... -#48 19.64 Selecting previously unselected package libxrandr2:amd64. -#48 19.64 Preparing to unpack .../116-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ... -#48 19.64 Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ... -#48 19.66 Selecting previously unselected package libgtk2.0-0:amd64. -#48 19.66 Preparing to unpack .../117-libgtk2.0-0_2.24.33-2+deb12u1_amd64.deb ... -#48 19.66 Unpacking libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... -#48 19.80 Selecting previously unselected package libglvnd0:amd64. -#48 19.80 Preparing to unpack .../118-libglvnd0_1.6.0-1_amd64.deb ... -#48 19.80 Unpacking libglvnd0:amd64 (1.6.0-1) ... -#48 19.82 Selecting previously unselected package libdrm-common. -#48 19.82 Preparing to unpack .../119-libdrm-common_2.4.114-1_all.deb ... -#48 19.82 Unpacking libdrm-common (2.4.114-1) ... -#48 19.84 Selecting previously unselected package libdrm2:amd64. -#48 19.84 Preparing to unpack .../120-libdrm2_2.4.114-1+b1_amd64.deb ... -#48 19.84 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... -#48 19.85 Selecting previously unselected package libglapi-mesa:amd64. -#48 19.86 Preparing to unpack .../121-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... -#48 19.86 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#48 19.87 Selecting previously unselected package libx11-xcb1:amd64. -#48 19.88 Preparing to unpack .../122-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... -#48 19.88 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#48 19.90 Selecting previously unselected package libxcb-dri2-0:amd64. -#48 19.90 Preparing to unpack .../123-libxcb-dri2-0_1.15-1_amd64.deb ... -#48 19.90 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... -#48 19.92 Selecting previously unselected package libxcb-dri3-0:amd64. -#48 19.92 Preparing to unpack .../124-libxcb-dri3-0_1.15-1_amd64.deb ... -#48 19.92 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... -#48 19.94 Selecting previously unselected package libxcb-glx0:amd64. -#48 19.94 Preparing to unpack .../125-libxcb-glx0_1.15-1_amd64.deb ... -#48 19.94 Unpacking libxcb-glx0:amd64 (1.15-1) ... -#48 19.97 Selecting previously unselected package libxcb-present0:amd64. -#48 19.97 Preparing to unpack .../126-libxcb-present0_1.15-1_amd64.deb ... -#48 19.97 Unpacking libxcb-present0:amd64 (1.15-1) ... -#48 19.99 Selecting previously unselected package libxcb-randr0:amd64. -#48 19.99 Preparing to unpack .../127-libxcb-randr0_1.15-1_amd64.deb ... -#48 19.99 Unpacking libxcb-randr0:amd64 (1.15-1) ... -#48 20.01 Selecting previously unselected package libxcb-sync1:amd64. -#48 20.02 Preparing to unpack .../128-libxcb-sync1_1.15-1_amd64.deb ... -#48 20.02 Unpacking libxcb-sync1:amd64 (1.15-1) ... -#48 20.04 Selecting previously unselected package libxcb-xfixes0:amd64. -#48 20.04 Preparing to unpack .../129-libxcb-xfixes0_1.15-1_amd64.deb ... -#48 20.04 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... -#48 20.06 Selecting previously unselected package libxshmfence1:amd64. -#48 20.06 Preparing to unpack .../130-libxshmfence1_1.3-1_amd64.deb ... -#48 20.06 Unpacking libxshmfence1:amd64 (1.3-1) ... -#48 20.08 Selecting previously unselected package libxxf86vm1:amd64. -#48 20.08 Preparing to unpack .../131-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -#48 20.08 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#48 20.09 Selecting previously unselected package libdrm-amdgpu1:amd64. -#48 20.10 Preparing to unpack .../132-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... -#48 20.10 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#48 20.11 Selecting previously unselected package libpciaccess0:amd64. -#48 20.11 Preparing to unpack .../133-libpciaccess0_0.17-2_amd64.deb ... -#48 20.11 Unpacking libpciaccess0:amd64 (0.17-2) ... -#48 20.13 Selecting previously unselected package libdrm-intel1:amd64. -#48 20.13 Preparing to unpack .../134-libdrm-intel1_2.4.114-1+b1_amd64.deb ... -#48 20.13 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... -#48 20.15 Selecting previously unselected package libdrm-nouveau2:amd64. -#48 20.15 Preparing to unpack .../135-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... -#48 20.15 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#48 20.17 Selecting previously unselected package libdrm-radeon1:amd64. -#48 20.17 Preparing to unpack .../136-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... -#48 20.17 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#48 20.19 Selecting previously unselected package libelf1:amd64. -#48 20.19 Preparing to unpack .../137-libelf1_0.188-2.1_amd64.deb ... -#48 20.19 Unpacking libelf1:amd64 (0.188-2.1) ... -#48 20.22 Selecting previously unselected package libedit2:amd64. -#48 20.22 Preparing to unpack .../138-libedit2_3.1-20221030-2_amd64.deb ... -#48 20.22 Unpacking libedit2:amd64 (3.1-20221030-2) ... -#48 20.24 Selecting previously unselected package libz3-4:amd64. -#48 20.24 Preparing to unpack .../139-libz3-4_4.8.12-3.1_amd64.deb ... -#48 20.24 Unpacking libz3-4:amd64 (4.8.12-3.1) ... -#48 20.75 Selecting previously unselected package libllvm15:amd64. -#48 20.75 Preparing to unpack .../140-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... -#48 20.75 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... -#48 21.46 Selecting previously unselected package libsensors-config. -#48 21.46 Preparing to unpack .../141-libsensors-config_1%3a3.6.0-7.1_all.deb ... -#48 21.46 Unpacking libsensors-config (1:3.6.0-7.1) ... -#48 21.47 Selecting previously unselected package libsensors5:amd64. -#48 21.48 Preparing to unpack .../142-libsensors5_1%3a3.6.0-7.1_amd64.deb ... -#48 21.48 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... -#48 21.50 Selecting previously unselected package libgl1-mesa-dri:amd64. -#48 21.50 Preparing to unpack .../143-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... -#48 21.50 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#48 ... - -#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt -#50 10.45 Collecting orjson>=3.8.2 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 10.51 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#50 10.68 Collecting pydantic>=1.10.8 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 10.72 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) -#50 10.80 Collecting rich>=13.1.0 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 10.88 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#50 10.91 Collecting types-requests>=2.28.11.6 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 10.96 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#50 10.97 Collecting typing-inspect>=0.8.0 (from docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 11.01 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) -#50 11.06 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/comps/embeddings/src/requirements.txt (line 4)) -#50 11.09 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#50 11.18 Collecting typing-extensions>=4.8.0 (from fastapi->-r /home/comps/embeddings/src/requirements.txt (line 4)) -#50 11.21 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#50 11.24 Collecting filelock (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) -#50 11.28 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#50 11.31 Collecting fsspec>=2023.5.0 (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) -#50 11.34 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) -#50 11.43 Collecting packaging>=20.9 (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) -#50 11.47 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#50 11.52 Collecting tqdm>=4.42.1 (from huggingface_hub->-r /home/comps/embeddings/src/requirements.txt (line 5)) -#50 11.56 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#50 11.69 Collecting torch>=1.9.0 (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 11.73 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl.metadata (28 kB) -#50 11.88 Collecting torchvision (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 11.92 Downloading torchvision-0.21.0-cp311-cp311-manylinux1_x86_64.whl.metadata (6.1 kB) -#50 12.30 Collecting regex (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 12.33 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#50 12.40 Collecting ftfy (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 12.44 Downloading ftfy-6.3.1-py3-none-any.whl.metadata (7.3 kB) -#50 12.57 Collecting safetensors (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 12.61 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#50 12.65 Collecting timm (from open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 12.69 Downloading timm-1.0.14-py3-none-any.whl.metadata (50 kB) -#50 12.78 Collecting anyio<5,>=3.5.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 12.83 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#50 13.03 Collecting distro<2,>=1.7.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 13.05 Downloading distro-1.9.0-py3-none-any.whl.metadata (6.8 kB) -#50 13.09 Collecting httpx<1,>=0.23.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 13.11 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#50 13.22 Collecting jiter<1,>=0.4.0 (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 13.24 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) -#50 13.32 Collecting sniffio (from openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 13.35 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#50 13.39 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) -#50 13.43 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#50 13.47 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) -#50 13.51 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) -#50 13.55 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) -#50 13.58 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#50 13.61 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) -#50 13.64 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#50 13.67 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) -#50 13.71 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#50 14.27 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) -#50 14.32 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#50 14.35 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) -#50 14.39 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) -#50 14.44 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) -#50 14.48 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#50 14.67 Collecting protobuf<6.0,>=5.0 (from opentelemetry-proto==1.29.0->opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/comps/embeddings/src/requirements.txt (line 9)) -#50 14.71 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#50 14.73 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/comps/embeddings/src/requirements.txt (line 10)) -#50 14.77 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) -#50 14.81 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/comps/embeddings/src/requirements.txt (line 13)) -#50 14.85 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#50 15.10 Collecting tokenizers<0.22,>=0.21 (from transformers->-r /home/comps/embeddings/src/requirements.txt (line 16)) -#50 15.14 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) -#50 15.20 Collecting click>=7.0 (from uvicorn->-r /home/comps/embeddings/src/requirements.txt (line 17)) -#50 15.25 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#50 15.27 Collecting h11>=0.8 (from uvicorn->-r /home/comps/embeddings/src/requirements.txt (line 17)) -#50 15.31 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#50 15.43 Collecting idna>=2.8 (from anyio<5,>=3.5.0->openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 15.47 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#50 15.61 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) -#50 15.64 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#50 15.70 Collecting certifi (from httpx<1,>=0.23.0->openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 15.74 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#50 15.77 Collecting httpcore==1.* (from httpx<1,>=0.23.0->openai->-r /home/comps/embeddings/src/requirements.txt (line 7)) -#50 15.82 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#50 15.90 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/comps/embeddings/src/requirements.txt (line 8)) -#50 15.95 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#50 16.00 Collecting annotated-types>=0.6.0 (from pydantic>=1.10.8->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 16.04 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#50 16.80 Collecting pydantic-core==2.27.2 (from pydantic>=1.10.8->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 16.84 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#50 16.96 Collecting charset-normalizer<4,>=2 (from requests>=2.27.1->predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) -#50 17.01 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#50 17.15 Collecting urllib3<3,>=1.21.1 (from requests>=2.27.1->predictionguard==2.2.1->-r /home/comps/embeddings/src/requirements.txt (line 12)) -#50 17.19 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#50 17.23 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 17.27 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#50 17.37 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 17.41 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#50 17.49 Collecting networkx (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.53 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) -#50 17.57 Collecting jinja2 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.61 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) -#50 17.63 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.67 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#50 17.68 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.72 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#50 17.74 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.78 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#50 17.80 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.84 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#50 17.86 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.90 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#50 17.91 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 17.95 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#50 17.97 Collecting nvidia-curand-cu12==10.3.5.147 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.01 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#50 18.03 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.08 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#50 18.09 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.14 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#50 18.15 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.20 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) -#50 18.23 Collecting nvidia-nccl-cu12==2.21.5 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.27 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) -#50 18.29 Collecting nvidia-nvtx-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.33 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) -#50 18.35 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.39 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#50 18.41 Collecting triton==3.2.0 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.44 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) -#50 18.47 Collecting sympy==1.13.1 (from torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.50 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) -#50 18.58 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.62 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) -#50 18.67 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 18.71 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) -#50 18.75 Collecting wcwidth (from ftfy->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 18.78 Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB) -#50 18.93 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray->-r /home/comps/embeddings/src/requirements.txt (line 2)) -#50 18.97 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#50 19.06 Collecting MarkupSafe>=2.0 (from jinja2->torch>=1.9.0->open-clip-torch->-r /home/comps/embeddings/src/requirements.txt (line 6)) -#50 19.10 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) -#50 19.17 Downloading predictionguard-2.2.1-py2.py3-none-any.whl (7.9 kB) -#50 19.22 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) -#50 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 16.64 Get:291 http://deb.debian.org/debian-security bookworm-security/main amd64 python3-uno amd64 4:7.4.7-1+deb12u6 [158 kB] -#42 16.69 Get:292 http://deb.debian.org/debian-security bookworm-security/main amd64 libreoffice amd64 4:7.4.7-1+deb12u6 [35.1 kB] -#42 16.74 Get:293 http://deb.debian.org/debian bookworm/main amd64 libtesseract5 amd64 5.3.0-2 [1279 kB] -#42 16.85 Get:294 http://deb.debian.org/debian bookworm/main amd64 poppler-utils amd64 22.12.0-2+b1 [192 kB] -#42 16.88 Get:295 http://deb.debian.org/debian bookworm/main amd64 tesseract-ocr-eng all 1:4.1.0-2 [1594 kB] -#42 17.05 Get:296 http://deb.debian.org/debian bookworm/main amd64 tesseract-ocr-osd all 1:4.1.0-2 [2992 kB] -#42 17.36 Get:297 http://deb.debian.org/debian bookworm/main amd64 tesseract-ocr amd64 5.3.0-2 [402 kB] -#42 17.57 debconf: delaying package configuration, since apt-utils is not installed -#42 17.60 Fetched 343 MB in 13s (26.6 MB/s) -#42 17.61 Selecting previously unselected package perl-modules-5.36. -#42 17.61 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6686 files and directories currently installed.) -#42 17.62 Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u1_all.deb ... -#42 17.62 Unpacking perl-modules-5.36 (5.36.0-7+deb12u1) ... -#42 17.89 Selecting previously unselected package libgdbm-compat4:amd64. -#42 17.89 Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... -#42 17.89 Unpacking libgdbm-compat4:amd64 (1.23-3) ... -#42 17.91 Selecting previously unselected package libperl5.36:amd64. -#42 17.91 Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u1_amd64.deb ... -#42 17.91 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u1) ... -#42 18.23 Selecting previously unselected package perl. -#42 18.23 Preparing to unpack .../003-perl_5.36.0-7+deb12u1_amd64.deb ... -#42 18.23 Unpacking perl (5.36.0-7+deb12u1) ... -#42 18.26 Selecting previously unselected package libexpat1:amd64. -#42 18.26 Preparing to unpack .../004-libexpat1_2.5.0-1+deb12u1_amd64.deb ... -#42 18.26 Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... -#42 18.28 Selecting previously unselected package libbrotli1:amd64. -#42 18.29 Preparing to unpack .../005-libbrotli1_1.0.9-2+b6_amd64.deb ... -#42 18.29 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... -#42 18.32 Selecting previously unselected package libpng16-16:amd64. -#42 18.32 Preparing to unpack .../006-libpng16-16_1.6.39-2_amd64.deb ... -#42 18.32 Unpacking libpng16-16:amd64 (1.6.39-2) ... -#42 18.35 Selecting previously unselected package libfreetype6:amd64. -#42 18.35 Preparing to unpack .../007-libfreetype6_2.12.1+dfsg-5+deb12u3_amd64.deb ... -#42 18.35 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#42 18.39 Selecting previously unselected package fonts-dejavu-core. -#42 18.39 Preparing to unpack .../008-fonts-dejavu-core_2.37-6_all.deb ... -#42 18.39 Unpacking fonts-dejavu-core (2.37-6) ... -#42 18.55 Selecting previously unselected package fontconfig-config. -#42 18.55 Preparing to unpack .../009-fontconfig-config_2.14.1-4_amd64.deb ... -#42 18.65 Unpacking fontconfig-config (2.14.1-4) ... -#42 18.68 Selecting previously unselected package libfontconfig1:amd64. -#42 18.68 Preparing to unpack .../010-libfontconfig1_2.14.1-4_amd64.deb ... -#42 18.68 Unpacking libfontconfig1:amd64 (2.14.1-4) ... -#42 18.70 Selecting previously unselected package fontconfig. -#42 18.70 Preparing to unpack .../011-fontconfig_2.14.1-4_amd64.deb ... -#42 18.71 Unpacking fontconfig (2.14.1-4) ... -#42 18.73 Selecting previously unselected package fonts-opensymbol. -#42 18.74 Preparing to unpack .../012-fonts-opensymbol_4%3a102.12+LibO7.4.7-1+deb12u6_all.deb ... -#42 18.74 Unpacking fonts-opensymbol (4:102.12+LibO7.4.7-1+deb12u6) ... -#42 18.76 Selecting previously unselected package libreoffice-style-colibre. -#42 18.76 Preparing to unpack .../013-libreoffice-style-colibre_4%3a7.4.7-1+deb12u6_all.deb ... -#42 18.77 Unpacking libreoffice-style-colibre (4:7.4.7-1+deb12u6) ... -#42 19.25 Selecting previously unselected package libuno-sal3. -#42 19.25 Preparing to unpack .../014-libuno-sal3_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 19.25 Unpacking libuno-sal3 (4:7.4.7-1+deb12u6) ... -#42 19.28 Selecting previously unselected package libuno-salhelpergcc3-3. -#42 19.28 Preparing to unpack .../015-libuno-salhelpergcc3-3_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 19.28 Unpacking libuno-salhelpergcc3-3 (4:7.4.7-1+deb12u6) ... -#42 19.30 Selecting previously unselected package libuno-cppu3. -#42 19.30 Preparing to unpack .../016-libuno-cppu3_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 19.30 Unpacking libuno-cppu3 (4:7.4.7-1+deb12u6) ... -#42 19.32 Selecting previously unselected package uno-libs-private. -#42 19.32 Preparing to unpack .../017-uno-libs-private_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 19.32 Unpacking uno-libs-private (4:7.4.7-1+deb12u6) ... -#42 19.35 Selecting previously unselected package libicu72:amd64. -#42 19.35 Preparing to unpack .../018-libicu72_72.1-3_amd64.deb ... -#42 19.35 Unpacking libicu72:amd64 (72.1-3) ... -#42 19.87 Selecting previously unselected package libxml2:amd64. -#42 19.87 Preparing to unpack .../019-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... -#42 19.87 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#42 19.93 Selecting previously unselected package liblangtag-common. -#42 19.93 Preparing to unpack .../020-liblangtag-common_0.6.4-2_all.deb ... -#42 19.93 Unpacking liblangtag-common (0.6.4-2) ... -#42 19.96 Selecting previously unselected package liblangtag1:amd64. -#42 19.96 Preparing to unpack .../021-liblangtag1_0.6.4-2_amd64.deb ... -#42 19.97 Unpacking liblangtag1:amd64 (0.6.4-2) ... -#42 19.98 Selecting previously unselected package libuno-cppuhelpergcc3-3. -#42 19.98 Preparing to unpack .../022-libuno-cppuhelpergcc3-3_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 19.98 Unpacking libuno-cppuhelpergcc3-3 (4:7.4.7-1+deb12u6) ... -#42 20.02 Selecting previously unselected package libuno-purpenvhelpergcc3-3. -#42 20.02 Preparing to unpack .../023-libuno-purpenvhelpergcc3-3_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 20.02 Unpacking libuno-purpenvhelpergcc3-3 (4:7.4.7-1+deb12u6) ... -#42 20.04 Selecting previously unselected package ure. -#42 20.04 Preparing to unpack .../024-ure_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 20.04 Unpacking ure (4:7.4.7-1+deb12u6) ... -#42 20.14 Selecting previously unselected package sensible-utils. -#42 20.14 Preparing to unpack .../025-sensible-utils_0.0.17+nmu1_all.deb ... -#42 20.15 Unpacking sensible-utils (0.0.17+nmu1) ... -#42 20.16 Selecting previously unselected package ucf. -#42 20.16 Preparing to unpack .../026-ucf_3.0043+nmu1+deb12u1_all.deb ... -#42 20.16 Moving old data out of the way -#42 20.17 Unpacking ucf (3.0043+nmu1+deb12u1) ... -#42 20.18 Selecting previously unselected package libnumbertext-data. -#42 20.18 Preparing to unpack .../027-libnumbertext-data_1.0.11-1_all.deb ... -#42 20.18 Unpacking libnumbertext-data (1.0.11-1) ... -#42 20.21 Selecting previously unselected package libreoffice-common. -#42 20.21 Preparing to unpack .../028-libreoffice-common_4%3a7.4.7-1+deb12u6_all.deb ... -#42 20.23 Unpacking libreoffice-common (4:7.4.7-1+deb12u6) ... -#42 20.87 Selecting previously unselected package libabsl20220623:amd64. -#42 20.87 Preparing to unpack .../029-libabsl20220623_20220623.1-1_amd64.deb ... -#42 20.87 Unpacking libabsl20220623:amd64 (20220623.1-1) ... -#42 20.92 Selecting previously unselected package libboost-thread1.74.0:amd64. -#42 20.92 Preparing to unpack .../030-libboost-thread1.74.0_1.74.0+ds1-21_amd64.deb ... -#42 20.92 Unpacking libboost-thread1.74.0:amd64 (1.74.0+ds1-21) ... -#42 20.96 Selecting previously unselected package libboost-locale1.74.0:amd64. -#42 20.96 Preparing to unpack .../031-libboost-locale1.74.0_1.74.0+ds1-21_amd64.deb ... -#42 20.96 Unpacking libboost-locale1.74.0:amd64 (1.74.0+ds1-21) ... -#42 21.00 Selecting previously unselected package libpixman-1-0:amd64. -#42 21.01 Preparing to unpack .../032-libpixman-1-0_0.42.2-1_amd64.deb ... -#42 21.01 Unpacking libpixman-1-0:amd64 (0.42.2-1) ... -#42 21.04 Selecting previously unselected package libxau6:amd64. -#42 21.04 Preparing to unpack .../033-libxau6_1%3a1.0.9-1_amd64.deb ... -#42 21.04 Unpacking libxau6:amd64 (1:1.0.9-1) ... -#42 21.06 Selecting previously unselected package libbsd0:amd64. -#42 21.06 Preparing to unpack .../034-libbsd0_0.11.7-2_amd64.deb ... -#42 21.06 Unpacking libbsd0:amd64 (0.11.7-2) ... -#42 21.08 Selecting previously unselected package libxdmcp6:amd64. -#42 21.08 Preparing to unpack .../035-libxdmcp6_1%3a1.1.2-3_amd64.deb ... -#42 21.08 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... -#42 21.09 Selecting previously unselected package libxcb1:amd64. -#42 21.09 Preparing to unpack .../036-libxcb1_1.15-1_amd64.deb ... -#42 21.10 Unpacking libxcb1:amd64 (1.15-1) ... -#42 21.11 Selecting previously unselected package libx11-data. -#42 21.11 Preparing to unpack .../037-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ... -#42 21.11 Unpacking libx11-data (2:1.8.4-2+deb12u2) ... -#42 21.16 Selecting previously unselected package libx11-6:amd64. -#42 21.16 Preparing to unpack .../038-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ... -#42 21.16 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#42 21.22 Selecting previously unselected package libxcb-render0:amd64. -#42 21.22 Preparing to unpack .../039-libxcb-render0_1.15-1_amd64.deb ... -#42 21.22 Unpacking libxcb-render0:amd64 (1.15-1) ... -#42 21.24 Selecting previously unselected package libxcb-shm0:amd64. -#42 21.24 Preparing to unpack .../040-libxcb-shm0_1.15-1_amd64.deb ... -#42 21.24 Unpacking libxcb-shm0:amd64 (1.15-1) ... -#42 21.26 Selecting previously unselected package libxext6:amd64. -#42 21.27 Preparing to unpack .../041-libxext6_2%3a1.3.4-1+b1_amd64.deb ... -#42 21.27 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... -#42 21.28 Selecting previously unselected package libxrender1:amd64. -#42 21.28 Preparing to unpack .../042-libxrender1_1%3a0.9.10-1.1_amd64.deb ... -#42 21.28 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... -#42 21.30 Selecting previously unselected package libcairo2:amd64. -#42 21.30 Preparing to unpack .../043-libcairo2_1.16.0-7_amd64.deb ... -#42 21.30 Unpacking libcairo2:amd64 (1.16.0-7) ... -#42 21.35 Selecting previously unselected package libclucene-core1v5:amd64. -#42 21.35 Preparing to unpack .../044-libclucene-core1v5_2.3.3.4+dfsg-1.1_amd64.deb ... -#42 21.35 Unpacking libclucene-core1v5:amd64 (2.3.3.4+dfsg-1.1) ... -#42 21.40 Selecting previously unselected package libclucene-contribs1v5:amd64. -#42 21.40 Preparing to unpack .../045-libclucene-contribs1v5_2.3.3.4+dfsg-1.1_amd64.deb ... -#42 21.40 Unpacking libclucene-contribs1v5:amd64 (2.3.3.4+dfsg-1.1) ... -#42 21.42 Selecting previously unselected package libavahi-common-data:amd64. -#42 21.42 Preparing to unpack .../046-libavahi-common-data_0.8-10+deb12u1_amd64.deb ... -#42 21.42 Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ... -#42 21.44 Selecting previously unselected package libavahi-common3:amd64. -#42 21.44 Preparing to unpack .../047-libavahi-common3_0.8-10+deb12u1_amd64.deb ... -#42 21.44 Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ... -#42 21.46 Selecting previously unselected package libdbus-1-3:amd64. -#42 21.46 Preparing to unpack .../048-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ... -#42 21.46 Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... -#42 21.49 Selecting previously unselected package libavahi-client3:amd64. -#42 21.49 Preparing to unpack .../049-libavahi-client3_0.8-10+deb12u1_amd64.deb ... -#42 21.49 Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ... -#42 21.51 Selecting previously unselected package libcups2:amd64. -#42 21.51 Preparing to unpack .../050-libcups2_2.4.2-3+deb12u8_amd64.deb ... -#42 21.51 Unpacking libcups2:amd64 (2.4.2-3+deb12u8) ... -#42 21.54 Selecting previously unselected package libsasl2-modules-db:amd64. -#42 21.54 Preparing to unpack .../051-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ... -#42 21.54 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#42 21.55 Selecting previously unselected package libsasl2-2:amd64. -#42 21.56 Preparing to unpack .../052-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... -#42 21.56 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#42 21.57 Selecting previously unselected package libldap-2.5-0:amd64. -#42 21.57 Preparing to unpack .../053-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... -#42 21.57 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#42 21.60 Selecting previously unselected package libnghttp2-14:amd64. -#42 21.60 Preparing to unpack .../054-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb ... -#42 21.60 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#42 21.62 Selecting previously unselected package libpsl5:amd64. -#42 21.62 Preparing to unpack .../055-libpsl5_0.21.2-1_amd64.deb ... -#42 21.62 Unpacking libpsl5:amd64 (0.21.2-1) ... -#42 21.64 Selecting previously unselected package librtmp1:amd64. -#42 21.64 Preparing to unpack .../056-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ... -#42 21.64 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#42 21.66 Selecting previously unselected package libssh2-1:amd64. -#42 21.66 Preparing to unpack .../057-libssh2-1_1.10.0-3+b1_amd64.deb ... -#42 21.66 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... -#42 21.68 Selecting previously unselected package libcurl3-gnutls:amd64. -#42 21.69 Preparing to unpack .../058-libcurl3-gnutls_7.88.1-10+deb12u8_amd64.deb ... -#42 21.69 Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... -#42 21.72 Selecting previously unselected package libglib2.0-0:amd64. -#42 21.72 Preparing to unpack .../059-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ... -#42 21.72 Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#42 21.83 Selecting previously unselected package libdconf1:amd64. -#42 21.83 Preparing to unpack .../060-libdconf1_0.40.0-4_amd64.deb ... -#42 21.83 Unpacking libdconf1:amd64 (0.40.0-4) ... -#42 21.84 Selecting previously unselected package libeot0:amd64. -#42 21.85 Preparing to unpack .../061-libeot0_0.01-5+b1_amd64.deb ... -#42 21.85 Unpacking libeot0:amd64 (0.01-5+b1) ... -#42 21.86 Selecting previously unselected package libepoxy0:amd64. -#42 21.87 Preparing to unpack .../062-libepoxy0_1.5.10-1_amd64.deb ... -#42 21.87 Unpacking libepoxy0:amd64 (1.5.10-1) ... -#42 21.89 Selecting previously unselected package libexttextcat-data. -#42 21.89 Preparing to unpack .../063-libexttextcat-data_3.4.5-1_all.deb ... -#42 21.90 Unpacking libexttextcat-data (3.4.5-1) ... -#42 21.93 Selecting previously unselected package libexttextcat-2.0-0:amd64. -#42 21.93 Preparing to unpack .../064-libexttextcat-2.0-0_3.4.5-1_amd64.deb ... -#42 21.93 Unpacking libexttextcat-2.0-0:amd64 (3.4.5-1) ... -#42 21.94 Selecting previously unselected package libassuan0:amd64. -#42 21.95 Preparing to unpack .../065-libassuan0_2.5.5-5_amd64.deb ... -#42 21.95 Unpacking libassuan0:amd64 (2.5.5-5) ... -#42 21.96 Selecting previously unselected package gpgconf. -#42 21.96 Preparing to unpack .../066-gpgconf_2.2.40-1.1_amd64.deb ... -#42 21.96 Unpacking gpgconf (2.2.40-1.1) ... -#42 21.99 Selecting previously unselected package libksba8:amd64. -#42 21.99 Preparing to unpack .../067-libksba8_1.6.3-2_amd64.deb ... -#42 21.99 Unpacking libksba8:amd64 (1.6.3-2) ... -#42 22.02 Selecting previously unselected package libnpth0:amd64. -#42 22.02 Preparing to unpack .../068-libnpth0_1.6-3_amd64.deb ... -#42 22.02 Unpacking libnpth0:amd64 (1.6-3) ... -#42 22.03 Selecting previously unselected package dirmngr. -#42 22.04 Preparing to unpack .../069-dirmngr_2.2.40-1.1_amd64.deb ... -#42 22.05 Unpacking dirmngr (2.2.40-1.1) ... -#42 22.09 Selecting previously unselected package gnupg-l10n. -#42 22.09 Preparing to unpack .../070-gnupg-l10n_2.2.40-1.1_all.deb ... -#42 22.10 Unpacking gnupg-l10n (2.2.40-1.1) ... -#42 22.16 Selecting previously unselected package gnupg-utils. -#42 22.17 Preparing to unpack .../071-gnupg-utils_2.2.40-1.1_amd64.deb ... -#42 22.17 Unpacking gnupg-utils (2.2.40-1.1) ... -#42 22.22 Selecting previously unselected package gpg. -#42 22.22 Preparing to unpack .../072-gpg_2.2.40-1.1_amd64.deb ... -#42 22.22 Unpacking gpg (2.2.40-1.1) ... -#42 22.28 Selecting previously unselected package pinentry-curses. -#42 22.28 Preparing to unpack .../073-pinentry-curses_1.2.1-1_amd64.deb ... -#42 22.28 Unpacking pinentry-curses (1.2.1-1) ... -#42 22.30 Selecting previously unselected package gpg-agent. -#42 22.30 Preparing to unpack .../074-gpg-agent_2.2.40-1.1_amd64.deb ... -#42 22.30 Unpacking gpg-agent (2.2.40-1.1) ... -#42 22.34 Selecting previously unselected package gpg-wks-client. -#42 22.34 Preparing to unpack .../075-gpg-wks-client_2.2.40-1.1_amd64.deb ... -#42 22.34 Unpacking gpg-wks-client (2.2.40-1.1) ... -#42 22.36 Selecting previously unselected package gpg-wks-server. -#42 22.37 Preparing to unpack .../076-gpg-wks-server_2.2.40-1.1_amd64.deb ... -#42 22.37 Unpacking gpg-wks-server (2.2.40-1.1) ... -#42 22.39 Selecting previously unselected package gpgsm. -#42 22.39 Preparing to unpack .../077-gpgsm_2.2.40-1.1_amd64.deb ... -#42 22.39 Unpacking gpgsm (2.2.40-1.1) ... -#42 22.43 Selecting previously unselected package gnupg. -#42 22.43 Preparing to unpack .../078-gnupg_2.2.40-1.1_all.deb ... -#42 22.43 Unpacking gnupg (2.2.40-1.1) ... -#42 22.47 Selecting previously unselected package libgpgme11:amd64. -#42 22.47 Preparing to unpack .../079-libgpgme11_1.18.0-3+b1_amd64.deb ... -#42 22.47 Unpacking libgpgme11:amd64 (1.18.0-3+b1) ... -#42 22.50 Selecting previously unselected package libgpgmepp6:amd64. -#42 22.50 Preparing to unpack .../080-libgpgmepp6_1.18.0-3+b1_amd64.deb ... -#42 22.50 Unpacking libgpgmepp6:amd64 (1.18.0-3+b1) ... -#42 22.52 Selecting previously unselected package libgraphite2-3:amd64. -#42 22.53 Preparing to unpack .../081-libgraphite2-3_1.3.14-1_amd64.deb ... -#42 22.53 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -#42 ... - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 21.99 Selecting previously unselected package libglx-mesa0:amd64. -#48 21.99 Preparing to unpack .../144-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... -#48 21.99 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#48 22.02 Selecting previously unselected package libglx0:amd64. -#48 22.02 Preparing to unpack .../145-libglx0_1.6.0-1_amd64.deb ... -#48 22.02 Unpacking libglx0:amd64 (1.6.0-1) ... -#48 22.04 Selecting previously unselected package libgl1:amd64. -#48 22.04 Preparing to unpack .../146-libgl1_1.6.0-1_amd64.deb ... -#48 22.04 Unpacking libgl1:amd64 (1.6.0-1) ... -#48 22.06 Selecting previously unselected package libgif7:amd64. -#48 22.06 Preparing to unpack .../147-libgif7_5.2.1-2.5_amd64.deb ... -#48 22.06 Unpacking libgif7:amd64 (5.2.1-2.5) ... -#48 22.08 Selecting previously unselected package x11-common. -#48 22.08 Preparing to unpack .../148-x11-common_1%3a7.7+23_all.deb ... -#48 22.08 Unpacking x11-common (1:7.7+23) ... -#48 22.11 Selecting previously unselected package libxtst6:amd64. -#48 22.11 Preparing to unpack .../149-libxtst6_2%3a1.2.3-1.1_amd64.deb ... -#48 22.11 Unpacking libxtst6:amd64 (2:1.2.3-1.1) ... -#48 22.12 Selecting previously unselected package openjdk-17-jre:amd64. -#48 22.12 Preparing to unpack .../150-openjdk-17-jre_17.0.14+7-1~deb12u1_amd64.deb ... -#48 22.13 Unpacking openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... -#48 22.16 Selecting previously unselected package default-jre. -#48 22.16 Preparing to unpack .../151-default-jre_2%3a1.17-74_amd64.deb ... -#48 22.16 Unpacking default-jre (2:1.17-74) ... -#48 22.17 Selecting previously unselected package libgl1-mesa-glx:amd64. -#48 22.17 Preparing to unpack .../152-libgl1-mesa-glx_22.3.6-1+deb12u1_amd64.deb ... -#48 22.17 Unpacking libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... -#48 22.19 Selecting previously unselected package libjemalloc2:amd64. -#48 22.19 Preparing to unpack .../153-libjemalloc2_5.3.0-1_amd64.deb ... -#48 22.19 Unpacking libjemalloc2:amd64 (5.3.0-1) ... -#48 22.22 Selecting previously unselected package libjemalloc-dev. -#48 22.22 Preparing to unpack .../154-libjemalloc-dev_5.3.0-1_amd64.deb ... -#48 22.22 Unpacking libjemalloc-dev (5.3.0-1) ... -#48 22.29 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... -#48 22.29 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -#48 22.29 Setting up liblcms2-2:amd64 (2.14-2) ... -#48 22.30 Setting up libpixman-1-0:amd64 (0.42.2-1) ... -#48 22.30 Setting up libpciaccess0:amd64 (0.17-2) ... -#48 22.30 Setting up libxau6:amd64 (1:1.0.9-1) ... -#48 22.30 Setting up libpsl5:amd64 (0.21.2-1) ... -#48 22.30 Setting up libicu72:amd64 (72.1-3) ... -#48 22.31 Setting up liblerc4:amd64 (4.0.0+ds-2) ... -#48 22.31 Setting up wget (1.21.3-1+b2) ... -#48 22.31 Setting up hicolor-icon-theme (0.17-2) ... -#48 22.32 Setting up java-common (0.74) ... -#48 22.33 Setting up libdatrie1:amd64 (0.2.13-2+b1) ... -#48 22.33 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#48 22.34 No schema files found: doing nothing. -#48 22.34 Setting up libglvnd0:amd64 (1.6.0-1) ... -#48 22.34 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... -#48 22.35 Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... -#48 22.35 Setting up binutils-common:amd64 (2.40-2) ... -#48 22.35 Setting up x11-common (1:7.7+23) ... -#48 22.43 debconf: unable to initialize frontend: Dialog -#48 22.43 debconf: (TERM is not set, so the dialog frontend is not usable.) -#48 22.43 debconf: falling back to frontend: Readline -#48 22.44 debconf: unable to initialize frontend: Readline -#48 22.44 debconf: (This frontend requires a controlling tty.) -#48 22.44 debconf: falling back to frontend: Teletype -#48 22.46 invoke-rc.d: could not determine current runlevel -#48 22.46 invoke-rc.d: policy-rc.d denied execution of restart. -#48 22.46 Setting up libsensors-config (1:3.6.0-7.1) ... -#48 22.47 Setting up libdeflate0:amd64 (1.14-1) ... -#48 22.47 Setting up linux-libc-dev:amd64 (6.1.124-1) ... -#48 22.47 Setting up libctf-nobfd0:amd64 (2.40-2) ... -#48 22.47 Setting up libjemalloc2:amd64 (5.3.0-1) ... -#48 22.47 Setting up libgomp1:amd64 (12.2.0-14) ... -#48 22.48 Setting up bzip2 (1.0.8-5+b1) ... -#48 22.48 Setting up libjbig0:amd64 (2.1-6.1) ... -#48 22.48 Setting up libjansson4:amd64 (2.14-2) ... -#48 22.48 Setting up libasound2-data (1.2.8-1) ... -#48 22.48 Setting up libjemalloc-dev (5.3.0-1) ... -#48 22.49 Setting up perl-modules-5.36 (5.36.0-7+deb12u1) ... -#48 22.49 Setting up libz3-4:amd64 (4.8.12-3.1) ... -#48 22.49 Setting up libtirpc-dev:amd64 (1.3.3+ds-1) ... -#48 22.49 Setting up rpcsvc-proto (1.4.3-1) ... -#48 22.49 Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ... -#48 22.50 Setting up libx11-data (2:1.8.4-2+deb12u2) ... -#48 22.50 Setting up make (4.3-4.1) ... -#48 22.50 Setting up libmpfr6:amd64 (4.2.0-1) ... -#48 22.50 Setting up libnspr4:amd64 (2:4.35-1) ... -#48 22.50 Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ... -#48 22.50 Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... -#48 22.51 Setting up xz-utils (5.4.1-0.2) ... -#48 22.51 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist -#48 22.51 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist -#48 22.51 Setting up libfribidi0:amd64 (1.0.8-2.1) ... -#48 22.52 Setting up libquadmath0:amd64 (12.2.0-14) ... -#48 22.52 Setting up libpng16-16:amd64 (1.6.39-2) ... -#48 22.52 Setting up libmpc3:amd64 (1.3.1-1) ... -#48 22.52 Setting up libatomic1:amd64 (12.2.0-14) ... -#48 22.52 Setting up patch (2.7.6-7) ... -#48 22.53 Setting up fonts-dejavu-core (2.37-6) ... -#48 22.54 Setting up libgdbm-compat4:amd64 (1.23-3) ... -#48 22.54 Setting up libpcsclite1:amd64 (1.9.9-2) ... -#48 22.54 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... -#48 22.54 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#48 22.54 Setting up libwebp7:amd64 (1.2.4-0.2+deb12u1) ... -#48 22.55 Setting up libubsan1:amd64 (12.2.0-14) ... -#48 22.55 Setting up libgif7:amd64 (5.2.1-2.5) ... -#48 22.55 Setting up libnsl-dev:amd64 (1.3.0-2) ... -#48 22.55 Setting up libxshmfence1:amd64 (1.3-1) ... -#48 22.55 Setting up at-spi2-common (2.46.0-5) ... -#48 22.55 Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... -#48 22.56 Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... -#48 22.56 Setting up libasan8:amd64 (12.2.0-14) ... -#48 22.57 Setting up libasound2:amd64 (1.2.8-1+b1) ... -#48 22.57 Setting up libthai-data (0.1.29-1) ... -#48 22.57 Setting up libgtk2.0-common (2.24.33-2+deb12u1) ... -#48 22.57 Setting up libatk1.0-0:amd64 (2.46.0-5) ... -#48 22.57 Setting up libtsan2:amd64 (12.2.0-14) ... -#48 22.58 Setting up ca-certificates-java (20230710~deb12u1) ... -#48 22.59 No JRE found. Skipping Java certificates setup. -#48 22.59 Setting up libbinutils:amd64 (2.40-2) ... -#48 22.59 Setting up libisl23:amd64 (0.25-1.1) ... -#48 22.59 Setting up libc-dev-bin (2.36-9+deb12u9) ... -#48 22.59 Setting up libbsd0:amd64 (0.11.7-2) ... -#48 22.60 Setting up libdrm-common (2.4.114-1) ... -#48 22.61 Setting up libelf1:amd64 (0.188-2.1) ... -#48 22.61 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#48 22.61 Setting up libcc1-0:amd64 (12.2.0-14) ... -#48 22.61 Setting up libperl5.36:amd64 (5.36.0-7+deb12u1) ... -#48 22.62 Setting up liblsan0:amd64 (12.2.0-14) ... -#48 22.62 Setting up libitm1:amd64 (12.2.0-14) ... -#48 22.62 Setting up libctf0:amd64 (2.40-2) ... -#48 22.62 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... -#48 22.62 Setting up cpp-12 (12.2.0-14) ... -#48 22.63 Setting up libxcb1:amd64 (1.15-1) ... -#48 22.63 Setting up libxcb-xfixes0:amd64 (1.15-1) ... -#48 22.63 Setting up libxcb-render0:amd64 (1.15-1) ... -#48 22.63 Setting up fontconfig-config (2.14.1-4) ... -#48 22.71 debconf: unable to initialize frontend: Dialog -#48 22.71 debconf: (TERM is not set, so the dialog frontend is not usable.) -#48 22.71 debconf: falling back to frontend: Readline -#48 22.71 debconf: unable to initialize frontend: Readline -#48 22.71 debconf: (This frontend requires a controlling tty.) -#48 22.71 debconf: falling back to frontend: Teletype -#48 22.84 Setting up libxcb-glx0:amd64 (1.15-1) ... -#48 22.85 Setting up libedit2:amd64 (3.1-20221030-2) ... -#48 22.85 Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ... -#48 22.85 Setting up libnss3:amd64 (2:3.87.1-1+deb12u1) ... -#48 22.85 Setting up libxcb-shm0:amd64 (1.15-1) ... -#48 22.85 Setting up libxcb-present0:amd64 (1.15-1) ... -#48 22.85 Setting up libthai0:amd64 (0.1.29-1) ... -#48 22.86 Setting up perl (5.36.0-7+deb12u1) ... -#48 22.87 Setting up libgprofng0:amd64 (2.40-2) ... -#48 22.87 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#48 22.87 Setting up libxcb-sync1:amd64 (1.15-1) ... -#48 22.87 Setting up libgcc-12-dev:amd64 (12.2.0-14) ... -#48 22.87 Setting up shared-mime-info (2.2-1) ... -#48 ... - -#59 [opea/multimodalqna:latest comps-base 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/GenAIComps/requirements.txt -#0 1.593 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#0 1.800 Collecting pip -#0 1.957 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#0 1.961 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#0 2.303 Collecting setuptools -#0 2.342 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#0 2.425 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#0 2.595 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 11.6 MB/s eta 0:00:00 -#0 2.635 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#0 2.653 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 78.7 MB/s eta 0:00:00 -#0 2.789 Installing collected packages: setuptools, pip -#0 2.789 Attempting uninstall: setuptools -#0 2.792 Found existing installation: setuptools 65.5.1 -#0 2.811 Uninstalling setuptools-65.5.1: -#0 2.858 Successfully uninstalled setuptools-65.5.1 -#0 3.532 Attempting uninstall: pip -#0 3.536 Found existing installation: pip 24.0 -#0 3.589 Uninstalling pip-24.0: -#0 3.768 Successfully uninstalled pip-24.0 -#0 4.690 Successfully installed pip-25.0 setuptools-75.8.0 -#0 4.690 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#0 5.572 Collecting aiofiles (from -r /home/user/GenAIComps/requirements.txt (line 1)) -#0 5.628 Downloading aiofiles-24.1.0-py3-none-any.whl.metadata (10 kB) -#0 6.244 Collecting aiohttp (from -r /home/user/GenAIComps/requirements.txt (line 2)) -#0 6.253 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#0 6.377 Collecting docarray (from -r /home/user/GenAIComps/requirements.txt (line 3)) -#0 6.385 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#0 6.501 Collecting docx2txt (from -r /home/user/GenAIComps/requirements.txt (line 4)) -#0 6.509 Downloading docx2txt-0.8.tar.gz (2.8 kB) -#0 6.513 Preparing metadata (setup.py): started -#0 6.701 Preparing metadata (setup.py): finished with status 'done' -#0 6.787 Collecting fastapi (from -r /home/user/GenAIComps/requirements.txt (line 5)) -#0 6.795 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#0 6.854 Collecting httpx (from -r /home/user/GenAIComps/requirements.txt (line 6)) -#0 6.862 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#0 6.923 Collecting kubernetes (from -r /home/user/GenAIComps/requirements.txt (line 7)) -#0 6.931 Downloading kubernetes-32.0.0-py2.py3-none-any.whl.metadata (1.5 kB) -#0 7.084 Collecting langchain (from -r /home/user/GenAIComps/requirements.txt (line 8)) -#0 7.093 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) -#0 7.223 Collecting langchain-community (from -r /home/user/GenAIComps/requirements.txt (line 9)) -#0 7.234 Downloading langchain_community-0.3.16-py3-none-any.whl.metadata (2.9 kB) -#0 7.296 Collecting opentelemetry-api (from -r /home/user/GenAIComps/requirements.txt (line 10)) -#0 7.303 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) -#0 7.360 Collecting opentelemetry-exporter-otlp (from -r /home/user/GenAIComps/requirements.txt (line 11)) -#0 7.371 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#0 7.425 Collecting opentelemetry-sdk (from -r /home/user/GenAIComps/requirements.txt (line 12)) -#0 7.433 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) -#0 7.668 Collecting Pillow (from -r /home/user/GenAIComps/requirements.txt (line 13)) -#0 7.677 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#0 7.735 Collecting prometheus-fastapi-instrumentator (from -r /home/user/GenAIComps/requirements.txt (line 14)) -#0 7.743 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#0 7.804 Collecting pypdf (from -r /home/user/GenAIComps/requirements.txt (line 15)) -#0 7.812 Downloading pypdf-5.2.0-py3-none-any.whl.metadata (7.2 kB) -#0 7.911 Collecting python-multipart (from -r /home/user/GenAIComps/requirements.txt (line 16)) -#0 7.919 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) -#0 7.975 Collecting pyyaml (from -r /home/user/GenAIComps/requirements.txt (line 17)) -#0 7.983 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#0 8.044 Collecting requests (from -r /home/user/GenAIComps/requirements.txt (line 18)) -#0 8.052 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#0 8.080 Collecting shortuuid (from -r /home/user/GenAIComps/requirements.txt (line 19)) -#0 8.088 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#0 8.133 Collecting uvicorn (from -r /home/user/GenAIComps/requirements.txt (line 20)) -#0 8.141 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#0 8.174 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) -#0 8.185 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#0 8.209 Collecting aiosignal>=1.1.2 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) -#0 8.217 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#0 8.251 Collecting attrs>=17.3.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) -#0 8.259 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#0 8.361 Collecting frozenlist>=1.1.1 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) -#0 8.370 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#0 8.605 Collecting multidict<7.0,>=4.5 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) -#0 8.614 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#0 8.680 Collecting propcache>=0.2.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) -#0 8.688 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#0 9.018 Collecting yarl<2.0,>=1.17.0 (from aiohttp->-r /home/user/GenAIComps/requirements.txt (line 2)) -#0 9.029 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#0 9.261 Collecting numpy>=1.17.3 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#0 9.270 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#0 9.627 Collecting orjson>=3.8.2 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#0 9.639 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#0 9.808 Collecting pydantic>=1.10.8 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#0 9.816 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) -#0 9.903 Collecting rich>=13.1.0 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#0 9.911 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#0 9.977 Collecting types-requests>=2.28.11.6 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#0 9.985 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#0 10.02 Collecting typing-inspect>=0.8.0 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#0 10.03 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) -#59 10.10 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/GenAIComps/requirements.txt (line 5)) -#59 10.11 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#59 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 20.83 Selecting previously unselected package libxml2:amd64. -#49 20.83 Preparing to unpack .../059-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ... -#49 20.83 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#49 20.89 Selecting previously unselected package shared-mime-info. -#49 20.89 Preparing to unpack .../060-shared-mime-info_2.2-1_amd64.deb ... -#49 20.90 Unpacking shared-mime-info (2.2-1) ... -#49 20.96 Selecting previously unselected package libjpeg62-turbo:amd64. -#49 20.96 Preparing to unpack .../061-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... -#49 20.96 Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... -#49 20.99 Selecting previously unselected package libdeflate0:amd64. -#49 20.99 Preparing to unpack .../062-libdeflate0_1.14-1_amd64.deb ... -#49 20.99 Unpacking libdeflate0:amd64 (1.14-1) ... -#49 21.00 Selecting previously unselected package libjbig0:amd64. -#49 21.01 Preparing to unpack .../063-libjbig0_2.1-6.1_amd64.deb ... -#49 21.01 Unpacking libjbig0:amd64 (2.1-6.1) ... -#49 21.02 Selecting previously unselected package liblerc4:amd64. -#49 21.02 Preparing to unpack .../064-liblerc4_4.0.0+ds-2_amd64.deb ... -#49 21.02 Unpacking liblerc4:amd64 (4.0.0+ds-2) ... -#49 21.05 Selecting previously unselected package libwebp7:amd64. -#49 21.05 Preparing to unpack .../065-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... -#49 21.05 Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... -#49 21.08 Selecting previously unselected package libtiff6:amd64. -#49 21.08 Preparing to unpack .../066-libtiff6_4.5.0-6+deb12u2_amd64.deb ... -#49 21.08 Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... -#49 21.11 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -#49 21.11 Preparing to unpack .../067-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u1_amd64.deb ... -#49 21.11 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... -#49 21.13 Selecting previously unselected package fontconfig. -#49 21.13 Preparing to unpack .../068-fontconfig_2.14.1-4_amd64.deb ... -#49 21.13 Unpacking fontconfig (2.14.1-4) ... -#49 21.16 Selecting previously unselected package libfribidi0:amd64. -#49 21.16 Preparing to unpack .../069-libfribidi0_1.0.8-2.1_amd64.deb ... -#49 21.16 Unpacking libfribidi0:amd64 (1.0.8-2.1) ... -#49 21.17 Selecting previously unselected package libgraphite2-3:amd64. -#49 21.17 Preparing to unpack .../070-libgraphite2-3_1.3.14-1_amd64.deb ... -#49 21.17 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -#49 21.19 Selecting previously unselected package libharfbuzz0b:amd64. -#49 21.20 Preparing to unpack .../071-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ... -#49 21.20 Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... -#49 21.25 Selecting previously unselected package libthai-data. -#49 21.25 Preparing to unpack .../072-libthai-data_0.1.29-1_all.deb ... -#49 21.25 Unpacking libthai-data (0.1.29-1) ... -#49 21.28 Selecting previously unselected package libdatrie1:amd64. -#49 21.28 Preparing to unpack .../073-libdatrie1_0.2.13-2+b1_amd64.deb ... -#49 21.28 Unpacking libdatrie1:amd64 (0.2.13-2+b1) ... -#49 21.30 Selecting previously unselected package libthai0:amd64. -#49 21.30 Preparing to unpack .../074-libthai0_0.1.29-1_amd64.deb ... -#49 21.30 Unpacking libthai0:amd64 (0.1.29-1) ... -#49 21.31 Selecting previously unselected package libpango-1.0-0:amd64. -#49 21.31 Preparing to unpack .../075-libpango-1.0-0_1.50.12+ds-1_amd64.deb ... -#49 21.31 Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ... -#49 21.34 Selecting previously unselected package libpangoft2-1.0-0:amd64. -#49 21.34 Preparing to unpack .../076-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ... -#49 21.34 Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... -#49 21.36 Selecting previously unselected package libpangocairo-1.0-0:amd64. -#49 21.36 Preparing to unpack .../077-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ... -#49 21.36 Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... -#49 21.37 Selecting previously unselected package librsvg2-2:amd64. -#49 21.37 Preparing to unpack .../078-librsvg2-2_2.54.7+dfsg-1~deb12u1_amd64.deb ... -#49 21.38 Unpacking librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ... -#49 21.59 Selecting previously unselected package libshine3:amd64. -#49 21.59 Preparing to unpack .../079-libshine3_3.1.1-2_amd64.deb ... -#49 21.59 Unpacking libshine3:amd64 (3.1.1-2) ... -#49 21.60 Selecting previously unselected package libsnappy1v5:amd64. -#49 21.60 Preparing to unpack .../080-libsnappy1v5_1.1.9-3_amd64.deb ... -#49 21.61 Unpacking libsnappy1v5:amd64 (1.1.9-3) ... -#49 21.62 Selecting previously unselected package libspeex1:amd64. -#49 21.62 Preparing to unpack .../081-libspeex1_1.2.1-2_amd64.deb ... -#49 21.62 Unpacking libspeex1:amd64 (1.2.1-2) ... -#49 21.64 Selecting previously unselected package libsvtav1enc1:amd64. -#49 21.64 Preparing to unpack .../082-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... -#49 21.64 Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... -#49 21.80 Selecting previously unselected package libgomp1:amd64. -#49 21.80 Preparing to unpack .../083-libgomp1_12.2.0-14_amd64.deb ... -#49 21.80 Unpacking libgomp1:amd64 (12.2.0-14) ... -#49 21.84 Selecting previously unselected package libsoxr0:amd64. -#49 21.84 Preparing to unpack .../084-libsoxr0_0.1.3-4_amd64.deb ... -#49 21.84 Unpacking libsoxr0:amd64 (0.1.3-4) ... -#49 21.86 Selecting previously unselected package libswresample4:amd64. -#49 21.86 Preparing to unpack .../085-libswresample4_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 21.86 Unpacking libswresample4:amd64 (7:5.1.6-0+deb12u1) ... -#49 21.88 Selecting previously unselected package libogg0:amd64. -#49 21.88 Preparing to unpack .../086-libogg0_1.3.5-3_amd64.deb ... -#49 21.88 Unpacking libogg0:amd64 (1.3.5-3) ... -#49 21.89 Selecting previously unselected package libtheora0:amd64. -#49 21.89 Preparing to unpack .../087-libtheora0_1.1.1+dfsg.1-16.1+b1_amd64.deb ... -#49 21.89 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-16.1+b1) ... -#49 21.92 Selecting previously unselected package libtwolame0:amd64. -#49 21.92 Preparing to unpack .../088-libtwolame0_0.4.0-2_amd64.deb ... -#49 21.92 Unpacking libtwolame0:amd64 (0.4.0-2) ... -#49 21.93 Selecting previously unselected package libvorbis0a:amd64. -#49 21.93 Preparing to unpack .../089-libvorbis0a_1.3.7-1_amd64.deb ... -#49 21.93 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -#49 21.95 Selecting previously unselected package libvorbisenc2:amd64. -#49 21.95 Preparing to unpack .../090-libvorbisenc2_1.3.7-1_amd64.deb ... -#49 21.95 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -#49 21.97 Selecting previously unselected package libvpx7:amd64. -#49 21.97 Preparing to unpack .../091-libvpx7_1.12.0-1+deb12u3_amd64.deb ... -#49 21.97 Unpacking libvpx7:amd64 (1.12.0-1+deb12u3) ... -#49 22.06 Selecting previously unselected package libwebpmux3:amd64. -#49 22.06 Preparing to unpack .../092-libwebpmux3_1.2.4-0.2+deb12u1_amd64.deb ... -#49 22.06 Unpacking libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... -#49 22.08 Selecting previously unselected package libx264-164:amd64. -#49 22.08 Preparing to unpack .../093-libx264-164_2%3a0.164.3095+gitbaee400-3_amd64.deb ... -#49 22.08 Unpacking libx264-164:amd64 (2:0.164.3095+gitbaee400-3) ... -#49 22.13 Selecting previously unselected package libnuma1:amd64. -#49 22.13 Preparing to unpack .../094-libnuma1_2.0.16-1_amd64.deb ... -#49 22.14 Unpacking libnuma1:amd64 (2.0.16-1) ... -#49 22.15 Selecting previously unselected package libx265-199:amd64. -#49 22.15 Preparing to unpack .../095-libx265-199_3.5-2+b1_amd64.deb ... -#49 22.15 Unpacking libx265-199:amd64 (3.5-2+b1) ... -#49 22.27 Selecting previously unselected package libxvidcore4:amd64. -#49 22.27 Preparing to unpack .../096-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -#49 22.27 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -#49 22.30 Selecting previously unselected package libzvbi-common. -#49 22.30 Preparing to unpack .../097-libzvbi-common_0.2.41-1_all.deb ... -#49 22.30 Unpacking libzvbi-common (0.2.41-1) ... -#49 22.32 Selecting previously unselected package libzvbi0:amd64. -#49 22.32 Preparing to unpack .../098-libzvbi0_0.2.41-1_amd64.deb ... -#49 22.32 Unpacking libzvbi0:amd64 (0.2.41-1) ... -#49 22.36 Selecting previously unselected package libavcodec59:amd64. -#49 22.36 Preparing to unpack .../099-libavcodec59_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 22.36 Unpacking libavcodec59:amd64 (7:5.1.6-0+deb12u1) ... -#49 22.72 Selecting previously unselected package libraw1394-11:amd64. -#49 22.72 Preparing to unpack .../100-libraw1394-11_2.1.2-2_amd64.deb ... -#49 22.72 Unpacking libraw1394-11:amd64 (2.1.2-2) ... -#49 22.74 Selecting previously unselected package libavc1394-0:amd64. -#49 22.74 Preparing to unpack .../101-libavc1394-0_0.5.4-5_amd64.deb ... -#49 22.74 Unpacking libavc1394-0:amd64 (0.5.4-5) ... -#49 22.76 Selecting previously unselected package libass9:amd64. -#49 22.76 Preparing to unpack .../102-libass9_1%3a0.17.1-1_amd64.deb ... -#49 22.76 Unpacking libass9:amd64 (1:0.17.1-1) ... -#49 22.78 Selecting previously unselected package libudfread0:amd64. -#49 22.78 Preparing to unpack .../103-libudfread0_1.1.2-1_amd64.deb ... -#49 22.78 Unpacking libudfread0:amd64 (1.1.2-1) ... -#49 22.79 Selecting previously unselected package libbluray2:amd64. -#49 22.79 Preparing to unpack .../104-libbluray2_1%3a1.3.4-1_amd64.deb ... -#49 22.79 Unpacking libbluray2:amd64 (1:1.3.4-1) ... -#49 22.81 Selecting previously unselected package libchromaprint1:amd64. -#49 22.81 Preparing to unpack .../105-libchromaprint1_1.5.1-2+b1_amd64.deb ... -#49 22.81 Unpacking libchromaprint1:amd64 (1.5.1-2+b1) ... -#49 22.83 Selecting previously unselected package libgme0:amd64. -#49 22.83 Preparing to unpack .../106-libgme0_0.6.3-6_amd64.deb ... -#49 22.83 Unpacking libgme0:amd64 (0.6.3-6) ... -#49 22.85 Selecting previously unselected package libmpg123-0:amd64. -#49 22.85 Preparing to unpack .../107-libmpg123-0_1.31.2-1+deb12u1_amd64.deb ... -#49 22.85 Unpacking libmpg123-0:amd64 (1.31.2-1+deb12u1) ... -#49 22.88 Selecting previously unselected package libvorbisfile3:amd64. -#49 22.88 Preparing to unpack .../108-libvorbisfile3_1.3.7-1_amd64.deb ... -#49 22.88 Unpacking libvorbisfile3:amd64 (1.3.7-1) ... -#49 22.89 Selecting previously unselected package libopenmpt0:amd64. -#49 22.89 Preparing to unpack .../109-libopenmpt0_0.6.9-1_amd64.deb ... -#49 22.89 Unpacking libopenmpt0:amd64 (0.6.9-1) ... -#49 22.95 Selecting previously unselected package librabbitmq4:amd64. -#49 22.95 Preparing to unpack .../110-librabbitmq4_0.11.0-1+b1_amd64.deb ... -#49 22.95 Unpacking librabbitmq4:amd64 (0.11.0-1+b1) ... -#49 22.97 Selecting previously unselected package libcjson1:amd64. -#49 22.97 Preparing to unpack .../111-libcjson1_1.7.15-1+deb12u2_amd64.deb ... -#49 22.97 Unpacking libcjson1:amd64 (1.7.15-1+deb12u2) ... -#49 22.98 Selecting previously unselected package libmbedcrypto7:amd64. -#49 22.98 Preparing to unpack .../112-libmbedcrypto7_2.28.3-1_amd64.deb ... -#49 22.99 Unpacking libmbedcrypto7:amd64 (2.28.3-1) ... -#49 23.02 Selecting previously unselected package librist4:amd64. -#49 23.02 Preparing to unpack .../113-librist4_0.2.7+dfsg-1_amd64.deb ... -#49 23.02 Unpacking librist4:amd64 (0.2.7+dfsg-1) ... -#49 23.04 Selecting previously unselected package libsrt1.5-gnutls:amd64. -#49 23.04 Preparing to unpack .../114-libsrt1.5-gnutls_1.5.1-1+deb12u1_amd64.deb ... -#49 23.04 Unpacking libsrt1.5-gnutls:amd64 (1.5.1-1+deb12u1) ... -#49 23.07 Selecting previously unselected package libssh-gcrypt-4:amd64. -#49 23.07 Preparing to unpack .../115-libssh-gcrypt-4_0.10.6-0+deb12u1_amd64.deb ... -#49 23.07 Unpacking libssh-gcrypt-4:amd64 (0.10.6-0+deb12u1) ... -#49 23.10 Selecting previously unselected package libnorm1:amd64. -#49 23.10 Preparing to unpack .../116-libnorm1_1.5.9+dfsg-2_amd64.deb ... -#49 23.10 Unpacking libnorm1:amd64 (1.5.9+dfsg-2) ... -#49 23.13 Selecting previously unselected package libpgm-5.3-0:amd64. -#49 23.13 Preparing to unpack .../117-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ... -#49 23.13 Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... -#49 23.16 Selecting previously unselected package libsodium23:amd64. -#49 23.16 Preparing to unpack .../118-libsodium23_1.0.18-1_amd64.deb ... -#49 23.16 Unpacking libsodium23:amd64 (1.0.18-1) ... -#49 23.18 Selecting previously unselected package libzmq5:amd64. -#49 23.18 Preparing to unpack .../119-libzmq5_4.3.4-6_amd64.deb ... -#49 23.18 Unpacking libzmq5:amd64 (4.3.4-6) ... -#49 23.21 Selecting previously unselected package libavformat59:amd64. -#49 23.21 Preparing to unpack .../120-libavformat59_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 23.22 Unpacking libavformat59:amd64 (7:5.1.6-0+deb12u1) ... -#49 23.30 Selecting previously unselected package libbs2b0:amd64. -#49 23.30 Preparing to unpack .../121-libbs2b0_3.1.0+dfsg-7_amd64.deb ... -#49 23.30 Unpacking libbs2b0:amd64 (3.1.0+dfsg-7) ... -#49 23.32 Selecting previously unselected package libflite1:amd64. -#49 23.32 Preparing to unpack .../122-libflite1_2.2-5_amd64.deb ... -#49 23.32 Unpacking libflite1:amd64 (2.2-5) ... -#49 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 1.698 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#54 1.835 Collecting pip -#54 1.985 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#54 1.988 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#54 2.259 Collecting setuptools -#54 2.302 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#54 2.405 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#54 3.628 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 1.5 MB/s eta 0:00:00 -#54 3.669 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#54 4.599 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 1.3 MB/s eta 0:00:00 -#54 4.771 Installing collected packages: setuptools, pip -#54 4.771 Attempting uninstall: setuptools -#54 4.774 Found existing installation: setuptools 65.5.1 -#54 4.795 Uninstalling setuptools-65.5.1: -#54 4.849 Successfully uninstalled setuptools-65.5.1 -#54 5.517 Attempting uninstall: pip -#54 5.520 Found existing installation: pip 24.0 -#54 5.578 Uninstalling pip-24.0: -#54 5.778 Successfully uninstalled pip-24.0 -#54 6.611 Successfully installed pip-25.0 setuptools-75.8.0 -#54 6.611 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#54 7.375 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu -#54 8.097 Collecting torch -#54 8.104 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (26 kB) -#54 8.649 Collecting torchvision -#54 8.655 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (6.1 kB) -#54 8.948 Collecting filelock (from torch) -#54 9.074 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#54 9.213 Collecting typing-extensions>=4.10.0 (from torch) -#54 9.221 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#54 9.513 Collecting networkx (from torch) -#54 9.548 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) -#54 9.850 Collecting jinja2 (from torch) -#54 9.883 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) -#54 10.04 Collecting fsspec (from torch) -#54 10.07 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) -#54 10.26 Collecting sympy==1.13.1 (from torch) -#54 10.27 Downloading https://download.pytorch.org/whl/sympy-1.13.1-py3-none-any.whl (6.2 MB) -#54 10.30 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 185.7 MB/s eta 0:00:00 -#54 10.61 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch) -#54 10.61 Downloading https://download.pytorch.org/whl/mpmath-1.3.0-py3-none-any.whl (536 kB) -#54 10.62 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 149.0 MB/s eta 0:00:00 -#54 11.01 Collecting numpy (from torchvision) -#54 11.05 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#54 11.61 Collecting pillow!=8.3.*,>=5.3.0 (from torchvision) -#54 11.65 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#54 11.86 Collecting MarkupSafe>=2.0 (from jinja2->torch) -#54 11.89 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) -#54 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 22.55 Selecting previously unselected package libelf1:amd64. -#42 22.55 Preparing to unpack .../082-libelf1_0.188-2.1_amd64.deb ... -#42 22.55 Unpacking libelf1:amd64 (0.188-2.1) ... -#42 22.58 Selecting previously unselected package libdw1:amd64. -#42 22.58 Preparing to unpack .../083-libdw1_0.188-2.1_amd64.deb ... -#42 22.59 Unpacking libdw1:amd64 (0.188-2.1) ... -#42 22.62 Selecting previously unselected package libunwind8:amd64. -#42 22.62 Preparing to unpack .../084-libunwind8_1.6.2-3_amd64.deb ... -#42 22.62 Unpacking libunwind8:amd64 (1.6.2-3) ... -#42 22.64 Selecting previously unselected package libcap2-bin. -#42 22.64 Preparing to unpack .../085-libcap2-bin_1%3a2.66-4_amd64.deb ... -#42 22.64 Unpacking libcap2-bin (1:2.66-4) ... -#42 22.66 Selecting previously unselected package libgstreamer1.0-0:amd64. -#42 22.66 Preparing to unpack .../086-libgstreamer1.0-0_1.22.0-2+deb12u1_amd64.deb ... -#42 22.67 Unpacking libgstreamer1.0-0:amd64 (1.22.0-2+deb12u1) ... -#42 22.76 Selecting previously unselected package liborc-0.4-0:amd64. -#42 22.76 Preparing to unpack .../087-liborc-0.4-0_1%3a0.4.33-2_amd64.deb ... -#42 22.76 Unpacking liborc-0.4-0:amd64 (1:0.4.33-2) ... -#42 22.79 Selecting previously unselected package iso-codes. -#42 22.79 Preparing to unpack .../088-iso-codes_4.15.0-1_all.deb ... -#42 22.79 Unpacking iso-codes (4.15.0-1) ... -#42 23.07 Selecting previously unselected package libgstreamer-plugins-base1.0-0:amd64. -#42 23.07 Preparing to unpack .../089-libgstreamer-plugins-base1.0-0_1.22.0-3+deb12u4_amd64.deb ... -#42 23.07 Unpacking libgstreamer-plugins-base1.0-0:amd64 (1.22.0-3+deb12u4) ... -#42 23.16 Selecting previously unselected package libharfbuzz0b:amd64. -#42 23.16 Preparing to unpack .../090-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ... -#42 23.16 Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... -#42 23.21 Selecting previously unselected package libharfbuzz-icu0:amd64. -#42 23.21 Preparing to unpack .../091-libharfbuzz-icu0_6.0.0+dfsg-3_amd64.deb ... -#42 23.21 Unpacking libharfbuzz-icu0:amd64 (6.0.0+dfsg-3) ... -#42 23.25 Selecting previously unselected package libhunspell-1.7-0:amd64. -#42 23.25 Preparing to unpack .../092-libhunspell-1.7-0_1.7.1-1_amd64.deb ... -#42 23.25 Unpacking libhunspell-1.7-0:amd64 (1.7.1-1) ... -#42 23.28 Selecting previously unselected package libhyphen0:amd64. -#42 23.28 Preparing to unpack .../093-libhyphen0_2.8.8-7_amd64.deb ... -#42 23.28 Unpacking libhyphen0:amd64 (2.8.8-7) ... -#42 23.30 Selecting previously unselected package x11-common. -#42 23.30 Preparing to unpack .../094-x11-common_1%3a7.7+23_all.deb ... -#42 23.30 Unpacking x11-common (1:7.7+23) ... -#42 23.32 Selecting previously unselected package libice6:amd64. -#42 23.32 Preparing to unpack .../095-libice6_2%3a1.0.10-1_amd64.deb ... -#42 23.32 Unpacking libice6:amd64 (2:1.0.10-1) ... -#42 23.34 Selecting previously unselected package libjpeg62-turbo:amd64. -#42 23.34 Preparing to unpack .../096-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... -#42 23.34 Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... -#42 23.37 Selecting previously unselected package liblcms2-2:amd64. -#42 23.37 Preparing to unpack .../097-liblcms2-2_2.14-2_amd64.deb ... -#42 23.37 Unpacking liblcms2-2:amd64 (2.14-2) ... -#42 23.40 Selecting previously unselected package libmythes-1.2-0:amd64. -#42 23.40 Preparing to unpack .../098-libmythes-1.2-0_2%3a1.2.5-1_amd64.deb ... -#42 23.40 Unpacking libmythes-1.2-0:amd64 (2:1.2.5-1) ... -#42 23.42 Selecting previously unselected package libnspr4:amd64. -#42 23.42 Preparing to unpack .../099-libnspr4_2%3a4.35-1_amd64.deb ... -#42 23.42 Unpacking libnspr4:amd64 (2:4.35-1) ... -#42 23.44 Selecting previously unselected package libnss3:amd64. -#42 23.44 Preparing to unpack .../100-libnss3_2%3a3.87.1-1+deb12u1_amd64.deb ... -#42 23.44 Unpacking libnss3:amd64 (2:3.87.1-1+deb12u1) ... -#42 23.55 Selecting previously unselected package libnumbertext-1.0-0:amd64. -#42 23.55 Preparing to unpack .../101-libnumbertext-1.0-0_1.0.11-1_amd64.deb ... -#42 23.56 Unpacking libnumbertext-1.0-0:amd64 (1.0.11-1) ... -#42 23.59 Selecting previously unselected package libopenjp2-7:amd64. -#42 23.60 Preparing to unpack .../102-libopenjp2-7_2.5.0-2+deb12u1_amd64.deb ... -#42 23.60 Unpacking libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... -#42 23.62 Selecting previously unselected package libboost-filesystem1.74.0:amd64. -#42 23.62 Preparing to unpack .../103-libboost-filesystem1.74.0_1.74.0+ds1-21_amd64.deb ... -#42 23.62 Unpacking libboost-filesystem1.74.0:amd64 (1.74.0+ds1-21) ... -#42 23.65 Selecting previously unselected package libboost-iostreams1.74.0:amd64. -#42 23.66 Preparing to unpack .../104-libboost-iostreams1.74.0_1.74.0+ds1-21_amd64.deb ... -#42 23.66 Unpacking libboost-iostreams1.74.0:amd64 (1.74.0+ds1-21) ... -#42 23.69 Selecting previously unselected package liborcus-parser-0.17-0:amd64. -#42 23.69 Preparing to unpack .../105-liborcus-parser-0.17-0_0.17.2-2+b2_amd64.deb ... -#42 23.69 Unpacking liborcus-parser-0.17-0:amd64 (0.17.2-2+b2) ... -#42 23.71 Selecting previously unselected package liborcus-0.17-0:amd64. -#42 23.71 Preparing to unpack .../106-liborcus-0.17-0_0.17.2-2+b2_amd64.deb ... -#42 23.71 Unpacking liborcus-0.17-0:amd64 (0.17.2-2+b2) ... -#42 23.75 Selecting previously unselected package libdeflate0:amd64. -#42 23.75 Preparing to unpack .../107-libdeflate0_1.14-1_amd64.deb ... -#42 23.75 Unpacking libdeflate0:amd64 (1.14-1) ... -#42 23.77 Selecting previously unselected package libjbig0:amd64. -#42 23.77 Preparing to unpack .../108-libjbig0_2.1-6.1_amd64.deb ... -#42 23.77 Unpacking libjbig0:amd64 (2.1-6.1) ... -#42 23.79 Selecting previously unselected package liblerc4:amd64. -#42 23.79 Preparing to unpack .../109-liblerc4_4.0.0+ds-2_amd64.deb ... -#42 23.79 Unpacking liblerc4:amd64 (4.0.0+ds-2) ... -#42 23.81 Selecting previously unselected package libwebp7:amd64. -#42 23.81 Preparing to unpack .../110-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... -#42 23.81 Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... -#42 23.85 Selecting previously unselected package libtiff6:amd64. -#42 23.85 Preparing to unpack .../111-libtiff6_4.5.0-6+deb12u2_amd64.deb ... -#42 23.85 Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... -#42 23.88 Selecting previously unselected package libpoppler126:amd64. -#42 23.88 Preparing to unpack .../112-libpoppler126_22.12.0-2+b1_amd64.deb ... -#42 23.88 Unpacking libpoppler126:amd64 (22.12.0-2+b1) ... -#42 23.97 Selecting previously unselected package libxslt1.1:amd64. -#42 23.97 Preparing to unpack .../113-libxslt1.1_1.1.35-1_amd64.deb ... -#42 23.97 Unpacking libxslt1.1:amd64 (1.1.35-1) ... -#42 24.00 Selecting previously unselected package libyajl2:amd64. -#42 24.00 Preparing to unpack .../114-libyajl2_2.1.0-3+deb12u2_amd64.deb ... -#42 24.00 Unpacking libyajl2:amd64 (2.1.0-3+deb12u2) ... -#42 24.02 Selecting previously unselected package libraptor2-0:amd64. -#42 24.02 Preparing to unpack .../115-libraptor2-0_2.0.15-4_amd64.deb ... -#42 24.02 Unpacking libraptor2-0:amd64 (2.0.15-4) ... -#42 24.04 Selecting previously unselected package libltdl7:amd64. -#42 24.05 Preparing to unpack .../116-libltdl7_2.4.7-7~deb12u1_amd64.deb ... -#42 24.05 Unpacking libltdl7:amd64 (2.4.7-7~deb12u1) ... -#42 24.07 Selecting previously unselected package libmhash2:amd64. -#42 24.07 Preparing to unpack .../117-libmhash2_0.9.9.9-9_amd64.deb ... -#42 24.07 Unpacking libmhash2:amd64 (0.9.9.9-9) ... -#42 24.09 Selecting previously unselected package librasqal3:amd64. -#42 24.09 Preparing to unpack .../118-librasqal3_0.9.33-2_amd64.deb ... -#42 24.09 Unpacking librasqal3:amd64 (0.9.33-2) ... -#42 24.12 Selecting previously unselected package librdf0:amd64. -#42 24.12 Preparing to unpack .../119-librdf0_1.0.17-3_amd64.deb ... -#42 24.12 Unpacking librdf0:amd64 (1.0.17-3) ... -#42 24.14 Selecting previously unselected package librevenge-0.0-0:amd64. -#42 24.14 Preparing to unpack .../120-librevenge-0.0-0_0.0.5-3_amd64.deb ... -#42 24.14 Unpacking librevenge-0.0-0:amd64 (0.0.5-3) ... -#42 24.18 Selecting previously unselected package libsm6:amd64. -#42 24.18 Preparing to unpack .../121-libsm6_2%3a1.2.3-1_amd64.deb ... -#42 24.18 Unpacking libsm6:amd64 (2:1.2.3-1) ... -#42 24.20 Selecting previously unselected package libx11-xcb1:amd64. -#42 24.20 Preparing to unpack .../122-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ... -#42 24.20 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#42 24.22 Selecting previously unselected package libxinerama1:amd64. -#42 24.22 Preparing to unpack .../123-libxinerama1_2%3a1.1.4-3_amd64.deb ... -#42 24.22 Unpacking libxinerama1:amd64 (2:1.1.4-3) ... -#42 24.23 Selecting previously unselected package libxmlsec1:amd64. -#42 24.24 Preparing to unpack .../124-libxmlsec1_1.2.37-2_amd64.deb ... -#42 24.24 Unpacking libxmlsec1:amd64 (1.2.37-2) ... -#42 24.26 Selecting previously unselected package libxmlsec1-nss:amd64. -#42 24.26 Preparing to unpack .../125-libxmlsec1-nss_1.2.37-2_amd64.deb ... -#42 24.26 Unpacking libxmlsec1-nss:amd64 (1.2.37-2) ... -#42 24.28 Selecting previously unselected package libxrandr2:amd64. -#42 24.28 Preparing to unpack .../126-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ... -#42 24.28 Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ... -#42 24.30 Selecting previously unselected package libzxing2:amd64. -#42 24.30 Preparing to unpack .../127-libzxing2_1.4.0-3+b1_amd64.deb ... -#42 24.30 Unpacking libzxing2:amd64 (1.4.0-3+b1) ... -#42 24.35 Selecting previously unselected package libreoffice-core. -#42 24.35 Preparing to unpack .../128-libreoffice-core_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 24.36 Unpacking libreoffice-core (4:7.4.7-1+deb12u6) ... -#42 25.07 Selecting previously unselected package libreoffice-base-core. -#42 25.08 Preparing to unpack .../129-libreoffice-base-core_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 25.08 Unpacking libreoffice-base-core (4:7.4.7-1+deb12u6) ... -#42 25.15 Selecting previously unselected package libreoffice-base-drivers. -#42 25.15 Preparing to unpack .../130-libreoffice-base-drivers_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 25.16 Unpacking libreoffice-base-drivers (4:7.4.7-1+deb12u6) ... -#42 25.21 Selecting previously unselected package libreoffice-base. -#42 25.22 Preparing to unpack .../131-libreoffice-base_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 25.22 No diversion 'diversion of /usr/lib/libreoffice/share/basic/dialog.xlc to /usr/lib/libreoffice/share/basic/dialog.xlc.noaccess by libreoffice-base', none removed. -#42 25.23 No diversion 'diversion of /usr/lib/libreoffice/share/basic/script.xlc to /usr/lib/libreoffice/share/basic/script.xlc.noaccess by libreoffice-base', none removed. -#42 25.24 Unpacking libreoffice-base (4:7.4.7-1+deb12u6) ... -#42 25.37 Selecting previously unselected package libpython3.11-minimal:amd64. -#42 25.37 Preparing to unpack .../132-libpython3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... -#42 25.37 Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... -#42 25.44 Selecting previously unselected package python3.11-minimal. -#42 25.45 Preparing to unpack .../133-python3.11-minimal_3.11.2-6+deb12u5_amd64.deb ... -#42 25.45 Unpacking python3.11-minimal (3.11.2-6+deb12u5) ... -#42 25.63 Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ... -#42 25.63 Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... -#42 25.63 Setting up python3.11-minimal (3.11.2-6+deb12u5) ... -#42 26.28 Selecting previously unselected package python3-minimal. -#42 26.28 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 14934 files and directories currently installed.) -#42 26.29 Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ... -#42 26.29 Unpacking python3-minimal (3.11.2-1+b1) ... -#42 26.31 Selecting previously unselected package media-types. -#42 26.31 Preparing to unpack .../media-types_10.0.0_all.deb ... -#42 26.31 Unpacking media-types (10.0.0) ... -#42 26.32 Selecting previously unselected package libpython3.11-stdlib:amd64. -#42 26.33 Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u5_amd64.deb ... -#42 26.33 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... -#42 ... - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 15.27 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) -#37 15.28 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#37 15.32 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) -#37 15.33 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) -#37 15.37 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/requirements.txt (line 7)) -#37 15.38 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#37 15.49 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/lvms/src/requirements.txt (line 8)) -#37 15.50 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) -#37 15.58 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 15.59 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) -#37 15.79 Collecting torch>=1.11 (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 15.79 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl.metadata (28 kB) -#37 15.93 Collecting optimum-habana (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 15.94 Downloading optimum_habana-1.15.0-py3-none-any.whl.metadata (28 kB) -#37 15.97 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 15.98 Downloading transformers-4.45.2-py3-none-any.whl.metadata (44 kB) -#37 16.12 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/lvms/src/requirements.txt (line 10)) -#37 16.13 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#37 16.20 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/lvms/src/requirements.txt (line 14)) -#37 16.21 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#37 16.24 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/lvms/src/requirements.txt (line 14)) -#37 16.25 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#37 16.40 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) -#37 16.41 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#37 16.50 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 16.51 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#37 16.55 Collecting aiosignal>=1.1.2 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 16.56 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#37 16.61 Collecting attrs>=17.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 16.62 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#37 16.77 Collecting frozenlist>=1.1.1 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 16.78 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#37 17.02 Collecting multidict<7.0,>=4.5 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 17.03 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#37 17.10 Collecting propcache>=0.2.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 17.11 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#37 17.48 Collecting yarl<2.0,>=1.17.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 17.48 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#37 17.56 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/lvms/src/requirements.txt (line 6)) -#37 17.57 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#37 17.66 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 17.67 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) -#37 17.79 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 17.80 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) -#37 17.85 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 17.85 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) -#37 18.01 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 18.02 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#37 18.08 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 18.08 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) -#37 18.13 Collecting httpx<1,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 18.14 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#37 18.25 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 18.26 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) -#37 18.36 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 18.37 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) -#37 18.44 Collecting python-dateutil>=2.8.2 (from pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 18.44 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#37 18.58 Collecting pytz>=2020.1 (from pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 18.58 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) -#37 18.63 Collecting tzdata>=2022.7 (from pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 18.64 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) -#37 18.78 Collecting charset-normalizer<4,>=2 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 18.79 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#37 18.83 Collecting idna<4,>=2.5 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 18.84 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#37 18.90 Collecting urllib3<3,>=1.21.1 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 18.91 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#37 18.95 Collecting certifi>=2017.4.17 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 18.95 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#37 18.99 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 19.00 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#37 19.06 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 19.07 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#37 19.12 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/requirements.txt (line 3)) -#37 19.13 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#37 19.22 Collecting networkx (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.23 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) -#37 19.28 Collecting jinja2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.29 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) -#37 19.34 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.34 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#37 19.38 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.39 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#37 19.43 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.44 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#37 19.48 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.49 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#37 19.54 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.54 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#37 19.59 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.60 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#37 19.65 Collecting nvidia-curand-cu12==10.3.5.147 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.66 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#37 19.70 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.72 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#37 19.76 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.77 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#37 19.81 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.81 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) -#37 19.85 Collecting nvidia-nccl-cu12==2.21.5 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.86 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) -#37 19.89 Collecting nvidia-nvtx-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.90 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) -#37 19.93 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.94 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#37 19.98 Collecting triton==3.2.0 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 19.99 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) -#37 20.04 Collecting sympy==1.13.1 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 20.04 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) -#37 20.14 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 20.15 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) -#37 20.74 Collecting regex!=2019.12.17 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 20.75 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#37 21.03 Collecting safetensors>=0.4.1 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 21.03 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#37 21.32 Collecting tokenizers<0.21,>=0.20 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 21.33 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) -#37 21.43 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 21.44 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) -#37 21.50 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 21.51 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) -#37 21.55 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 21.56 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) -#37 21.84 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 21.85 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#37 21.92 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 21.92 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) -#37 21.97 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 21.98 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) -#37 22.02 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 22.03 Downloading pycollada-0.8.tar.gz (108 kB) -#37 22.08 Preparing metadata (setup.py): started -#37 22.27 Preparing metadata (setup.py): finished with status 'done' -#37 22.27 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) (75.8.0) -#37 22.45 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 22.46 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) -#37 22.52 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 22.53 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) -#37 22.65 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 22.66 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) -#37 22.73 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 22.74 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#37 22.85 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 22.86 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) -#37 22.92 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 22.93 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) -#37 22.99 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 23.00 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) -#37 23.09 Collecting accelerate<0.34.0,>=0.33.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 23.09 Downloading accelerate-0.33.0-py3-none-any.whl.metadata (18 kB) -#37 23.16 Collecting diffusers<0.32.0,>=0.31.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 23.17 Downloading diffusers-0.31.0-py3-none-any.whl.metadata (18 kB) -#37 23.31 Collecting sentence-transformers==3.2.1 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 23.32 Downloading sentence_transformers-3.2.1-py3-none-any.whl.metadata (10 kB) -#37 23.49 Collecting scikit-learn (from sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 23.50 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) -#37 23.56 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 23.57 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#37 23.73 Collecting psutil (from accelerate<0.34.0,>=0.33.0->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 23.74 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) -#37 23.84 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/requirements.txt (line 3)) -#37 23.84 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#37 24.02 Collecting httpcore==1.* (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/requirements.txt (line 5)) -#37 24.03 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#37 24.22 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 24.23 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#37 24.38 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/lvms/src/requirements.txt (line 1)) -#37 24.38 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#37 24.65 Collecting MarkupSafe>=2.0 (from jinja2->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 24.66 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) -#37 24.73 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 24.74 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) -#37 24.81 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 24.82 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) -#37 25.19 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/requirements.txt (line 2)) -#37 25.21 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) -#37 ... - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 23.46 Setting up libdpkg-perl (1.21.22) ... -#48 23.46 Setting up libxcb-dri2-0:amd64 (1.15-1) ... -#48 23.46 Setting up libdrm2:amd64 (2.4.114-1+b1) ... -#48 23.47 Setting up libxcb-randr0:amd64 (1.15-1) ... -#48 23.47 Setting up cpp (4:12.2.0-3) ... -#48 23.47 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... -#48 23.47 Setting up libc6-dev:amd64 (2.36-9+deb12u9) ... -#48 23.48 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#48 23.48 Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... -#48 23.48 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... -#48 23.49 Setting up libfontconfig1:amd64 (2.14.1-4) ... -#48 23.49 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -#48 23.50 Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ... -#48 23.50 Setting up binutils-x86-64-linux-gnu (2.40-2) ... -#48 23.50 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#48 23.50 Setting up libxcb-dri3-0:amd64 (1.15-1) ... -#48 23.50 Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ... -#48 23.50 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#48 23.51 Setting up fontconfig (2.14.1-4) ... -#48 23.51 Regenerating fonts cache... done. -#48 25.52 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#48 25.53 Setting up libxdamage1:amd64 (1:1.1.6-1) ... -#48 25.53 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... -#48 25.53 Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... -#48 25.53 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#48 25.53 Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ... -#48 25.53 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... -#48 25.54 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#48 25.54 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... -#48 25.54 Setting up binutils (2.40-2) ... -#48 25.55 Setting up libcairo2:amd64 (1.16.0-7) ... -#48 25.55 Setting up dpkg-dev (1.21.22) ... -#48 25.55 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#48 25.55 Setting up adwaita-icon-theme (43-1) ... -#48 25.61 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -#48 25.61 Setting up gcc-12 (12.2.0-14) ... -#48 25.62 Setting up libxfixes3:amd64 (1:6.0.0-2) ... -#48 25.62 Setting up libxinerama1:amd64 (2:1.1.4-3) ... -#48 25.62 Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ... -#48 25.62 Setting up libcups2:amd64 (2.4.2-3+deb12u8) ... -#48 25.62 Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... -#48 25.63 Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... -#48 25.63 Setting up g++-12 (12.2.0-14) ... -#48 25.63 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#48 25.63 Setting up libxi6:amd64 (2:1.8-1+b1) ... -#48 25.64 Setting up libglx0:amd64 (1.6.0-1) ... -#48 25.64 Setting up libxtst6:amd64 (2:1.2.3-1.1) ... -#48 25.64 Setting up libxcursor1:amd64 (1:1.2.1-1) ... -#48 25.64 Setting up gcc (4:12.2.0-3) ... -#48 25.65 Setting up libgl1:amd64 (1.6.0-1) ... -#48 25.65 Setting up openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... -#48 25.68 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode -#48 25.68 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/jpackage to provide /usr/bin/jpackage (jpackage) in auto mode -#48 25.69 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode -#48 25.69 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode -#48 25.69 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode -#48 25.70 Setting up libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... -#48 25.70 Setting up g++ (4:12.2.0-3) ... -#48 25.70 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode -#48 25.70 Setting up build-essential (12.9) ... -#48 25.70 Setting up libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... -#48 25.72 Processing triggers for libc-bin (2.36-9+deb12u9) ... -#48 25.73 Processing triggers for ca-certificates-java (20230710~deb12u1) ... -#48 25.93 Adding debian:ACCVRAIZ1.pem -#48 25.93 Adding debian:AC_RAIZ_FNMT-RCM.pem -#48 25.95 Adding debian:AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem -#48 25.95 Adding debian:ANF_Secure_Server_Root_CA.pem -#48 25.95 Adding debian:Actalis_Authentication_Root_CA.pem -#48 25.95 Adding debian:AffirmTrust_Commercial.pem -#48 25.96 Adding debian:AffirmTrust_Networking.pem -#48 25.96 Adding debian:AffirmTrust_Premium.pem -#48 25.96 Adding debian:AffirmTrust_Premium_ECC.pem -#48 25.96 Adding debian:Amazon_Root_CA_1.pem -#48 25.96 Adding debian:Amazon_Root_CA_2.pem -#48 25.96 Adding debian:Amazon_Root_CA_3.pem -#48 25.97 Adding debian:Amazon_Root_CA_4.pem -#48 25.97 Adding debian:Atos_TrustedRoot_2011.pem -#48 25.97 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem -#48 25.97 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068_2.pem -#48 25.98 Adding debian:Baltimore_CyberTrust_Root.pem -#48 25.98 Adding debian:Buypass_Class_2_Root_CA.pem -#48 25.98 Adding debian:Buypass_Class_3_Root_CA.pem -#48 25.98 Adding debian:CA_Disig_Root_R2.pem -#48 25.99 Adding debian:CFCA_EV_ROOT.pem -#48 25.99 Adding debian:COMODO_Certification_Authority.pem -#48 25.99 Adding debian:COMODO_ECC_Certification_Authority.pem -#48 25.99 Adding debian:COMODO_RSA_Certification_Authority.pem -#48 25.99 Adding debian:Certainly_Root_E1.pem -#48 25.99 Adding debian:Certainly_Root_R1.pem -#48 26.00 Adding debian:Certigna.pem -#48 26.00 Adding debian:Certigna_Root_CA.pem -#48 26.00 Adding debian:Certum_EC-384_CA.pem -#48 26.00 Adding debian:Certum_Trusted_Network_CA.pem -#48 26.00 Adding debian:Certum_Trusted_Network_CA_2.pem -#48 26.01 Adding debian:Certum_Trusted_Root_CA.pem -#48 26.01 Adding debian:Comodo_AAA_Services_root.pem -#48 26.01 Adding debian:D-TRUST_BR_Root_CA_1_2020.pem -#48 26.01 Adding debian:D-TRUST_EV_Root_CA_1_2020.pem -#48 26.01 Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem -#48 26.02 Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem -#48 26.02 Adding debian:DigiCert_Assured_ID_Root_CA.pem -#48 26.02 Adding debian:DigiCert_Assured_ID_Root_G2.pem -#48 26.02 Adding debian:DigiCert_Assured_ID_Root_G3.pem -#48 26.02 Adding debian:DigiCert_Global_Root_CA.pem -#48 26.02 Adding debian:DigiCert_Global_Root_G2.pem -#48 26.02 Adding debian:DigiCert_Global_Root_G3.pem -#48 26.03 Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem -#48 26.03 Adding debian:DigiCert_TLS_ECC_P384_Root_G5.pem -#48 26.03 Adding debian:DigiCert_TLS_RSA4096_Root_G5.pem -#48 26.03 Adding debian:DigiCert_Trusted_Root_G4.pem -#48 26.03 Adding debian:E-Tugra_Certification_Authority.pem -#48 26.03 Adding debian:E-Tugra_Global_Root_CA_ECC_v3.pem -#48 26.04 Adding debian:E-Tugra_Global_Root_CA_RSA_v3.pem -#48 26.04 Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem -#48 26.04 Adding debian:Entrust_Root_Certification_Authority.pem -#48 26.04 Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem -#48 26.04 Adding debian:Entrust_Root_Certification_Authority_-_G2.pem -#48 26.04 Adding debian:Entrust_Root_Certification_Authority_-_G4.pem -#48 26.05 Adding debian:GDCA_TrustAUTH_R5_ROOT.pem -#48 26.05 Adding debian:GLOBALTRUST_2020.pem -#48 26.05 Adding debian:GTS_Root_R1.pem -#48 26.05 Adding debian:GTS_Root_R2.pem -#48 26.05 Adding debian:GTS_Root_R3.pem -#48 26.05 Adding debian:GTS_Root_R4.pem -#48 26.05 Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem -#48 26.06 Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem -#48 26.06 Adding debian:GlobalSign_Root_CA.pem -#48 26.06 Adding debian:GlobalSign_Root_CA_-_R3.pem -#48 26.06 Adding debian:GlobalSign_Root_CA_-_R6.pem -#48 26.06 Adding debian:GlobalSign_Root_E46.pem -#48 26.06 Adding debian:GlobalSign_Root_R46.pem -#48 26.07 Adding debian:Go_Daddy_Class_2_CA.pem -#48 26.07 Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem -#48 26.07 Adding debian:HARICA_TLS_ECC_Root_CA_2021.pem -#48 26.07 Adding debian:HARICA_TLS_RSA_Root_CA_2021.pem -#48 26.07 Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem -#48 26.07 Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem -#48 26.07 Adding debian:HiPKI_Root_CA_-_G1.pem -#48 26.08 Adding debian:Hongkong_Post_Root_CA_1.pem -#48 26.08 Adding debian:Hongkong_Post_Root_CA_3.pem -#48 26.08 Adding debian:ISRG_Root_X1.pem -#48 26.08 Adding debian:ISRG_Root_X2.pem -#48 26.08 Adding debian:IdenTrust_Commercial_Root_CA_1.pem -#48 26.08 Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem -#48 26.09 Adding debian:Izenpe.com.pem -#48 26.09 Adding debian:Microsec_e-Szigno_Root_CA_2009.pem -#48 26.09 Adding debian:Microsoft_ECC_Root_Certificate_Authority_2017.pem -#48 26.09 Adding debian:Microsoft_RSA_Root_Certificate_Authority_2017.pem -#48 26.09 Adding debian:NAVER_Global_Root_Certification_Authority.pem -#48 26.10 Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem -#48 26.10 Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem -#48 26.10 Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem -#48 26.10 Adding debian:QuoVadis_Root_CA_1_G3.pem -#48 26.10 Adding debian:QuoVadis_Root_CA_2.pem -#48 26.10 Adding debian:QuoVadis_Root_CA_2_G3.pem -#48 26.11 Adding debian:QuoVadis_Root_CA_3.pem -#48 26.11 Adding debian:QuoVadis_Root_CA_3_G3.pem -#48 26.11 Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem -#48 26.11 Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem -#48 26.11 Adding debian:SSL.com_Root_Certification_Authority_ECC.pem -#48 26.12 Adding debian:SSL.com_Root_Certification_Authority_RSA.pem -#48 26.12 Adding debian:SZAFIR_ROOT_CA2.pem -#48 26.12 Adding debian:SecureSign_RootCA11.pem -#48 26.12 Adding debian:SecureTrust_CA.pem -#48 26.12 Adding debian:Secure_Global_CA.pem -#48 26.12 Adding debian:Security_Communication_ECC_RootCA1.pem -#48 26.12 Adding debian:Security_Communication_RootCA2.pem -#48 26.12 Adding debian:Security_Communication_RootCA3.pem -#48 26.13 Adding debian:Security_Communication_Root_CA.pem -#48 26.13 Adding debian:Starfield_Class_2_CA.pem -#48 26.13 Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem -#48 26.13 Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem -#48 26.13 Adding debian:SwissSign_Gold_CA_-_G2.pem -#48 26.13 Adding debian:SwissSign_Silver_CA_-_G2.pem -#48 26.14 Adding debian:T-TeleSec_GlobalRoot_Class_2.pem -#48 26.14 Adding debian:T-TeleSec_GlobalRoot_Class_3.pem -#48 26.14 Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem -#48 26.14 Adding debian:TWCA_Global_Root_CA.pem -#48 26.14 Adding debian:TWCA_Root_Certification_Authority.pem -#48 26.14 Adding debian:TeliaSonera_Root_CA_v1.pem -#48 26.14 Adding debian:Telia_Root_CA_v2.pem -#48 26.15 Adding debian:TrustCor_ECA-1.pem -#48 26.15 Adding debian:TrustCor_RootCert_CA-1.pem -#48 26.15 Adding debian:TrustCor_RootCert_CA-2.pem -#48 26.15 Adding debian:Trustwave_Global_Certification_Authority.pem -#48 26.15 Adding debian:Trustwave_Global_ECC_P256_Certification_Authority.pem -#48 26.15 Adding debian:Trustwave_Global_ECC_P384_Certification_Authority.pem -#48 26.15 Adding debian:TunTrust_Root_CA.pem -#48 26.16 Adding debian:UCA_Extended_Validation_Root.pem -#48 26.16 Adding debian:UCA_Global_G2_Root.pem -#48 26.16 Adding debian:USERTrust_ECC_Certification_Authority.pem -#48 26.16 Adding debian:USERTrust_RSA_Certification_Authority.pem -#48 26.16 Adding debian:XRamp_Global_CA_Root.pem -#48 26.16 Adding debian:certSIGN_ROOT_CA.pem -#48 26.17 Adding debian:certSIGN_Root_CA_G2.pem -#48 26.17 Adding debian:e-Szigno_Root_CA_2017.pem -#48 26.17 Adding debian:ePKI_Root_Certification_Authority.pem -#48 26.17 Adding debian:emSign_ECC_Root_CA_-_C3.pem -#48 26.17 Adding debian:emSign_ECC_Root_CA_-_G3.pem -#48 26.17 Adding debian:emSign_Root_CA_-_C1.pem -#48 26.17 Adding debian:emSign_Root_CA_-_G1.pem -#48 26.17 Adding debian:vTrus_ECC_Root_CA.pem -#48 26.17 Adding debian:vTrus_Root_CA.pem -#48 26.21 done. -#48 26.21 Setting up default-jre-headless (2:1.17-74) ... -#48 26.21 Setting up openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... -#48 26.22 Setting up default-jre (2:1.17-74) ... -#48 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 12.25 Collecting SQLAlchemy<3,>=1.4 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 12.26 Downloading SQLAlchemy-2.0.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) -#44 13.03 Collecting aiohttp<4.0.0,>=3.8.3 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 13.05 Downloading aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#44 13.08 Collecting async-timeout<5.0.0,>=4.0.0 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 13.10 Downloading async_timeout-4.0.3-py3-none-any.whl.metadata (4.2 kB) -#44 13.17 Collecting langchain-core<0.4.0,>=0.3.33 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 13.18 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) -#44 13.30 Collecting langchain-text-splitters<0.4.0,>=0.3.3 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 13.31 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) -#44 13.45 Collecting langsmith<0.4,>=0.1.17 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 13.46 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) -#44 13.48 Collecting numpy>=1.17.3 (from docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 13.49 Downloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#44 13.62 Collecting tenacity!=8.4.0,<10,>=8.1.0 (from langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 13.63 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) -#44 13.69 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) -#44 13.70 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#44 13.79 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) -#44 13.80 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) -#44 13.91 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) -#44 13.92 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#44 13.98 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) -#44 13.99 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#44 14.06 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) -#44 14.07 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#44 15.17 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) -#44 15.18 Downloading grpcio-1.70.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#44 15.25 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) -#44 15.26 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) -#44 15.32 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 6)) -#44 15.33 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#44 15.48 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 7)) -#44 15.51 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) -#44 15.59 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 8)) -#44 15.60 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#44 15.77 Collecting networkx (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 15.78 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) -#44 15.85 Collecting jinja2 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 15.86 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) -#44 15.90 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 15.91 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#44 15.96 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 15.97 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#44 16.01 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.02 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#44 16.07 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.09 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#44 16.13 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.14 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#44 16.19 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.20 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#44 16.26 Collecting nvidia-curand-cu12==10.3.5.147 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.27 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#44 16.32 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.33 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#44 16.39 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.40 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#44 16.45 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.46 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) -#44 16.65 Collecting nvidia-nccl-cu12==2.21.5 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.66 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) -#44 16.71 Collecting nvidia-nvtx-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.72 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) -#44 16.76 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.77 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#44 16.81 Collecting triton==3.2.0 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.82 Downloading triton-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) -#44 16.88 Collecting sympy==1.13.1 (from torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.89 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) -#44 16.98 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 16.99 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) -#44 17.92 Collecting regex!=2019.12.17 (from transformers->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) -#44 17.93 Downloading regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#44 18.44 Collecting tokenizers<0.22,>=0.21 (from transformers->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) -#44 18.45 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) -#44 18.77 Collecting safetensors>=0.4.1 (from transformers->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 13)) -#44 18.78 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#44 18.87 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 14)) -#44 18.88 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#44 18.92 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 14)) -#44 18.93 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#44 19.01 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 19.02 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#44 19.06 Collecting aiosignal>=1.1.2 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 19.07 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#44 19.13 Collecting attrs>=17.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 19.14 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#44 19.30 Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 19.31 Downloading frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#44 19.71 Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 19.73 Downloading multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#44 19.82 Collecting propcache>=0.2.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 19.83 Downloading propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#44 20.49 Collecting yarl<2.0,>=1.17.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 20.50 Downloading yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#44 20.84 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) -#44 20.86 Downloading wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#44 20.94 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 5)) -#44 20.96 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#44 21.08 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 21.09 Downloading jaxlib-0.5.0-cp310-cp310-manylinux2014_x86_64.whl.metadata (978 bytes) -#44 21.18 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 21.19 Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) -#44 21.25 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 21.26 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) -#44 21.57 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 21.58 Downloading scipy-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#44 21.66 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 21.67 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) -#44 21.83 Collecting httpx<1,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 21.84 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#44 21.94 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 21.95 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) -#44 22.13 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 22.14 Downloading zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) -#44 22.22 Collecting python-dateutil>=2.8.2 (from pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 22.23 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#44 22.41 Collecting pytz>=2020.1 (from pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 ... - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 25.47 Collecting joblib>=1.2.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 25.48 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) -#37 25.52 Collecting threadpoolctl>=3.1.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/requirements.txt (line 9)) -#37 25.54 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) -#37 25.58 Downloading pydantic-2.7.2-py3-none-any.whl (409 kB) -#37 25.64 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#37 25.71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 33.5 MB/s eta 0:00:00 -#37 25.72 Downloading datasets-3.2.0-py3-none-any.whl (480 kB) -#37 25.73 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#37 25.74 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#37 25.76 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) -#37 25.77 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) -#37 25.78 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) -#37 25.79 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) -#37 25.80 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) -#37 25.81 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) -#37 25.84 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) -#37 25.85 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) -#37 25.86 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) -#37 25.90 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#37 25.91 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) -#37 25.92 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#37 25.93 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#37 25.94 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#37 25.95 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) -#37 26.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 217.4 MB/s eta 0:00:00 -#37 26.15 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#37 26.16 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#37 26.19 Downloading dill-0.3.8-py3-none-any.whl (116 kB) -#37 26.19 Downloading fsspec-2024.9.0-py3-none-any.whl (179 kB) -#37 26.20 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) -#37 26.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 342.9 MB/s eta 0:00:00 -#37 26.22 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#37 26.24 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) -#37 26.25 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) -#37 26.26 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 339.6 MB/s eta 0:00:00 -#37 26.27 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) -#37 26.29 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) -#37 26.31 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#37 26.33 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 398.2 MB/s eta 0:00:00 -#37 26.34 Downloading multiprocess-0.70.16-py311-none-any.whl (143 kB) -#37 26.37 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#37 26.38 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#37 26.39 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) -#37 26.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 417.8 MB/s eta 0:00:00 -#37 26.43 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#37 26.45 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 345.7 MB/s eta 0:00:00 -#37 26.46 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#37 26.49 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) -#37 26.50 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) -#37 26.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 467.8 MB/s eta 0:00:00 -#37 26.60 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#37 26.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 556.2 MB/s eta 0:00:00 -#37 26.61 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#37 26.62 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#37 26.63 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#37 26.63 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) -#37 26.66 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl (766.7 MB) -#37 ... - -#48 [opea/multimodalqna-ui:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev wget -#48 DONE 29.4s - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 24.13 Selecting previously unselected package libserd-0-0:amd64. -#49 24.13 Preparing to unpack .../123-libserd-0-0_0.30.16-1_amd64.deb ... -#49 24.13 Unpacking libserd-0-0:amd64 (0.30.16-1) ... -#49 24.15 Selecting previously unselected package libsord-0-0:amd64. -#49 24.15 Preparing to unpack .../124-libsord-0-0_0.16.14+git221008-1_amd64.deb ... -#49 24.15 Unpacking libsord-0-0:amd64 (0.16.14+git221008-1) ... -#49 24.16 Selecting previously unselected package libsratom-0-0:amd64. -#49 24.17 Preparing to unpack .../125-libsratom-0-0_0.6.14-1_amd64.deb ... -#49 24.17 Unpacking libsratom-0-0:amd64 (0.6.14-1) ... -#49 24.18 Selecting previously unselected package liblilv-0-0:amd64. -#49 24.18 Preparing to unpack .../126-liblilv-0-0_0.24.14-1_amd64.deb ... -#49 24.18 Unpacking liblilv-0-0:amd64 (0.24.14-1) ... -#49 24.20 Selecting previously unselected package libmysofa1:amd64. -#49 24.20 Preparing to unpack .../127-libmysofa1_1.3.1~dfsg0-1_amd64.deb ... -#49 24.20 Unpacking libmysofa1:amd64 (1.3.1~dfsg0-1) ... -#49 24.25 Selecting previously unselected package libepoxy0:amd64. -#49 24.25 Preparing to unpack .../128-libepoxy0_1.5.10-1_amd64.deb ... -#49 24.25 Unpacking libepoxy0:amd64 (1.5.10-1) ... -#49 24.28 Selecting previously unselected package libvulkan1:amd64. -#49 24.28 Preparing to unpack .../129-libvulkan1_1.3.239.0-1_amd64.deb ... -#49 24.28 Unpacking libvulkan1:amd64 (1.3.239.0-1) ... -#49 24.30 Selecting previously unselected package libplacebo208:amd64. -#49 24.30 Preparing to unpack .../130-libplacebo208_4.208.0-3_amd64.deb ... -#49 24.30 Unpacking libplacebo208:amd64 (4.208.0-3) ... -#49 24.46 Selecting previously unselected package libblas3:amd64. -#49 24.46 Preparing to unpack .../131-libblas3_3.11.0-2_amd64.deb ... -#49 24.47 Unpacking libblas3:amd64 (3.11.0-2) ... -#49 24.49 Selecting previously unselected package libquadmath0:amd64. -#49 24.49 Preparing to unpack .../132-libquadmath0_12.2.0-14_amd64.deb ... -#49 24.49 Unpacking libquadmath0:amd64 (12.2.0-14) ... -#49 24.51 Selecting previously unselected package libgfortran5:amd64. -#49 24.51 Preparing to unpack .../133-libgfortran5_12.2.0-14_amd64.deb ... -#49 24.52 Unpacking libgfortran5:amd64 (12.2.0-14) ... -#49 24.59 Selecting previously unselected package liblapack3:amd64. -#49 24.59 Preparing to unpack .../134-liblapack3_3.11.0-2_amd64.deb ... -#49 24.59 Unpacking liblapack3:amd64 (3.11.0-2) ... -#49 24.76 Selecting previously unselected package libasyncns0:amd64. -#49 24.76 Preparing to unpack .../135-libasyncns0_0.8-6+b3_amd64.deb ... -#49 24.76 Unpacking libasyncns0:amd64 (0.8-6+b3) ... -#49 24.77 Selecting previously unselected package libflac12:amd64. -#49 24.77 Preparing to unpack .../136-libflac12_1.4.2+ds-2_amd64.deb ... -#49 24.77 Unpacking libflac12:amd64 (1.4.2+ds-2) ... -#49 24.80 Selecting previously unselected package libsndfile1:amd64. -#49 24.80 Preparing to unpack .../137-libsndfile1_1.2.0-1_amd64.deb ... -#49 24.80 Unpacking libsndfile1:amd64 (1.2.0-1) ... -#49 24.83 Selecting previously unselected package libpulse0:amd64. -#49 24.83 Preparing to unpack .../138-libpulse0_16.1+dfsg1-2+b1_amd64.deb ... -#49 24.84 Unpacking libpulse0:amd64 (16.1+dfsg1-2+b1) ... -#49 24.87 Selecting previously unselected package libsphinxbase3:amd64. -#49 24.87 Preparing to unpack .../139-libsphinxbase3_0.8+5prealpha+1-16_amd64.deb ... -#49 24.87 Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-16) ... -#49 24.90 Selecting previously unselected package libpocketsphinx3:amd64. -#49 24.90 Preparing to unpack .../140-libpocketsphinx3_0.8+5prealpha+1-15_amd64.deb ... -#49 24.90 Unpacking libpocketsphinx3:amd64 (0.8+5prealpha+1-15) ... -#49 24.92 Selecting previously unselected package libpostproc56:amd64. -#49 24.92 Preparing to unpack .../141-libpostproc56_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 24.92 Unpacking libpostproc56:amd64 (7:5.1.6-0+deb12u1) ... -#49 24.94 Selecting previously unselected package librubberband2:amd64. -#49 24.94 Preparing to unpack .../142-librubberband2_3.1.2+dfsg0-1_amd64.deb ... -#49 24.94 Unpacking librubberband2:amd64 (3.1.2+dfsg0-1) ... -#49 24.96 Selecting previously unselected package libswscale6:amd64. -#49 24.97 Preparing to unpack .../143-libswscale6_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 24.97 Unpacking libswscale6:amd64 (7:5.1.6-0+deb12u1) ... -#49 25.00 Selecting previously unselected package libvidstab1.1:amd64. -#49 25.00 Preparing to unpack .../144-libvidstab1.1_1.1.0-2+b1_amd64.deb ... -#49 25.00 Unpacking libvidstab1.1:amd64 (1.1.0-2+b1) ... -#49 25.01 Selecting previously unselected package libzimg2:amd64. -#49 25.01 Preparing to unpack .../145-libzimg2_3.0.4+ds1-1_amd64.deb ... -#49 25.01 Unpacking libzimg2:amd64 (3.0.4+ds1-1) ... -#49 25.05 Selecting previously unselected package libavfilter8:amd64. -#49 25.05 Preparing to unpack .../146-libavfilter8_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 25.05 Unpacking libavfilter8:amd64 (7:5.1.6-0+deb12u1) ... -#49 25.49 Selecting previously unselected package libslang2:amd64. -#49 25.49 Preparing to unpack .../147-libslang2_2.3.3-3_amd64.deb ... -#49 25.54 Unpacking libslang2:amd64 (2.3.3-3) ... -#49 25.83 Selecting previously unselected package libcaca0:amd64. -#49 25.83 Preparing to unpack .../148-libcaca0_0.99.beta20-3_amd64.deb ... -#49 25.86 Unpacking libcaca0:amd64 (0.99.beta20-3) ... -#49 26.87 Selecting previously unselected package libcdio19:amd64. -#49 26.87 Preparing to unpack .../149-libcdio19_2.1.0-4_amd64.deb ... -#49 27.01 Unpacking libcdio19:amd64 (2.1.0-4) ... -#49 27.94 Selecting previously unselected package libcdio-cdda2:amd64. -#49 27.94 Preparing to unpack .../150-libcdio-cdda2_10.2+2.0.1-1_amd64.deb ... -#49 28.05 Unpacking libcdio-cdda2:amd64 (10.2+2.0.1-1) ... -#49 28.37 Selecting previously unselected package libcdio-paranoia2:amd64. -#49 28.37 Preparing to unpack .../151-libcdio-paranoia2_10.2+2.0.1-1_amd64.deb ... -#49 28.38 Unpacking libcdio-paranoia2:amd64 (10.2+2.0.1-1) ... -#49 28.40 Selecting previously unselected package libusb-1.0-0:amd64. -#49 28.40 Preparing to unpack .../152-libusb-1.0-0_2%3a1.0.26-1_amd64.deb ... -#49 28.47 Unpacking libusb-1.0-0:amd64 (2:1.0.26-1) ... -#49 28.86 Selecting previously unselected package libdc1394-25:amd64. -#49 28.86 Preparing to unpack .../153-libdc1394-25_2.2.6-4_amd64.deb ... -#49 28.91 Unpacking libdc1394-25:amd64 (2.2.6-4) ... -#49 29.51 Selecting previously unselected package libglvnd0:amd64. -#49 29.51 Preparing to unpack .../154-libglvnd0_1.6.0-1_amd64.deb ... -#49 29.66 Unpacking libglvnd0:amd64 (1.6.0-1) ... -#49 ... - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 29.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 239.2 MB/s eta 0:00:00 -#37 29.45 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) -#37 30.24 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 423.6 MB/s eta 0:00:00#37 ... - -#60 [opea/multimodalqna-ui:latest 3/8] WORKDIR /root -#60 DONE 2.2s - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 30.24 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 423.6 MB/s eta 0:00:00 -#37 30.25 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) -#37 30.28 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 592.5 MB/s eta 0:00:00 -#37 30.29 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) -#37 30.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 482.5 MB/s eta 0:00:00 -#37 30.35 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) -#37 30.36 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 507.0 MB/s eta 0:00:00 -#37 30.36 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) -#37 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 15.66 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) -#58 15.67 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#58 15.72 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) -#58 15.73 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) -#58 15.78 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 7)) -#58 15.79 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#58 15.88 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 8)) -#58 15.89 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) -#58 15.99 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 16.00 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) -#58 16.24 Collecting torch>=1.11 (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 16.25 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl.metadata (28 kB) -#58 16.33 Collecting optimum-habana (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 16.34 Downloading optimum_habana-1.15.0-py3-none-any.whl.metadata (28 kB) -#58 16.37 Collecting transformers>=4.29 (from optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 16.38 Downloading transformers-4.45.2-py3-none-any.whl.metadata (44 kB) -#58 16.53 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 10)) -#58 16.54 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#58 16.62 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 14)) -#58 16.63 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#58 16.68 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 14)) -#58 16.69 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#58 16.96 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) -#58 16.97 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#58 17.06 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 17.07 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#58 17.11 Collecting aiosignal>=1.1.2 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 17.12 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#58 17.17 Collecting attrs>=17.3.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 17.18 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#58 17.40 Collecting frozenlist>=1.1.1 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 17.41 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#58 17.86 Collecting multidict<7.0,>=4.5 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 17.87 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#58 17.94 Collecting propcache>=0.2.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 17.95 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#58 18.52 Collecting yarl<2.0,>=1.17.0 (from aiohttp->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 18.53 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#58 18.61 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 6)) -#58 18.62 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#58 18.73 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 18.74 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) -#58 18.81 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 18.82 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) -#58 18.88 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 18.89 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) -#58 19.17 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 19.18 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#58 19.26 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 19.27 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) -#58 19.33 Collecting httpx<1,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 19.34 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#58 19.46 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 19.47 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) -#58 19.70 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 19.72 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) -#58 19.81 Collecting python-dateutil>=2.8.2 (from pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 19.82 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#58 19.99 Collecting pytz>=2020.1 (from pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 20.01 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) -#58 20.06 Collecting tzdata>=2022.7 (from pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 20.07 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) -#58 20.26 Collecting charset-normalizer<4,>=2 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 20.27 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#58 20.33 Collecting idna<4,>=2.5 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 20.34 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#58 20.42 Collecting urllib3<3,>=1.21.1 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 20.43 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#58 20.51 Collecting certifi>=2017.4.17 (from requests>=2.32.2->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 20.52 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#58 20.59 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 20.62 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#58 20.69 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 20.70 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#58 20.76 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) -#58 20.81 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#58 20.92 Collecting networkx (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 20.94 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) -#58 21.00 Collecting jinja2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.03 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) -#58 21.08 Collecting nvidia-cuda-nvrtc-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.09 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#58 21.14 Collecting nvidia-cuda-runtime-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.16 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#58 21.21 Collecting nvidia-cuda-cupti-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.22 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#58 21.27 Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.30 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#58 21.36 Collecting nvidia-cublas-cu12==12.4.5.8 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.37 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#58 21.42 Collecting nvidia-cufft-cu12==11.2.1.3 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.43 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#58 21.54 Collecting nvidia-curand-cu12==10.3.5.147 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.55 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#58 21.61 Collecting nvidia-cusolver-cu12==11.6.1.9 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.62 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#58 21.67 Collecting nvidia-cusparse-cu12==12.3.1.170 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.69 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB) -#58 21.72 Collecting nvidia-cusparselt-cu12==0.6.2 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.75 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl.metadata (6.8 kB) -#58 21.79 Collecting nvidia-nccl-cu12==2.21.5 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.82 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) -#58 21.86 Collecting nvidia-nvtx-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 21.88 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.7 kB) -#58 21.98 Collecting nvidia-nvjitlink-cu12==12.4.127 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 22.01 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#58 22.06 Collecting triton==3.2.0 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 22.09 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) -#58 22.14 Collecting sympy==1.13.1 (from torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 22.17 Downloading sympy-1.13.1-py3-none-any.whl.metadata (12 kB) -#58 22.28 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 22.29 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) -#58 23.02 Collecting regex!=2019.12.17 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 23.05 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#58 23.40 Collecting safetensors>=0.4.1 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 23.41 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#58 23.78 Collecting tokenizers<0.21,>=0.20 (from transformers>=4.29->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 23.79 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) -#58 23.89 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 23.90 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) -#58 23.96 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 23.98 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) -#58 24.02 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 24.04 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) -#58 24.41 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 24.43 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#58 24.50 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 24.52 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) -#58 24.58 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 24.59 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) -#58 24.64 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 24.66 Downloading pycollada-0.8.tar.gz (108 kB) -#58 24.68 Preparing metadata (setup.py): started -#58 24.92 Preparing metadata (setup.py): finished with status 'done' -#58 24.92 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) (75.8.0) -#58 25.11 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 25.12 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) -#58 25.17 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 25.19 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) -#58 25.23 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 25.24 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) -#58 25.31 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 25.32 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#58 25.40 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 25.41 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) -#58 25.48 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 25.49 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) -#58 25.56 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 25.57 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) -#58 25.67 Collecting accelerate<0.34.0,>=0.33.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 25.68 Downloading accelerate-0.33.0-py3-none-any.whl.metadata (18 kB) -#58 25.77 Collecting diffusers<0.32.0,>=0.31.0 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 25.78 Downloading diffusers-0.31.0-py3-none-any.whl.metadata (18 kB) -#58 ... - -#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt -#50 21.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 771.0 kB/s eta 0:00:00 -#50 21.67 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#50 21.97 Downloading einops-0.8.0-py3-none-any.whl (43 kB) -#50 22.05 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#50 22.20 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#50 22.78 Downloading open_clip_torch-2.30.0-py3-none-any.whl (1.5 MB) -#50 24.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 1.4 MB/s eta 0:00:00 -#50 24.05 Downloading openai-1.61.0-py3-none-any.whl (460 kB) -#50 24.45 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) -#50 24.53 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) -#50 24.56 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) -#50 24.61 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) -#50 24.65 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) -#50 24.70 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) -#50 24.78 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) -#50 24.93 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) -#50 25.12 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#50 29.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 1.2 MB/s eta 0:00:00 -#50 29.06 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#50 29.11 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#50 29.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 1.7 MB/s eta 0:00:00 -#50 29.64 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#50 29.69 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) -#50 ... - -#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ -#0 0.203 --2025-02-03 22:03:47-- https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz -#0 0.212 Resolving proxy-dmz.intel.com (proxy-dmz.intel.com)... 10.7.211.16 -#0 0.214 Connecting to proxy-dmz.intel.com (proxy-dmz.intel.com)|10.7.211.16|:911... connected. -#0 0.670 Proxy request sent, awaiting response... 200 OK -#0 0.748 Length: 41964060 (40M) [application/x-xz] -#0 0.748 Saving to: ‘ffmpeg-git-amd64-static.tar.xz’ -#0 0.748 -#0 0.748 0K .......... .......... .......... .......... .......... 0% 357K 1m55s -#0 0.888 50K .......... .......... .......... .......... .......... 0% 716K 86s -#0 0.957 100K .......... .......... .......... .......... .......... 0% 32.9M 58s -#0 0.959 150K .......... .......... .......... .......... .......... 0% 729K 57s -#0 1.027 200K .......... .......... .......... .......... .......... 0% 55.8M 46s -#0 1.028 250K .......... .......... .......... .......... .......... 0% 35.8M 38s -#0 1.030 300K .......... .......... .......... .......... .......... 0% 741K 41s -#0 1.097 350K .......... .......... .......... .......... .......... 0% 12.0M 36s -#0 1.101 400K .......... .......... .......... .......... .......... 1% 208M 32s -#0 1.101 450K .......... .......... .......... .......... .......... 1% 32.3M 29s -#0 1.103 500K .......... .......... .......... .......... .......... 1% 220M 26s -#0 1.103 550K .......... .......... .......... .......... .......... 1% 115M 24s -#0 1.104 600K .......... .......... .......... .......... .......... 1% 22.9M 22s -#0 1.106 650K .......... .......... .......... .......... .......... 1% 111M 21s -#0 1.106 700K .......... .......... .......... .......... .......... 1% 786K 23s -#61 1.170 750K .......... .......... .......... .......... .......... 1% 8.88M 21s -#61 1.175 800K .......... .......... .......... .......... .......... 2% 44.3M 20s -#61 1.176 850K .......... .......... .......... .......... .......... 2% 116M 19s -#61 1.177 900K .......... .......... .......... .......... .......... 2% 58.2M 18s -#61 1.178 950K .......... .......... .......... .......... .......... 2% 58.6M 17s -#61 1.178 1000K .......... .......... .......... .......... .......... 2% 186M 16s -#61 1.179 1050K .......... .......... .......... .......... .......... 2% 35.0M 16s -#61 1.180 1100K .......... .......... .......... .......... .......... 2% 102M 15s -#61 1.181 1150K .......... .......... .......... .......... .......... 2% 113M 14s -#61 1.181 1200K .......... .......... .......... .......... .......... 3% 39.5M 14s -#61 1.182 1250K .......... .......... .......... .......... .......... 3% 149M 13s -#61 1.183 1300K .......... .......... .......... .......... .......... 3% 58.7M 13s -#61 1.183 1350K .......... .......... .......... .......... .......... 3% 54.6M 12s -#61 1.184 1400K .......... .......... .......... .......... .......... 3% 954K 13s -#61 1.237 1450K .......... .......... .......... .......... .......... 3% 63.9M 13s -#61 1.237 1500K .......... .......... .......... .......... .......... 3% 20.3M 13s -#61 1.240 1550K .......... .......... .......... .......... .......... 3% 8.58M 12s -#61 1.246 1600K .......... .......... .......... .......... .......... 4% 138M 12s -#61 1.246 1650K .......... .......... .......... .......... .......... 4% 73.8M 12s -#61 1.247 1700K .......... .......... .......... .......... .......... 4% 40.1M 11s -#61 1.248 1750K .......... .......... .......... .......... .......... 4% 51.3M 11s -#61 1.249 1800K .......... .......... .......... .......... .......... 4% 83.0M 11s -#61 1.249 1850K .......... .......... .......... .......... .......... 4% 112M 10s -#61 1.250 1900K .......... .......... .......... .......... .......... 4% 49.6M 10s -#61 1.251 1950K .......... .......... .......... .......... .......... 4% 65.8M 10s -#61 1.252 2000K .......... .......... .......... .......... .......... 5% 63.4M 10s -#61 1.252 2050K .......... .......... .......... .......... .......... 5% 73.4M 9s -#61 1.253 2100K .......... .......... .......... .......... .......... 5% 115M 9s -#61 1.253 2150K .......... .......... .......... .......... .......... 5% 52.2M 9s -#61 1.254 2200K .......... .......... .......... .......... .......... 5% 61.0M 9s -#61 1.255 2250K .......... .......... .......... .......... .......... 5% 70.8M 9s -#61 1.256 2300K .......... .......... .......... .......... .......... 5% 62.9M 8s -#61 1.257 2350K .......... .......... .......... .......... .......... 5% 115M 8s -#61 1.257 2400K .......... .......... .......... .......... .......... 5% 37.6M 8s -#61 1.258 2450K .......... .......... .......... .......... .......... 6% 125M 8s -#61 1.259 2500K .......... .......... .......... .......... .......... 6% 264M 8s -#61 1.259 2550K .......... .......... .......... .......... .......... 6% 281M 8s -#61 1.259 2600K .......... .......... .......... .......... .......... 6% 45.5M 7s -#61 1.260 2650K .......... .......... .......... .......... .......... 6% 132M 7s -#61 1.260 2700K .......... .......... .......... .......... .......... 6% 215M 7s -#61 1.261 2750K .......... .......... .......... .......... .......... 6% 292M 7s -#61 1.261 2800K .......... .......... .......... .......... .......... 6% 1.07M 7s -#61 1.306 2850K .......... .......... .......... .......... .......... 7% 133M 7s -#61 1.307 2900K .......... .......... .......... .......... .......... 7% 45.8M 7s -#61 1.308 2950K .......... .......... .......... .......... .......... 7% 276M 7s -#61 1.308 3000K .......... .......... .......... .......... .......... 7% 23.9M 7s -#61 1.310 3050K .......... .......... .......... .......... .......... 7% 170M 7s -#61 1.310 3100K .......... .......... .......... .......... .......... 7% 16.4M 7s -#61 1.313 3150K .......... .......... .......... .......... .......... 7% 24.1M 7s -#61 1.315 3200K .......... .......... .......... .......... .......... 7% 36.8M 7s -#61 1.317 3250K .......... .......... .......... .......... .......... 8% 92.6M 7s -#61 1.317 3300K .......... .......... .......... .......... .......... 8% 203M 6s -#61 1.317 3350K .......... .......... .......... .......... .......... 8% 191M 6s -#61 1.318 3400K .......... .......... .......... .......... .......... 8% 61.2M 6s -#61 1.318 3450K .......... .......... .......... .......... .......... 8% 86.8M 6s -#61 1.319 3500K .......... .......... .......... .......... .......... 8% 155M 6s -#61 1.319 3550K .......... .......... .......... .......... .......... 8% 65.7M 6s -#61 1.320 3600K .......... .......... .......... .......... .......... 8% 19.7M 6s -#61 1.323 3650K .......... .......... .......... .......... .......... 9% 72.2M 6s -#61 1.323 3700K .......... .......... .......... .......... .......... 9% 228M 6s -#61 1.323 3750K .......... .......... .......... .......... .......... 9% 59.9M 6s -#61 1.324 3800K .......... .......... .......... .......... .......... 9% 108M 6s -#61 1.325 3850K .......... .......... .......... .......... .......... 9% 105M 5s -#61 1.325 3900K .......... .......... .......... .......... .......... 9% 47.3M 5s -#61 1.326 3950K .......... .......... .......... .......... .......... 9% 167M 5s -#61 1.326 4000K .......... .......... .......... .......... .......... 9% 117M 5s -#61 1.327 4050K .......... .......... .......... .......... .......... 10% 273M 5s -#61 1.327 4100K .......... .......... .......... .......... .......... 10% 38.3M 5s -#61 1.328 4150K .......... .......... .......... .......... .......... 10% 38.5M 5s -#61 1.330 4200K .......... .......... .......... .......... .......... 10% 47.3M 5s -#61 1.331 4250K .......... .......... .......... .......... .......... 10% 303M 5s -#61 1.331 4300K .......... .......... .......... .......... .......... 10% 336M 5s -#61 1.331 4350K .......... .......... .......... .......... .......... 10% 59.6M 5s -#61 1.332 4400K .......... .......... .......... .......... .......... 10% 49.7M 5s -#61 1.333 4450K .......... .......... .......... .......... .......... 10% 63.4M 5s -#61 1.334 4500K .......... .......... .......... .......... .......... 11% 54.0M 5s -#61 1.334 4550K .......... .......... .......... .......... .......... 11% 291M 5s -#61 1.335 4600K .......... .......... .......... .......... .......... 11% 275M 5s -#61 1.335 4650K .......... .......... .......... .......... .......... 11% 49.9M 5s -#61 1.336 4700K .......... .......... .......... .......... .......... 11% 88.4M 4s -#61 1.336 4750K .......... .......... .......... .......... .......... 11% 145M 4s -#61 1.337 4800K .......... .......... .......... .......... .......... 11% 330M 4s -#61 1.337 4850K .......... .......... .......... .......... .......... 11% 53.2M 4s -#61 1.338 4900K .......... .......... .......... .......... .......... 12% 101M 4s -#61 1.338 4950K .......... .......... .......... .......... .......... 12% 121M 4s -#61 1.339 5000K .......... .......... .......... .......... .......... 12% 302M 4s -#61 1.339 5050K .......... .......... .......... .......... .......... 12% 67.3M 4s -#61 1.340 5100K .......... .......... .......... .......... .......... 12% 91.8M 4s -#61 1.340 5150K .......... .......... .......... .......... .......... 12% 115M 4s -#61 1.340 5200K .......... .......... .......... .......... .......... 12% 107M 4s -#61 1.341 5250K .......... .......... .......... .......... .......... 12% 90.2M 4s -#61 1.341 5300K .......... .......... .......... .......... .......... 13% 120M 4s -#61 1.342 5350K .......... .......... .......... .......... .......... 13% 255M 4s -#61 1.342 5400K .......... .......... .......... .......... .......... 13% 144M 4s -#61 1.342 5450K .......... .......... .......... .......... .......... 13% 89.0M 4s -#61 1.343 5500K .......... .......... .......... .......... .......... 13% 134M 4s -#61 1.343 5550K .......... .......... .......... .......... .......... 13% 109M 4s -#61 1.344 5600K .......... .......... .......... .......... .......... 13% 1.70M 4s -#61 1.372 5650K .......... .......... .......... .......... .......... 13% 14.0M 4s -#61 1.376 5700K .......... .......... .......... .......... .......... 14% 86.1M 4s -#61 1.377 5750K .......... .......... .......... .......... .......... 14% 88.4M 4s -#61 1.377 5800K .......... .......... .......... .......... .......... 14% 96.0M 4s -#61 1.378 5850K .......... .......... .......... .......... .......... 14% 257M 4s -#61 1.378 5900K .......... .......... .......... .......... .......... 14% 243M 4s -#61 1.378 5950K .......... .......... .......... .......... .......... 14% 141M 4s -#61 1.378 6000K .......... .......... .......... .......... .......... 14% 50.7M 4s -#61 1.379 6050K .......... .......... .......... .......... .......... 14% 92.1M 4s -#61 1.380 6100K .......... .......... .......... .......... .......... 15% 218M 4s -#61 1.380 6150K .......... .......... .......... .......... .......... 15% 180M 4s -#61 1.380 6200K .......... .......... .......... .......... .......... 15% 26.1M 4s -#61 1.382 6250K .......... .......... .......... .......... .......... 15% 124M 3s -#61 1.383 6300K .......... .......... .......... .......... .......... 15% 28.9M 3s -#61 1.384 6350K .......... .......... .......... .......... .......... 15% 92.4M 3s -#61 1.385 6400K .......... .......... .......... .......... .......... 15% 33.8M 3s -#61 1.386 6450K .......... .......... .......... .......... .......... 15% 246M 3s -#61 1.386 6500K .......... .......... .......... .......... .......... 15% 313M 3s -#61 1.387 6550K .......... .......... .......... .......... .......... 16% 41.8M 3s -#61 1.388 6600K .......... .......... .......... .......... .......... 16% 189M 3s -#61 1.388 6650K .......... .......... .......... .......... .......... 16% 92.0M 3s -#61 1.389 6700K .......... .......... .......... .......... .......... 16% 148M 3s -#61 1.389 6750K .......... .......... .......... .......... .......... 16% 197M 3s -#61 1.389 6800K .......... .......... .......... .......... .......... 16% 117M 3s -#61 1.390 6850K .......... .......... .......... .......... .......... 16% 159M 3s -#61 1.390 6900K .......... .......... .......... .......... .......... 16% 74.6M 3s -#61 1.390 6950K .......... .......... .......... .......... .......... 17% 183M 3s -#61 1.391 7000K .......... .......... .......... .......... .......... 17% 272M 3s -#61 1.391 7050K .......... .......... .......... .......... .......... 17% 104M 3s -#61 1.391 7100K .......... .......... .......... .......... .......... 17% 142M 3s -#61 1.392 7150K .......... .......... .......... .......... .......... 17% 80.3M 3s -#61 1.392 7200K .......... .......... .......... .......... .......... 17% 131M 3s -#61 1.393 7250K .......... .......... .......... .......... .......... 17% 315M 3s -#61 1.393 7300K .......... .......... .......... .......... .......... 17% 65.7M 3s -#61 1.394 7350K .......... .......... .......... .......... .......... 18% 252M 3s -#61 1.394 7400K .......... .......... .......... .......... .......... 18% 63.2M 3s -#61 1.395 7450K .......... .......... .......... .......... .......... 18% 84.2M 3s -#61 1.395 7500K .......... .......... .......... .......... .......... 18% 311M 3s -#61 1.395 7550K .......... .......... .......... .......... .......... 18% 267M 3s -#61 1.396 7600K .......... .......... .......... .......... .......... 18% 223M 3s -#61 1.396 7650K .......... .......... .......... .......... .......... 18% 25.5M 3s -#61 1.398 7700K .......... .......... .......... .......... .......... 18% 129M 3s -#61 1.398 7750K .......... .......... .......... .......... .......... 19% 183M 3s -#61 1.398 7800K .......... .......... .......... .......... .......... 19% 51.6M 3s -#61 1.399 7850K .......... .......... .......... .......... .......... 19% 177M 3s -#61 1.400 7900K .......... .......... .......... .......... .......... 19% 201M 3s -#61 1.400 7950K .......... .......... .......... .......... .......... 19% 166M 3s -#61 1.400 8000K .......... .......... .......... .......... .......... 19% 261M 3s -#61 1.400 8050K .......... .......... .......... .......... .......... 19% 55.2M 3s -#61 1.401 8100K .......... .......... .......... .......... .......... 19% 204M 3s -#61 1.401 8150K .......... .......... .......... .......... .......... 20% 219M 3s -#61 1.402 8200K .......... .......... .......... .......... .......... 20% 136M 3s -#61 1.402 8250K .......... .......... .......... .......... .......... 20% 121M 3s -#61 1.402 8300K .......... .......... .......... .......... .......... 20% 63.9M 3s -#61 1.403 8350K .......... .......... .......... .......... .......... 20% 260M 3s -#61 1.403 8400K .......... .......... .......... .......... .......... 20% 213M 3s -#61 1.404 8450K .......... .......... .......... .......... .......... 20% 174M 3s -#61 1.404 8500K .......... .......... .......... .......... .......... 20% 129M 2s -#61 1.404 8550K .......... .......... .......... .......... .......... 20% 63.2M 2s -#61 1.405 8600K .......... .......... .......... .......... .......... 21% 264M 2s -#61 1.405 8650K .......... .......... .......... .......... .......... 21% 185M 2s -#61 1.405 8700K .......... .......... .......... .......... .......... 21% 36.7M 2s -#61 1.407 8750K .......... .......... .......... .......... .......... 21% 134M 2s -#61 1.407 8800K .......... .......... .......... .......... .......... 21% 38.0M 2s -#61 1.408 8850K .......... .......... .......... .......... .......... 21% 72.1M 2s -#61 1.409 8900K .......... .......... .......... .......... .......... 21% 267M 2s -#61 1.409 8950K .......... .......... .......... .......... .......... 21% 133M 2s -#61 1.410 9000K .......... .......... .......... .......... .......... 22% 280M 2s -#61 1.410 9050K .......... .......... .......... .......... .......... 22% 122M 2s -#61 1.410 9100K .......... .......... .......... .......... .......... 22% 64.6M 2s -#61 1.411 9150K .......... .......... .......... .......... .......... 22% 285M 2s -#61 1.411 9200K .......... .......... .......... .......... .......... 22% 147M 2s -#61 1.411 9250K .......... .......... .......... .......... .......... 22% 251M 2s -#61 1.412 9300K .......... .......... .......... .......... .......... 22% 68.6M 2s -#61 1.412 9350K .......... .......... .......... .......... .......... 22% 128M 2s -#61 1.413 9400K .......... .......... .......... .......... .......... 23% 134M 2s -#61 1.413 9450K .......... .......... .......... .......... .......... 23% 170M 2s -#61 1.413 9500K .......... .......... .......... .......... .......... 23% 223M 2s -#61 1.414 9550K .......... .......... .......... .......... .......... 23% 62.3M 2s -#61 1.414 9600K .......... .......... .......... .......... .......... 23% 238M 2s -#61 1.415 9650K .......... .......... .......... .......... .......... 23% 119M 2s -#61 1.415 9700K .......... .......... .......... .......... .......... 23% 160M 2s -#61 1.415 9750K .......... .......... .......... .......... .......... 23% 286M 2s -#61 1.415 9800K .......... .......... .......... .......... .......... 24% 62.8M 2s -#61 1.416 9850K .......... .......... .......... .......... .......... 24% 208M 2s -#61 1.417 9900K .......... .......... .......... .......... .......... 24% 107M 2s -#61 1.417 9950K .......... .......... .......... .......... .......... 24% 149M 2s -#61 1.417 10000K .......... .......... .......... .......... .......... 24% 291M 2s -#61 1.417 10050K .......... .......... .......... .......... .......... 24% 76.2M 2s -#61 1.418 10100K .......... .......... .......... .......... .......... 24% 142M 2s -#61 1.418 10150K .......... .......... .......... .......... .......... 24% 126M 2s -#61 1.419 10200K .......... .......... .......... .......... .......... 25% 179M 2s -#61 1.419 10250K .......... .......... .......... .......... .......... 25% 287M 2s -#61 1.419 10300K .......... .......... .......... .......... .......... 25% 311M 2s -#61 1.419 10350K .......... .......... .......... .......... .......... 25% 91.6M 2s -#61 1.420 10400K .......... .......... .......... .......... .......... 25% 128M 2s -#61 1.420 10450K .......... .......... .......... .......... .......... 25% 109M 2s -#61 1.421 10500K .......... .......... .......... .......... .......... 25% 250M 2s -#61 1.421 10550K .......... .......... .......... .......... .......... 25% 291M 2s -#61 1.421 10600K .......... .......... .......... .......... .......... 25% 198M 2s -#61 1.421 10650K .......... .......... .......... .......... .......... 26% 91.4M 2s -#61 1.422 10700K .......... .......... .......... .......... .......... 26% 147M 2s -#61 1.422 10750K .......... .......... .......... .......... .......... 26% 89.6M 2s -#61 1.423 10800K .......... .......... .......... .......... .......... 26% 282M 2s -#61 1.423 10850K .......... .......... .......... .......... .......... 26% 253M 2s -#61 1.423 10900K .......... .......... .......... .......... .......... 26% 191M 2s -#61 1.423 10950K .......... .......... .......... .......... .......... 26% 134M 2s -#61 1.424 11000K .......... .......... .......... .......... .......... 26% 130M 2s -#61 1.424 11050K .......... .......... .......... .......... .......... 27% 98.9M 2s -#61 1.425 11100K .......... .......... .......... .......... .......... 27% 259M 2s -#61 1.425 11150K .......... .......... .......... .......... .......... 27% 211M 2s -#61 1.425 11200K .......... .......... .......... .......... .......... 27% 163M 2s -#61 1.425 11250K .......... .......... .......... .......... .......... 27% 2.89M 2s -#61 1.442 11300K .......... .......... .......... .......... .......... 27% 30.9M 2s -#61 1.444 11350K .......... .......... .......... .......... .......... 27% 18.8M 2s -#61 1.446 11400K .......... .......... .......... .......... .......... 27% 198M 2s -#61 1.447 11450K .......... .......... .......... .......... .......... 28% 180M 2s -#61 1.447 11500K .......... .......... .......... .......... .......... 28% 289M 2s -#61 1.447 11550K .......... .......... .......... .......... .......... 28% 296M 2s -#61 1.447 11600K .......... .......... .......... .......... .......... 28% 269M 2s -#61 1.447 11650K .......... .......... .......... .......... .......... 28% 54.4M 2s -#61 1.448 11700K .......... .......... .......... .......... .......... 28% 188M 2s -#61 1.449 11750K .......... .......... .......... .......... .......... 28% 254M 2s -#61 1.449 11800K .......... .......... .......... .......... .......... 28% 284M 2s -#61 1.449 11850K .......... .......... .......... .......... .......... 29% 260M 2s -#61 1.449 11900K .......... .......... .......... .......... .......... 29% 301M 2s -#61 1.449 11950K .......... .......... .......... .......... .......... 29% 32.2M 2s -#61 1.451 12000K .......... .......... .......... .......... .......... 29% 278M 2s -#61 1.451 12050K .......... .......... .......... .......... .......... 29% 309M 2s -#61 1.451 12100K .......... .......... .......... .......... .......... 29% 271M 2s -#61 1.451 12150K .......... .......... .......... .......... .......... 29% 321M 2s -#61 1.452 12200K .......... .......... .......... .......... .......... 29% 171M 2s -#61 1.452 12250K .......... .......... .......... .......... .......... 30% 52.4M 2s -#61 1.453 12300K .......... .......... .......... .......... .......... 30% 271M 2s -#61 1.453 12350K .......... .......... .......... .......... .......... 30% 242M 2s -#61 1.453 12400K .......... .......... .......... .......... .......... 30% 307M 2s -#61 1.453 12450K .......... .......... .......... .......... .......... 30% 282M 2s -#61 1.453 12500K .......... .......... .......... .......... .......... 30% 211M 2s -#61 1.454 12550K .......... .......... .......... .......... .......... 30% 19.5M 2s -#61 1.456 12600K .......... .......... .......... .......... .......... 30% 239M 2s -#61 1.456 12650K .......... .......... .......... .......... .......... 30% 306M 2s -#61 1.457 12700K .......... .......... .......... .......... .......... 31% 253M 2s -#61 1.457 12750K .......... .......... .......... .......... .......... 31% 319M 2s -#61 1.457 12800K .......... .......... .......... .......... .......... 31% 316M 2s -#61 1.457 12850K .......... .......... .......... .......... .......... 31% 50.3M 2s -#61 1.458 12900K .......... .......... .......... .......... .......... 31% 204M 2s -#61 1.458 12950K .......... .......... .......... .......... .......... 31% 239M 2s -#61 1.458 13000K .......... .......... .......... .......... .......... 31% 281M 2s -#61 1.459 13050K .......... .......... .......... .......... .......... 31% 291M 2s -#61 1.459 13100K .......... .......... .......... .......... .......... 32% 63.9M 2s -#61 1.460 13150K .......... .......... .......... .......... .......... 32% 157M 1s -#61 1.460 13200K .......... .......... .......... .......... .......... 32% 178M 1s -#61 1.460 13250K .......... .......... .......... .......... .......... 32% 268M 1s -#61 1.460 13300K .......... .......... .......... .......... .......... 32% 313M 1s -#61 1.461 13350K .......... .......... .......... .......... .......... 32% 244M 1s -#61 1.461 13400K .......... .......... .......... .......... .......... 32% 66.0M 1s -#61 1.462 13450K .......... .......... .......... .......... .......... 32% 115M 1s -#61 1.462 13500K .......... .......... .......... .......... .......... 33% 192M 1s -#61 1.462 13550K .......... .......... .......... .......... .......... 33% 237M 1s -#61 1.462 13600K .......... .......... .......... .......... .......... 33% 4.47M 1s -#61 1.473 13650K .......... .......... .......... .......... .......... 33% 306M 1s -#61 1.473 13700K .......... .......... .......... .......... .......... 33% 240M 1s -#61 1.474 13750K .......... .......... .......... .......... .......... 33% 280M 1s -#61 1.474 13800K .......... .......... .......... .......... .......... 33% 332M 1s -#61 1.474 13850K .......... .......... .......... .......... .......... 33% 264M 1s -#61 1.474 13900K .......... .......... .......... .......... .......... 34% 48.4M 1s -#61 1.475 13950K .......... .......... .......... .......... .......... 34% 259M 1s -#61 1.475 14000K .......... .......... .......... .......... .......... 34% 79.3M 1s -#61 1.476 14050K .......... .......... .......... .......... .......... 34% 189M 1s -#61 1.476 14100K .......... .......... .......... .......... .......... 34% 90.0M 1s -#61 1.477 14150K .......... .......... .......... .......... .......... 34% 299M 1s -#61 1.477 14200K .......... .......... .......... .......... .......... 34% 56.7M 1s -#61 1.478 14250K .......... .......... .......... .......... .......... 34% 133M 1s -#61 1.478 14300K .......... .......... .......... .......... .......... 35% 149M 1s -#61 1.478 14350K .......... .......... .......... .......... .......... 35% 114M 1s -#61 1.479 14400K .......... .......... .......... .......... .......... 35% 280M 1s -#61 1.479 14450K .......... .......... .......... .......... .......... 35% 276M 1s -#61 1.479 14500K .......... .......... .......... .......... .......... 35% 68.1M 1s -#61 1.480 14550K .......... .......... .......... .......... .......... 35% 284M 1s -#61 1.480 14600K .......... .......... .......... .......... .......... 35% 274M 1s -#61 1.480 14650K .......... .......... .......... .......... .......... 35% 115M 1s -#61 1.481 14700K .......... .......... .......... .......... .......... 35% 255M 1s -#61 1.481 14750K .......... .......... .......... .......... .......... 36% 327M 1s -#61 1.481 14800K .......... .......... .......... .......... .......... 36% 61.5M 1s -#61 1.482 14850K .......... .......... .......... .......... .......... 36% 264M 1s -#61 1.482 14900K .......... .......... .......... .......... .......... 36% 78.5M 1s -#61 1.483 14950K .......... .......... .......... .......... .......... 36% 199M 1s -#61 1.483 15000K .......... .......... .......... .......... .......... 36% 316M 1s -#61 1.483 15050K .......... .......... .......... .......... .......... 36% 75.9M 1s -#61 1.484 15100K .......... .......... .......... .......... .......... 36% 235M 1s -#61 1.484 15150K .......... .......... .......... .......... .......... 37% 334M 1s -#61 1.484 15200K .......... .......... .......... .......... .......... 37% 69.1M 1s -#61 1.485 15250K .......... .......... .......... .......... .......... 37% 269M 1s -#61 1.485 15300K .......... .......... .......... .......... .......... 37% 330M 1s -#61 1.485 15350K .......... .......... .......... .......... .......... 37% 287M 1s -#61 1.485 15400K .......... .......... .......... .......... .......... 37% 89.9M 1s -#61 1.486 15450K .......... .......... .......... .......... .......... 37% 237M 1s -#61 1.486 15500K .......... .......... .......... .......... .......... 37% 297M 1s -#61 1.486 15550K .......... .......... .......... .......... .......... 38% 114M 1s -#61 1.487 15600K .......... .......... .......... .......... .......... 38% 234M 1s -#61 1.487 15650K .......... .......... .......... .......... .......... 38% 302M 1s -#61 1.487 15700K .......... .......... .......... .......... .......... 38% 283M 1s -#61 1.487 15750K .......... .......... .......... .......... .......... 38% 101M 1s -#61 1.488 15800K .......... .......... .......... .......... .......... 38% 263M 1s -#61 1.488 15850K .......... .......... .......... .......... .......... 38% 261M 1s -#61 1.488 15900K .......... .......... .......... .......... .......... 38% 88.5M 1s -#61 1.489 15950K .......... .......... .......... .......... .......... 39% 139M 1s -#61 1.489 16000K .......... .......... .......... .......... .......... 39% 304M 1s -#61 1.489 16050K .......... .......... .......... .......... .......... 39% 322M 1s -#61 1.489 16100K .......... .......... .......... .......... .......... 39% 114M 1s -#61 1.490 16150K .......... .......... .......... .......... .......... 39% 323M 1s -#61 1.490 16200K .......... .......... .......... .......... .......... 39% 271M 1s -#61 1.490 16250K .......... .......... .......... .......... .......... 39% 226M 1s -#61 1.490 16300K .......... .......... .......... .......... .......... 39% 97.5M 1s -#61 1.491 16350K .......... .......... .......... .......... .......... 40% 245M 1s -#61 1.491 16400K .......... .......... .......... .......... .......... 40% 318M 1s -#61 1.491 16450K .......... .......... .......... .......... .......... 40% 76.1M 1s -#61 1.492 16500K .......... .......... .......... .......... .......... 40% 151M 1s -#61 1.492 16550K .......... .......... .......... .......... .......... 40% 304M 1s -#61 1.492 16600K .......... .......... .......... .......... .......... 40% 251M 1s -#61 1.492 16650K .......... .......... .......... .......... .......... 40% 120M 1s -#61 1.493 16700K .......... .......... .......... .......... .......... 40% 256M 1s -#61 1.493 16750K .......... .......... .......... .......... .......... 40% 300M 1s -#61 1.493 16800K .......... .......... .......... .......... .......... 41% 313M 1s -#61 1.493 16850K .......... .......... .......... .......... .......... 41% 104M 1s -#61 1.494 16900K .......... .......... .......... .......... .......... 41% 286M 1s -#61 1.494 16950K .......... .......... .......... .......... .......... 41% 279M 1s -#61 1.494 17000K .......... .......... .......... .......... .......... 41% 85.2M 1s -#61 1.495 17050K .......... .......... .......... .......... .......... 41% 262M 1s -#61 1.495 17100K .......... .......... .......... .......... .......... 41% 251M 1s -#61 1.495 17150K .......... .......... .......... .......... .......... 41% 327M 1s -#61 1.495 17200K .......... .......... .......... .......... .......... 42% 279M 1s -#61 1.495 17250K .......... .......... .......... .......... .......... 42% 105M 1s -#61 1.496 17300K .......... .......... .......... .......... .......... 42% 134M 1s -#61 1.496 17350K .......... .......... .......... .......... .......... 42% 271M 1s -#61 1.496 17400K .......... .......... .......... .......... .......... 42% 319M 1s -#61 1.497 17450K .......... .......... .......... .......... .......... 42% 141M 1s -#61 1.497 17500K .......... .......... .......... .......... .......... 42% 290M 1s -#61 1.497 17550K .......... .......... .......... .......... .......... 42% 168M 1s -#61 1.497 17600K .......... .......... .......... .......... .......... 43% 275M 1s -#61 1.498 17650K .......... .......... .......... .......... .......... 43% 277M 1s -#61 1.498 17700K .......... .......... .......... .......... .......... 43% 222M 1s -#61 1.498 17750K .......... .......... .......... .......... .......... 43% 273M 1s -#61 1.498 17800K .......... .......... .......... .......... .......... 43% 282M 1s -#61 1.498 17850K .......... .......... .......... .......... .......... 43% 162M 1s -#61 1.499 17900K .......... .......... .......... .......... .......... 43% 215M 1s -#61 1.499 17950K .......... .......... .......... .......... .......... 43% 249M 1s -#61 1.499 18000K .......... .......... .......... .......... .......... 44% 332M 1s -#61 1.499 18050K .......... .......... .......... .......... .......... 44% 130M 1s -#61 1.500 18100K .......... .......... .......... .......... .......... 44% 167M 1s -#61 1.500 18150K .......... .......... .......... .......... .......... 44% 245M 1s -#61 1.500 18200K .......... .......... .......... .......... .......... 44% 259M 1s -#61 1.500 18250K .......... .......... .......... .......... .......... 44% 183M 1s -#61 1.501 18300K .......... .......... .......... .......... .......... 44% 178M 1s -#61 1.501 18350K .......... .......... .......... .......... .......... 44% 242M 1s -#61 1.501 18400K .......... .......... .......... .......... .......... 45% 303M 1s -#61 1.501 18450K .......... .......... .......... .......... .......... 45% 205M 1s -#61 1.501 18500K .......... .......... .......... .......... .......... 45% 130M 1s -#61 1.502 18550K .......... .......... .......... .......... .......... 45% 271M 1s -#61 1.502 18600K .......... .......... .......... .......... .......... 45% 263M 1s -#61 1.502 18650K .......... .......... .......... .......... .......... 45% 296M 1s -#61 1.502 18700K .......... .......... .......... .......... .......... 45% 192M 1s -#61 1.503 18750K .......... .......... .......... .......... .......... 45% 151M 1s -#61 1.503 18800K .......... .......... .......... .......... .......... 45% 310M 1s -#61 1.503 18850K .......... .......... .......... .......... .......... 46% 5.09M 1s -#61 1.513 18900K .......... .......... .......... .......... .......... 46% 256M 1s -#61 1.513 18950K .......... .......... .......... .......... .......... 46% 1.48M 1s -#61 1.546 19000K .......... .......... .......... .......... .......... 46% 256M 1s -#61 1.546 19050K .......... .......... .......... .......... .......... 46% 295M 1s -#61 1.546 19100K .......... .......... .......... .......... .......... 46% 249M 1s -#61 1.546 19150K .......... .......... .......... .......... .......... 46% 290M 1s -#61 1.546 19200K .......... .......... .......... .......... .......... 46% 151M 1s -#61 1.547 19250K .......... .......... .......... .......... .......... 47% 286M 1s -#61 1.547 19300K .......... .......... .......... .......... .......... 47% 292M 1s -#61 1.547 19350K .......... .......... .......... .......... .......... 47% 121M 1s -#61 1.547 19400K .......... .......... .......... .......... .......... 47% 193M 1s -#61 1.548 19450K .......... .......... .......... .......... .......... 47% 115M 1s -#61 1.548 19500K .......... .......... .......... .......... .......... 47% 94.9M 1s -#61 1.549 19550K .......... .......... .......... .......... .......... 47% 293M 1s -#61 1.549 19600K .......... .......... .......... .......... .......... 47% 46.0M 1s -#61 1.550 19650K .......... .......... .......... .......... .......... 48% 285M 1s -#61 1.550 19700K .......... .......... .......... .......... .......... 48% 244M 1s -#61 1.550 19750K .......... .......... .......... .......... .......... 48% 273M 1s -#61 1.550 19800K .......... .......... .......... .......... .......... 48% 294M 1s -#61 1.551 19850K .......... .......... .......... .......... .......... 48% 240M 1s -#61 1.551 19900K .......... .......... .......... .......... .......... 48% 319M 1s -#61 1.551 19950K .......... .......... .......... .......... .......... 48% 246M 1s -#61 1.551 20000K .......... .......... .......... .......... .......... 48% 88.2M 1s -#61 1.552 20050K .......... .......... .......... .......... .......... 49% 265M 1s -#61 1.552 20100K .......... .......... .......... .......... .......... 49% 158M 1s -#61 1.552 20150K .......... .......... .......... .......... .......... 49% 303M 1s -#61 1.552 20200K .......... .......... .......... .......... .......... 49% 252M 1s -#61 1.553 20250K .......... .......... .......... .......... .......... 49% 300M 1s -#61 1.553 20300K .......... .......... .......... .......... .......... 49% 314M 1s -#61 1.553 20350K .......... .......... .......... .......... .......... 49% 266M 1s -#61 1.553 20400K .......... .......... .......... .......... .......... 49% 87.7M 1s -#61 1.554 20450K .......... .......... .......... .......... .......... 50% 181M 1s -#61 1.554 20500K .......... .......... .......... .......... .......... 50% 151M 1s -#61 1.554 20550K .......... .......... .......... .......... .......... 50% 287M 1s -#61 1.554 20600K .......... .......... .......... .......... .......... 50% 236M 1s -#61 1.555 20650K .......... .......... .......... .......... .......... 50% 335M 1s -#61 1.555 20700K .......... .......... .......... .......... .......... 50% 279M 1s -#61 1.555 20750K .......... .......... .......... .......... .......... 50% 157M 1s -#61 1.555 20800K .......... .......... .......... .......... .......... 50% 324M 1s -#61 1.555 20850K .......... .......... .......... .......... .......... 50% 154M 1s -#61 1.556 20900K .......... .......... .......... .......... .......... 51% 172M 1s -#61 1.556 20950K .......... .......... .......... .......... .......... 51% 232M 1s -#61 1.556 21000K .......... .......... .......... .......... .......... 51% 295M 1s -#61 1.556 21050K .......... .......... .......... .......... .......... 51% 271M 1s -#61 1.557 21100K .......... .......... .......... .......... .......... 51% 262M 1s -#61 1.557 21150K .......... .......... .......... .......... .......... 51% 328M 1s -#61 1.557 21200K .......... .......... .......... .......... .......... 51% 143M 1s -#61 1.557 21250K .......... .......... .......... .......... .......... 51% 195M 1s -#61 1.557 21300K .......... .......... .......... .......... .......... 52% 169M 1s -#61 1.558 21350K .......... .......... .......... .......... .......... 52% 208M 1s -#61 1.558 21400K .......... .......... .......... .......... .......... 52% 301M 1s -#61 1.558 21450K .......... .......... .......... .......... .......... 52% 278M 1s -#61 1.558 21500K .......... .......... .......... .......... .......... 52% 292M 1s -#61 1.559 21550K .......... .......... .......... .......... .......... 52% 313M 1s -#61 1.559 21600K .......... .......... .......... .......... .......... 52% 147M 1s -#61 1.559 21650K .......... .......... .......... .......... .......... 52% 202M 1s -#61 1.559 21700K .......... .......... .......... .......... .......... 53% 138M 1s -#61 1.560 21750K .......... .......... .......... .......... .......... 53% 232M 1s -#61 1.560 21800K .......... .......... .......... .......... .......... 53% 309M 1s -#61 1.560 21850K .......... .......... .......... .......... .......... 53% 250M 1s -#61 1.560 21900K .......... .......... .......... .......... .......... 53% 307M 1s -#61 1.560 21950K .......... .......... .......... .......... .......... 53% 270M 1s -#61 1.560 22000K .......... .......... .......... .......... .......... 53% 305M 1s -#61 1.561 22050K .......... .......... .......... .......... .......... 53% 122M 1s -#61 1.561 22100K .......... .......... .......... .......... .......... 54% 173M 1s -#61 1.561 22150K .......... .......... .......... .......... .......... 54% 158M 1s -#61 1.562 22200K .......... .......... .......... .......... .......... 54% 194M 1s -#61 1.562 22250K .......... .......... .......... .......... .......... 54% 260M 1s -#61 1.562 22300K .......... .......... .......... .......... .......... 54% 335M 1s -#61 1.562 22350K .......... .......... .......... .......... .......... 54% 274M 1s -#61 1.562 22400K .......... .......... .......... .......... .......... 54% 301M 1s -#61 1.563 22450K .......... .......... .......... .......... .......... 54% 103M 1s -#61 1.563 22500K .......... .......... .......... .......... .......... 55% 327M 1s -#61 1.563 22550K .......... .......... .......... .......... .......... 55% 242M 1s -#61 1.563 22600K .......... .......... .......... .......... .......... 55% 200M 1s -#61 1.564 22650K .......... .......... .......... .......... .......... 55% 121M 1s -#61 1.564 22700K .......... .......... .......... .......... .......... 55% 283M 1s -#61 1.564 22750K .......... .......... .......... .......... .......... 55% 326M 1s -#61 1.564 22800K .......... .......... .......... .......... .......... 55% 119M 1s -#61 1.565 22850K .......... .......... .......... .......... .......... 55% 199M 1s -#61 1.565 22900K .......... .......... .......... .......... .......... 56% 237M 1s -#61 1.565 22950K .......... .......... .......... .......... .......... 56% 95.2M 1s -#61 1.566 23000K .......... .......... .......... .......... .......... 56% 172M 1s -#61 1.566 23050K .......... .......... .......... .......... .......... 56% 324M 1s -#61 1.566 23100K .......... .......... .......... .......... .......... 56% 263M 1s -#61 1.566 23150K .......... .......... .......... .......... .......... 56% 116M 1s -#61 1.567 23200K .......... .......... .......... .......... .......... 56% 257M 1s -#61 1.567 23250K .......... .......... .......... .......... .......... 56% 325M 1s -#61 1.567 23300K .......... .......... .......... .......... .......... 56% 80.8M 1s -#61 1.568 23350K .......... .......... .......... .......... .......... 57% 250M 1s -#61 1.568 23400K .......... .......... .......... .......... .......... 57% 318M 1s -#61 1.568 23450K .......... .......... .......... .......... .......... 57% 281M 1s -#61 1.568 23500K .......... .......... .......... .......... .......... 57% 77.9M 1s -#61 1.569 23550K .......... .......... .......... .......... .......... 57% 279M 1s -#61 1.569 23600K .......... .......... .......... .......... .......... 57% 276M 1s -#61 1.569 23650K .......... .......... .......... .......... .......... 57% 105M 1s -#61 1.570 23700K .......... .......... .......... .......... .......... 57% 258M 1s -#61 1.570 23750K .......... .......... .......... .......... .......... 58% 320M 1s -#61 1.570 23800K .......... .......... .......... .......... .......... 58% 333M 1s -#61 1.570 23850K .......... .......... .......... .......... .......... 58% 68.1M 1s -#61 1.571 23900K .......... .......... .......... .......... .......... 58% 310M 1s -#61 1.571 23950K .......... .......... .......... .......... .......... 58% 284M 1s -#61 1.571 24000K .......... .......... .......... .......... .......... 58% 80.4M 1s -#61 1.572 24050K .......... .......... .......... .......... .......... 58% 289M 1s -#61 1.572 24100K .......... .......... .......... .......... .......... 58% 256M 1s -#61 1.572 24150K .......... .......... .......... .......... .......... 59% 96.6M 1s -#61 1.573 24200K .......... .......... .......... .......... .......... 59% 257M 1s -#61 1.573 24250K .......... .......... .......... .......... .......... 59% 302M 1s -#61 1.573 24300K .......... .......... .......... .......... .......... 59% 312M 1s -#61 1.573 24350K .......... .......... .......... .......... .......... 59% 85.5M 1s -#61 1.574 24400K .......... .......... .......... .......... .......... 59% 298M 1s -#61 1.574 24450K .......... .......... .......... .......... .......... 59% 272M 1s -#61 1.574 24500K .......... .......... .......... .......... .......... 59% 79.3M 1s -#61 1.575 24550K .......... .......... .......... .......... .......... 60% 288M 1s -#61 1.575 24600K .......... .......... .......... .......... .......... 60% 254M 1s -#61 1.575 24650K .......... .......... .......... .......... .......... 60% 339M 1s -#61 1.576 24700K .......... .......... .......... .......... .......... 60% 66.2M 1s -#61 1.576 24750K .......... .......... .......... .......... .......... 60% 328M 1s -#61 1.576 24800K .......... .......... .......... .......... .......... 60% 285M 1s -#61 1.576 24850K .......... .......... .......... .......... .......... 60% 262M 1s -#61 1.576 24900K .......... .......... .......... .......... .......... 60% 310M 1s -#61 1.577 24950K .......... .......... .......... .......... .......... 61% 239M 1s -#61 1.577 25000K .......... .......... .......... .......... .......... 61% 308M 1s -#61 1.577 25050K .......... .......... .......... .......... .......... 61% 294M 1s -#61 1.577 25100K .......... .......... .......... .......... .......... 61% 86.2M 1s -#61 1.578 25150K .......... .......... .......... .......... .......... 61% 301M 1s -#61 1.578 25200K .......... .......... .......... .......... .......... 61% 251M 1s -#61 1.578 25250K .......... .......... .......... .......... .......... 61% 339M 1s -#61 1.578 25300K .......... .......... .......... .......... .......... 61% 308M 1s -#61 1.578 25350K .......... .......... .......... .......... .......... 61% 188M 1s -#61 1.579 25400K .......... .......... .......... .......... .......... 62% 282M 1s -#61 1.579 25450K .......... .......... .......... .......... .......... 62% 276M 1s -#61 1.579 25500K .......... .......... .......... .......... .......... 62% 90.1M 1s -#61 1.580 25550K .......... .......... .......... .......... .......... 62% 203M 1s -#61 1.580 25600K .......... .......... .......... .......... .......... 62% 256M 0s -#61 1.580 25650K .......... .......... .......... .......... .......... 62% 321M 0s -#61 1.580 25700K .......... .......... .......... .......... .......... 62% 67.8M 0s -#61 1.581 25750K .......... .......... .......... .......... .......... 62% 307M 0s -#61 1.581 25800K .......... .......... .......... .......... .......... 63% 323M 0s -#61 1.581 25850K .......... .......... .......... .......... .......... 63% 130M 0s -#61 1.582 25900K .......... .......... .......... .......... .......... 63% 174M 0s -#61 1.582 25950K .......... .......... .......... .......... .......... 63% 240M 0s -#61 1.582 26000K .......... .......... .......... .......... .......... 63% 295M 0s -#61 1.582 26050K .......... .......... .......... .......... .......... 63% 314M 0s -#61 1.582 26100K .......... .......... .......... .......... .......... 63% 80.8M 0s -#61 1.583 26150K .......... .......... .......... .......... .......... 63% 303M 0s -#61 1.583 26200K .......... .......... .......... .......... .......... 64% 265M 0s -#61 1.583 26250K .......... .......... .......... .......... .......... 64% 332M 0s -#61 1.583 26300K .......... .......... .......... .......... .......... 64% 135M 0s -#61 1.584 26350K .......... .......... .......... .......... .......... 64% 238M 0s -#61 1.584 26400K .......... .......... .......... .......... .......... 64% 1.13M 0s -#61 1.627 26450K .......... .......... .......... .......... .......... 64% 51.2M 0s -#61 1.628 26500K .......... .......... .......... .......... .......... 64% 247M 0s -#61 1.628 26550K .......... .......... .......... .......... .......... 64% 301M 0s -#61 1.629 26600K .......... .......... .......... .......... .......... 65% 243M 0s -#61 1.629 26650K .......... .......... .......... .......... .......... 65% 321M 0s -#61 1.629 26700K .......... .......... .......... .......... .......... 65% 265M 0s -#61 1.629 26750K .......... .......... .......... .......... .......... 65% 281M 0s -#61 1.629 26800K .......... .......... .......... .......... .......... 65% 316M 0s -#61 1.629 26850K .......... .......... .......... .......... .......... 65% 86.9M 0s -#61 1.630 26900K .......... .......... .......... .......... .......... 65% 264M 0s -#61 1.630 26950K .......... .......... .......... .......... .......... 65% 241M 0s -#61 1.630 27000K .......... .......... .......... .......... .......... 66% 313M 0s -#61 1.631 27050K .......... .......... .......... .......... .......... 66% 318M 0s -#61 1.631 27100K .......... .......... .......... .......... .......... 66% 273M 0s -#61 1.631 27150K .......... .......... .......... .......... .......... 66% 280M 0s -#61 1.631 27200K .......... .......... .......... .......... .......... 66% 270M 0s -#61 1.631 27250K .......... .......... .......... .......... .......... 66% 113M 0s -#61 1.632 27300K .......... .......... .......... .......... .......... 66% 177M 0s -#61 1.632 27350K .......... .......... .......... .......... .......... 66% 223M 0s -#61 1.632 27400K .......... .......... .......... .......... .......... 66% 283M 0s -#61 1.632 27450K .......... .......... .......... .......... .......... 67% 283M 0s -#61 1.633 27500K .......... .......... .......... .......... .......... 67% 325M 0s -#61 1.633 27550K .......... .......... .......... .......... .......... 67% 178M 0s -#61 1.633 27600K .......... .......... .......... .......... .......... 67% 273M 0s -#61 1.633 27650K .......... .......... .......... .......... .......... 67% 331M 0s -#61 1.633 27700K .......... .......... .......... .......... .......... 67% 98.6M 0s -#61 1.634 27750K .......... .......... .......... .......... .......... 67% 185M 0s -#61 1.634 27800K .......... .......... .......... .......... .......... 67% 286M 0s -#61 1.634 27850K .......... .......... .......... .......... .......... 68% 266M 0s -#61 1.634 27900K .......... .......... .......... .......... .......... 68% 319M 0s -#61 1.635 27950K .......... .......... .......... .......... .......... 68% 190M 0s -#61 1.635 28000K .......... .......... .......... .......... .......... 68% 325M 0s -#61 1.635 28050K .......... .......... .......... .......... .......... 68% 322M 0s -#61 1.635 28100K .......... .......... .......... .......... .......... 68% 105M 0s -#61 1.636 28150K .......... .......... .......... .......... .......... 68% 155M 0s -#61 1.636 28200K .......... .......... .......... .......... .......... 68% 248M 0s -#61 1.636 28250K .......... .......... .......... .......... .......... 69% 308M 0s -#61 1.636 28300K .......... .......... .......... .......... .......... 69% 292M 0s -#61 1.636 28350K .......... .......... .......... .......... .......... 69% 210M 0s -#61 1.637 28400K .......... .......... .......... .......... .......... 69% 166M 0s -#61 1.637 28450K .......... .......... .......... .......... .......... 69% 273M 0s -#61 1.637 28500K .......... .......... .......... .......... .......... 69% 124M 0s -#61 1.638 28550K .......... .......... .......... .......... .......... 69% 297M 0s -#61 1.638 28600K .......... .......... .......... .......... .......... 69% 131M 0s -#61 1.638 28650K .......... .......... .......... .......... .......... 70% 316M 0s -#61 1.638 28700K .......... .......... .......... .......... .......... 70% 261M 0s -#61 1.638 28750K .......... .......... .......... .......... .......... 70% 310M 0s -#61 1.639 28800K .......... .......... .......... .......... .......... 70% 253M 0s -#61 1.639 28850K .......... .......... .......... .......... .......... 70% 275M 0s -#61 1.639 28900K .......... .......... .......... .......... .......... 70% 319M 0s -#61 1.639 28950K .......... .......... .......... .......... .......... 70% 241M 0s -#61 1.639 29000K .......... .......... .......... .......... .......... 70% 245M 0s -#61 1.639 29050K .......... .......... .......... .......... .......... 71% 115M 0s -#61 1.640 29100K .......... .......... .......... .......... .......... 71% 267M 0s -#61 1.640 29150K .......... .......... .......... .......... .......... 71% 302M 0s -#61 1.640 29200K .......... .......... .......... .......... .......... 71% 272M 0s -#61 1.640 29250K .......... .......... .......... .......... .......... 71% 313M 0s -#61 1.641 29300K .......... .......... .......... .......... .......... 71% 304M 0s -#61 1.641 29350K .......... .......... .......... .......... .......... 71% 250M 0s -#61 1.641 29400K .......... .......... .......... .......... .......... 71% 292M 0s -#61 1.641 29450K .......... .......... .......... .......... .......... 71% 220M 0s -#61 1.641 29500K .......... .......... .......... .......... .......... 72% 143M 0s -#61 1.642 29550K .......... .......... .......... .......... .......... 72% 318M 0s -#61 1.642 29600K .......... .......... .......... .......... .......... 72% 225M 0s -#61 1.642 29650K .......... .......... .......... .......... .......... 72% 245M 0s -#61 1.642 29700K .......... .......... .......... .......... .......... 72% 257M 0s -#61 1.642 29750K .......... .......... .......... .......... .......... 72% 329M 0s -#61 1.643 29800K .......... .......... .......... .......... .......... 72% 316M 0s -#61 1.643 29850K .......... .......... .......... .......... .......... 72% 282M 0s -#61 1.643 29900K .......... .......... .......... .......... .......... 73% 141M 0s -#61 1.643 29950K .......... .......... .......... .......... .......... 73% 130M 0s -#61 1.644 30000K .......... .......... .......... .......... .......... 73% 316M 0s -#61 1.644 30050K .......... .......... .......... .......... .......... 73% 253M 0s -#61 1.644 30100K .......... .......... .......... .......... .......... 73% 173M 0s -#61 1.644 30150K .......... .......... .......... .......... .......... 73% 293M 0s -#61 1.644 30200K .......... .......... .......... .......... .......... 73% 277M 0s -#61 1.645 30250K .......... .......... .......... .......... .......... 73% 293M 0s -#61 1.645 30300K .......... .......... .......... .......... .......... 74% 323M 0s -#61 1.645 30350K .......... .......... .......... .......... .......... 74% 288M 0s -#61 1.645 30400K .......... .......... .......... .......... .......... 74% 178M 0s -#61 1.645 30450K .......... .......... .......... .......... .......... 74% 125M 0s -#61 1.646 30500K .......... .......... .......... .......... .......... 74% 291M 0s -#61 1.646 30550K .......... .......... .......... .......... .......... 74% 231M 0s -#61 1.646 30600K .......... .......... .......... .......... .......... 74% 258M 0s -#61 1.646 30650K .......... .......... .......... .......... .......... 74% 285M 0s -#61 1.647 30700K .......... .......... .......... .......... .......... 75% 262M 0s -#61 1.647 30750K .......... .......... .......... .......... .......... 75% 293M 0s -#61 1.647 30800K .......... .......... .......... .......... .......... 75% 293M 0s -#61 1.647 30850K .......... .......... .......... .......... .......... 75% 127M 0s -#61 1.647 30900K .......... .......... .......... .......... .......... 75% 264M 0s -#61 1.648 30950K .......... .......... .......... .......... .......... 75% 269M 0s -#61 1.648 31000K .......... .......... .......... .......... .......... 75% 288M 0s -#61 1.648 31050K .......... .......... .......... .......... .......... 75% 171M 0s -#61 1.648 31100K .......... .......... .......... .......... .......... 76% 189M 0s -#61 1.648 31150K .......... .......... .......... .......... .......... 76% 300M 0s -#61 1.649 31200K .......... .......... .......... .......... .......... 76% 224M 0s -#61 1.649 31250K .......... .......... .......... .......... .......... 76% 332M 0s -#61 1.649 31300K .......... .......... .......... .......... .......... 76% 336M 0s -#61 1.649 31350K .......... .......... .......... .......... .......... 76% 285M 0s -#61 1.649 31400K .......... .......... .......... .......... .......... 76% 319M 0s -#61 1.649 31450K .......... .......... .......... .......... .......... 76% 235M 0s -#61 1.650 31500K .......... .......... .......... .......... .......... 76% 320M 0s -#61 1.650 31550K .......... .......... .......... .......... .......... 77% 289M 0s -#61 1.650 31600K .......... .......... .......... .......... .......... 77% 272M 0s -#61 1.650 31650K .......... .......... .......... .......... .......... 77% 319M 0s -#61 1.650 31700K .......... .......... .......... .......... .......... 77% 272M 0s -#61 1.651 31750K .......... .......... .......... .......... .......... 77% 292M 0s -#61 1.651 31800K .......... .......... .......... .......... .......... 77% 292M 0s -#61 1.651 31850K .......... .......... .......... .......... .......... 77% 278M 0s -#61 1.651 31900K .......... .......... .......... .......... .......... 77% 127M 0s -#61 1.651 31950K .......... .......... .......... .......... .......... 78% 266M 0s -#61 1.652 32000K .......... .......... .......... .......... .......... 78% 301M 0s -#61 1.652 32050K .......... .......... .......... .......... .......... 78% 334M 0s -#61 1.652 32100K .......... .......... .......... .......... .......... 78% 261M 0s -#61 1.652 32150K .......... .......... .......... .......... .......... 78% 296M 0s -#61 1.652 32200K .......... .......... .......... .......... .......... 78% 270M 0s -#61 1.652 32250K .......... .......... .......... .......... .......... 78% 298M 0s -#61 1.653 32300K .......... .......... .......... .......... .......... 78% 315M 0s -#61 1.653 32350K .......... .......... .......... .......... .......... 79% 267M 0s -#61 1.653 32400K .......... .......... .......... .......... .......... 79% 290M 0s -#61 1.653 32450K .......... .......... .......... .......... .......... 79% 260M 0s -#61 1.653 32500K .......... .......... .......... .......... .......... 79% 308M 0s -#61 1.653 32550K .......... .......... .......... .......... .......... 79% 294M 0s -#61 1.654 32600K .......... .......... .......... .......... .......... 79% 266M 0s -#61 1.654 32650K .......... .......... .......... .......... .......... 79% 304M 0s -#61 1.654 32700K .......... .......... .......... .......... .......... 79% 271M 0s -#61 1.654 32750K .......... .......... .......... .......... .......... 80% 333M 0s -#61 1.654 32800K .......... .......... .......... .......... .......... 80% 348M 0s -#61 1.654 32850K .......... .......... .......... .......... .......... 80% 97.1M 0s -#61 1.655 32900K .......... .......... .......... .......... .......... 80% 269M 0s -#61 1.655 32950K .......... .......... .......... .......... .......... 80% 281M 0s -#61 1.655 33000K .......... .......... .......... .......... .......... 80% 297M 0s -#61 1.655 33050K .......... .......... .......... .......... .......... 80% 303M 0s -#61 1.656 33100K .......... .......... .......... .......... .......... 80% 272M 0s -#61 1.656 33150K .......... .......... .......... .......... .......... 81% 301M 0s -#61 1.656 33200K .......... .......... .......... .......... .......... 81% 285M 0s -#61 1.656 33250K .......... .......... .......... .......... .......... 81% 320M 0s -#61 1.656 33300K .......... .......... .......... .......... .......... 81% 333M 0s -#61 1.656 33350K .......... .......... .......... .......... .......... 81% 269M 0s -#61 1.657 33400K .......... .......... .......... .......... .......... 81% 324M 0s -#61 1.657 33450K .......... .......... .......... .......... .......... 81% 249M 0s -#61 1.657 33500K .......... .......... .......... .......... .......... 81% 315M 0s -#61 1.657 33550K .......... .......... .......... .......... .......... 81% 301M 0s -#61 1.657 33600K .......... .......... .......... .......... .......... 82% 279M 0s -#61 1.657 33650K .......... .......... .......... .......... .......... 82% 314M 0s -#61 1.658 33700K .......... .......... .......... .......... .......... 82% 277M 0s -#61 1.658 33750K .......... .......... .......... .......... .......... 82% 313M 0s -#61 1.658 33800K .......... .......... .......... .......... .......... 82% 324M 0s -#61 1.658 33850K .......... .......... .......... .......... .......... 82% 280M 0s -#61 1.658 33900K .......... .......... .......... .......... .......... 82% 306M 0s -#61 1.658 33950K .......... .......... .......... .......... .......... 82% 982K 0s -#61 1.709 34000K .......... .......... .......... .......... .......... 83% 238M 0s -#61 1.710 34050K .......... .......... .......... .......... .......... 83% 81.8M 0s -#61 1.710 34100K .......... .......... .......... .......... .......... 83% 244M 0s -#61 1.710 34150K .......... .......... .......... .......... .......... 83% 262M 0s -#61 1.711 34200K .......... .......... .......... .......... .......... 83% 239M 0s -#61 1.711 34250K .......... .......... .......... .......... .......... 83% 310M 0s -#61 1.711 34300K .......... .......... .......... .......... .......... 83% 312M 0s -#61 1.711 34350K .......... .......... .......... .......... .......... 83% 241M 0s -#61 1.711 34400K .......... .......... .......... .......... .......... 84% 280M 0s -#61 1.711 34450K .......... .......... .......... .......... .......... 84% 293M 0s -#61 1.712 34500K .......... .......... .......... .......... .......... 84% 336M 0s -#61 1.712 34550K .......... .......... .......... .......... .......... 84% 315M 0s -#61 1.712 34600K .......... .......... .......... .......... .......... 84% 249M 0s -#61 1.712 34650K .......... .......... .......... .......... .......... 84% 309M 0s -#61 1.712 34700K .......... .......... .......... .......... .......... 84% 244M 0s -#61 1.712 34750K .......... .......... .......... .......... .......... 84% 322M 0s -#61 1.713 34800K .......... .......... .......... .......... .......... 85% 293M 0s -#61 1.713 34850K .......... .......... .......... .......... .......... 85% 281M 0s -#61 1.713 34900K .......... .......... .......... .......... .......... 85% 187M 0s -#61 1.713 34950K .......... .......... .......... .......... .......... 85% 278M 0s -#61 1.713 35000K .......... .......... .......... .......... .......... 85% 301M 0s -#61 1.714 35050K .......... .......... .......... .......... .......... 85% 244M 0s -#61 1.714 35100K .......... .......... .......... .......... .......... 85% 268M 0s -#61 1.714 35150K .......... .......... .......... .......... .......... 85% 303M 0s -#61 1.714 35200K .......... .......... .......... .......... .......... 86% 271M 0s -#61 1.714 35250K .......... .......... .......... .......... .......... 86% 324M 0s -#61 1.714 35300K .......... .......... .......... .......... .......... 86% 320M 0s -#61 1.715 35350K .......... .......... .......... .......... .......... 86% 261M 0s -#61 1.715 35400K .......... .......... .......... .......... .......... 86% 316M 0s -#61 1.715 35450K .......... .......... .......... .......... .......... 86% 225M 0s -#61 1.715 35500K .......... .......... .......... .......... .......... 86% 314M 0s -#61 1.715 35550K .......... .......... .......... .......... .......... 86% 287M 0s -#61 1.715 35600K .......... .......... .......... .......... .......... 86% 253M 0s -#61 1.716 35650K .......... .......... .......... .......... .......... 87% 316M 0s -#61 1.716 35700K .......... .......... .......... .......... .......... 87% 261M 0s -#61 1.716 35750K .......... .......... .......... .......... .......... 87% 309M 0s -#61 1.716 35800K .......... .......... .......... .......... .......... 87% 331M 0s -#61 1.716 35850K .......... .......... .......... .......... .......... 87% 275M 0s -#61 1.716 35900K .......... .......... .......... .......... .......... 87% 308M 0s -#61 1.717 35950K .......... .......... .......... .......... .......... 87% 288M 0s -#61 1.717 36000K .......... .......... .......... .......... .......... 87% 329M 0s -#61 1.717 36050K .......... .......... .......... .......... .......... 88% 240M 0s -#61 1.717 36100K .......... .......... .......... .......... .......... 88% 217M 0s -#61 1.717 36150K .......... .......... .......... .......... .......... 88% 176M 0s -#61 1.718 36200K .......... .......... .......... .......... .......... 88% 259M 0s -#61 1.718 36250K .......... .......... .......... .......... .......... 88% 288M 0s -#61 1.718 36300K .......... .......... .......... .......... .......... 88% 315M 0s -#61 1.718 36350K .......... .......... .......... .......... .......... 88% 282M 0s -#61 1.718 36400K .......... .......... .......... .......... .......... 88% 320M 0s -#61 1.718 36450K .......... .......... .......... .......... .......... 89% 262M 0s -#61 1.719 36500K .......... .......... .......... .......... .......... 89% 144M 0s -#61 1.719 36550K .......... .......... .......... .......... .......... 89% 318M 0s -#61 1.719 36600K .......... .......... .......... .......... .......... 89% 259M 0s -#61 1.719 36650K .......... .......... .......... .......... .......... 89% 305M 0s -#61 1.719 36700K .......... .......... .......... .......... .......... 89% 255M 0s -#61 1.720 36750K .......... .......... .......... .......... .......... 89% 106M 0s -#61 1.720 36800K .......... .......... .......... .......... .......... 89% 312M 0s -#61 1.720 36850K .......... .......... .......... .......... .......... 90% 254M 0s -#61 1.721 36900K .......... .......... .......... .......... .......... 90% 323M 0s -#61 1.721 36950K .......... .......... .......... .......... .......... 90% 150M 0s -#61 1.721 37000K .......... .......... .......... .......... .......... 90% 305M 0s -#61 1.721 37050K .......... .......... .......... .......... .......... 90% 147M 0s -#61 1.721 37100K .......... .......... .......... .......... .......... 90% 249M 0s -#61 1.722 37150K .......... .......... .......... .......... .......... 90% 304M 0s -#61 1.722 37200K .......... .......... .......... .......... .......... 90% 275M 0s -#61 1.722 37250K .......... .......... .......... .......... .......... 91% 308M 0s -#61 1.722 37300K .......... .......... .......... .......... .......... 91% 336M 0s -#61 1.722 37350K .......... .......... .......... .......... .......... 91% 274M 0s -#61 1.722 37400K .......... .......... .......... .......... .......... 91% 330M 0s -#61 1.723 37450K .......... .......... .......... .......... .......... 91% 280M 0s -#61 1.723 37500K .......... .......... .......... .......... .......... 91% 320M 0s -#61 1.723 37550K .......... .......... .......... .......... .......... 91% 315M 0s -#61 1.723 37600K .......... .......... .......... .......... .......... 91% 268M 0s -#61 1.723 37650K .......... .......... .......... .......... .......... 91% 306M 0s -#61 1.723 37700K .......... .......... .......... .......... .......... 92% 269M 0s -#61 1.724 37750K .......... .......... .......... .......... .......... 92% 319M 0s -#61 1.724 37800K .......... .......... .......... .......... .......... 92% 322M 0s -#61 1.724 37850K .......... .......... .......... .......... .......... 92% 270M 0s -#61 1.724 37900K .......... .......... .......... .......... .......... 92% 317M 0s -#61 1.724 37950K .......... .......... .......... .......... .......... 92% 276M 0s -#61 1.724 38000K .......... .......... .......... .......... .......... 92% 311M 0s -#61 1.725 38050K .......... .......... .......... .......... .......... 92% 293M 0s -#61 1.725 38100K .......... .......... .......... .......... .......... 93% 276M 0s -#61 1.725 38150K .......... .......... .......... .......... .......... 93% 312M 0s -#61 1.725 38200K .......... .......... .......... .......... .......... 93% 276M 0s -#61 1.725 38250K .......... .......... .......... .......... .......... 93% 296M 0s -#61 1.725 38300K .......... .......... .......... .......... .......... 93% 209M 0s -#61 1.726 38350K .......... .......... .......... .......... .......... 93% 166M 0s -#61 1.726 38400K .......... .......... .......... .......... .......... 93% 233M 0s -#61 1.726 38450K .......... .......... .......... .......... .......... 93% 242M 0s -#61 1.726 38500K .......... .......... .......... .......... .......... 94% 273M 0s -#61 1.727 38550K .......... .......... .......... .......... .......... 94% 253M 0s -#61 1.727 38600K .......... .......... .......... .......... .......... 94% 232M 0s -#61 1.727 38650K .......... .......... .......... .......... .......... 94% 283M 0s -#61 1.727 38700K .......... .......... .......... .......... .......... 94% 81.7M 0s -#61 1.728 38750K .......... .......... .......... .......... .......... 94% 224M 0s -#61 1.728 38800K .......... .......... .......... .......... .......... 94% 241M 0s -#61 1.728 38850K .......... .......... .......... .......... .......... 94% 224M 0s -#61 1.728 38900K .......... .......... .......... .......... .......... 95% 275M 0s -#61 1.729 38950K .......... .......... .......... .......... .......... 95% 240M 0s -#61 1.729 39000K .......... .......... .......... .......... .......... 95% 246M 0s -#61 1.729 39050K .......... .......... .......... .......... .......... 95% 272M 0s -#61 1.729 39100K .......... .......... .......... .......... .......... 95% 237M 0s -#61 1.729 39150K .......... .......... .......... .......... .......... 95% 294M 0s -#61 1.730 39200K .......... .......... .......... .......... .......... 95% 207M 0s -#61 1.730 39250K .......... .......... .......... .......... .......... 95% 226M 0s -#61 1.730 39300K .......... .......... .......... .......... .......... 96% 248M 0s -#61 1.730 39350K .......... .......... .......... .......... .......... 96% 231M 0s -#61 1.730 39400K .......... .......... .......... .......... .......... 96% 227M 0s -#61 1.731 39450K .......... .......... .......... .......... .......... 96% 214M 0s -#61 1.731 39500K .......... .......... .......... .......... .......... 96% 284M 0s -#61 1.731 39550K .......... .......... .......... .......... .......... 96% 269M 0s -#61 1.731 39600K .......... .......... .......... .......... .......... 96% 258M 0s -#61 1.731 39650K .......... .......... .......... .......... .......... 96% 281M 0s -#61 1.732 39700K .......... .......... .......... .......... .......... 96% 249M 0s -#61 1.732 39750K .......... .......... .......... .......... .......... 97% 249M 0s -#61 1.732 39800K .......... .......... .......... .......... .......... 97% 273M 0s -#61 1.732 39850K .......... .......... .......... .......... .......... 97% 246M 0s -#61 1.732 39900K .......... .......... .......... .......... .......... 97% 270M 0s -#61 1.732 39950K .......... .......... .......... .......... .......... 97% 237M 0s -#61 1.733 40000K .......... .......... .......... .......... .......... 97% 264M 0s -#61 1.733 40050K .......... .......... .......... .......... .......... 97% 285M 0s -#61 1.733 40100K .......... .......... .......... .......... .......... 97% 238M 0s -#61 1.733 40150K .......... .......... .......... .......... .......... 98% 320M 0s -#61 1.733 40200K .......... .......... .......... .......... .......... 98% 261M 0s -#61 1.734 40250K .......... .......... .......... .......... .......... 98% 298M 0s -#61 1.734 40300K .......... .......... .......... .......... .......... 98% 261M 0s -#61 1.734 40350K .......... .......... .......... .......... .......... 98% 255M 0s -#61 1.734 40400K .......... .......... .......... .......... .......... 98% 303M 0s -#61 1.734 40450K .......... .......... .......... .......... .......... 98% 267M 0s -#61 1.734 40500K .......... .......... .......... .......... .......... 98% 303M 0s -#61 1.735 40550K .......... .......... .......... .......... .......... 99% 249M 0s -#61 1.735 40600K .......... .......... .......... .......... .......... 99% 273M 0s -#61 1.735 40650K .......... .......... .......... .......... .......... 99% 325M 0s -#61 1.735 40700K .......... .......... .......... .......... .......... 99% 276M 0s -#61 1.735 40750K .......... .......... .......... .......... .......... 99% 216M 0s -#61 1.736 40800K .......... .......... .......... .......... .......... 99% 301M 0s -#61 1.736 40850K .......... .......... .......... .......... .......... 99% 278M 0s -#61 1.736 40900K .......... .......... .......... .......... ..... -#61 ... - -#59 [opea/multimodalqna:latest comps-base 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/GenAIComps/requirements.txt -#59 10.20 Collecting typing-extensions>=4.8.0 (from fastapi->-r /home/user/GenAIComps/requirements.txt (line 5)) -#59 10.21 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#59 10.27 Collecting anyio (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) -#59 10.27 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#59 10.33 Collecting certifi (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) -#59 10.34 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#59 10.40 Collecting httpcore==1.* (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) -#59 10.41 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#59 10.46 Collecting idna (from httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) -#59 10.47 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#59 10.52 Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) -#59 10.52 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#59 10.58 Collecting six>=1.9.0 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 10.59 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#59 10.64 Collecting python-dateutil>=2.5.3 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 10.64 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#59 10.73 Collecting google-auth>=1.0.1 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 10.74 Downloading google_auth-2.38.0-py2.py3-none-any.whl.metadata (4.8 kB) -#59 10.81 Collecting websocket-client!=0.40.0,!=0.41.*,!=0.42.*,>=0.32.0 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 10.82 Downloading websocket_client-1.8.0-py3-none-any.whl.metadata (8.0 kB) -#59 10.88 Collecting requests-oauthlib (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 10.88 Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) -#59 10.93 Collecting oauthlib>=3.2.2 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 10.94 Downloading oauthlib-3.2.2-py3-none-any.whl.metadata (7.5 kB) -#59 11.00 Collecting urllib3>=1.24.2 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 11.01 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#59 11.05 Collecting durationpy>=0.7 (from kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 11.05 Downloading durationpy-0.9-py3-none-any.whl.metadata (338 bytes) -#59 11.43 Collecting SQLAlchemy<3,>=1.4 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 11.44 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) -#59 11.54 Collecting langchain-core<0.4.0,>=0.3.33 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 11.55 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) -#59 11.59 Collecting langchain-text-splitters<0.4.0,>=0.3.3 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 11.60 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) -#59 11.70 Collecting langsmith<0.4,>=0.1.17 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 11.71 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) -#59 11.73 Collecting numpy>=1.17.3 (from docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#59 11.73 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#59 11.91 Collecting tenacity!=8.4.0,<10,>=8.1.0 (from langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 11.91 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) -#59 11.98 Collecting dataclasses-json<0.7,>=0.5.7 (from langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) -#59 11.99 Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) -#59 12.03 Collecting httpx-sse<0.5.0,>=0.4.0 (from langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) -#59 12.04 Downloading httpx_sse-0.4.0-py3-none-any.whl.metadata (9.0 kB) -#59 12.16 Collecting pydantic-settings<3.0.0,>=2.4.0 (from langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) -#59 12.17 Downloading pydantic_settings-2.7.1-py3-none-any.whl.metadata (3.5 kB) -#59 12.22 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) -#59 12.22 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#59 12.29 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) -#59 12.30 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) -#59 12.36 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) -#59 12.37 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#59 12.42 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) -#59 12.43 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#59 12.49 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) -#59 12.50 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#59 13.26 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) -#59 13.26 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#59 13.31 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) -#59 13.32 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) -#59 13.37 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) -#59 13.38 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#59 13.67 Collecting protobuf<6.0,>=5.0 (from opentelemetry-proto==1.29.0->opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/GenAIComps/requirements.txt (line 11)) -#59 13.69 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#59 13.73 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/GenAIComps/requirements.txt (line 12)) -#59 13.75 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) -#59 13.82 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/GenAIComps/requirements.txt (line 14)) -#59 13.84 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#59 13.99 Collecting charset-normalizer<4,>=2 (from requests->-r /home/user/GenAIComps/requirements.txt (line 18)) -#59 14.02 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#59 14.11 Collecting click>=7.0 (from uvicorn->-r /home/user/GenAIComps/requirements.txt (line 20)) -#59 14.12 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#59 14.24 Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses-json<0.7,>=0.5.7->langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) -#59 14.25 Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) -#59 14.41 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) -#59 14.42 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#59 14.51 Collecting cachetools<6.0,>=2.0.0 (from google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 14.53 Downloading cachetools-5.5.1-py3-none-any.whl.metadata (5.4 kB) -#59 14.59 Collecting pyasn1-modules>=0.2.1 (from google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 14.60 Downloading pyasn1_modules-0.4.1-py3-none-any.whl.metadata (3.5 kB) -#59 14.66 Collecting rsa<5,>=3.1.4 (from google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 14.67 Downloading rsa-4.9-py3-none-any.whl.metadata (4.2 kB) -#59 14.74 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/GenAIComps/requirements.txt (line 10)) -#59 14.75 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#59 14.82 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 14.83 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) -#59 14.89 Collecting packaging<25,>=23.2 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 14.91 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#59 15.04 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 15.05 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) -#59 15.17 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 15.20 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) -#59 15.26 Collecting annotated-types>=0.6.0 (from pydantic>=1.10.8->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#59 15.27 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#59 16.02 Collecting pydantic-core==2.27.2 (from pydantic>=1.10.8->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#59 16.03 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#59 16.11 Collecting python-dotenv>=0.21.0 (from pydantic-settings<3.0.0,>=2.4.0->langchain-community->-r /home/user/GenAIComps/requirements.txt (line 9)) -#59 16.13 Downloading python_dotenv-1.0.1-py3-none-any.whl.metadata (23 kB) -#59 16.20 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#59 16.22 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#59 16.27 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#59 16.28 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#59 16.48 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 16.49 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#59 16.55 Collecting sniffio>=1.1 (from anyio->httpx->-r /home/user/GenAIComps/requirements.txt (line 6)) -#59 16.56 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#59 16.64 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#59 16.65 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) -#59 16.88 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/GenAIComps/requirements.txt (line 8)) -#59 16.89 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) -#59 16.96 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray->-r /home/user/GenAIComps/requirements.txt (line 3)) -#59 16.97 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#59 17.05 Collecting pyasn1<0.7.0,>=0.4.6 (from pyasn1-modules>=0.2.1->google-auth>=1.0.1->kubernetes->-r /home/user/GenAIComps/requirements.txt (line 7)) -#59 17.06 Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) -#59 17.15 Downloading aiofiles-24.1.0-py3-none-any.whl (15 kB) -#59 17.19 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) -#59 17.40 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 14.3 MB/s eta 0:00:00 -#59 17.41 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#59 17.42 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#59 17.45 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#59 17.46 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#59 17.47 Downloading kubernetes-32.0.0-py2.py3-none-any.whl (2.0 MB) -#59 17.49 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 122.6 MB/s eta 0:00:00 -#59 17.50 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) -#59 17.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 120.2 MB/s eta 0:00:00 -#59 17.53 Downloading langchain_community-0.3.16-py3-none-any.whl (2.5 MB) -#59 17.57 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 109.7 MB/s eta 0:00:00 -#59 17.57 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) -#59 17.59 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) -#59 17.61 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) -#59 17.62 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) -#59 17.63 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) -#59 17.64 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) -#59 17.66 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) -#59 17.67 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) -#59 17.68 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#59 17.72 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 117.0 MB/s eta 0:00:00 -#59 17.73 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#59 17.74 Downloading pypdf-5.2.0-py3-none-any.whl (298 kB) -#59 17.80 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) -#59 17.81 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#59 17.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 148.4 MB/s eta 0:00:00 -#59 17.82 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#59 17.83 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#59 17.89 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#59 17.91 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#59 17.93 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#59 17.94 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#59 17.95 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#59 17.96 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#59 17.97 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#59 17.97 Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) -#59 18.01 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#59 18.01 Downloading durationpy-0.9-py3-none-any.whl (3.5 kB) -#59 18.04 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) -#59 18.07 Downloading google_auth-2.38.0-py2.py3-none-any.whl (210 kB) -#59 18.08 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#59 18.09 Downloading httpx_sse-0.4.0-py3-none-any.whl (7.8 kB) -#59 18.10 Downloading idna-3.10-py3-none-any.whl (70 kB) -#59 18.11 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) -#59 18.12 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) -#59 18.17 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) -#59 18.18 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) -#59 18.20 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) -#59 18.21 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) -#59 18.36 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 123.3 MB/s eta 0:00:00 -#59 18.37 Downloading oauthlib-3.2.2-py3-none-any.whl (151 kB) -#59 18.39 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#59 18.40 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#59 18.41 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) -#59 18.42 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) -#59 18.43 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#59 18.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 196.9 MB/s eta 0:00:00 -#59 18.45 Downloading pydantic_settings-2.7.1-py3-none-any.whl (29 kB) -#59 18.46 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#59 18.47 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#59 18.48 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#59 18.49 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB) -#59 18.51 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 224.5 MB/s eta 0:00:00 -#59 18.52 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#59 18.52 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#59 18.53 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) -#59 18.54 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#59 18.55 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#59 18.56 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#59 18.57 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#59 18.58 Downloading websocket_client-1.8.0-py3-none-any.whl (58 kB) -#59 18.59 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) -#59 18.60 Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) -#59 18.61 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#59 18.62 Downloading cachetools-5.5.1-py3-none-any.whl (9.5 kB) -#59 18.63 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#59 18.64 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (602 kB) -#59 18.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 602.4/602.4 kB 245.3 MB/s eta 0:00:00 -#59 18.65 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#59 18.68 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 202.5 MB/s eta 0:00:00 -#59 18.69 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) -#59 18.70 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#59 18.71 Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) -#59 18.72 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#59 18.73 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#59 18.74 Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB) -#59 18.75 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#59 18.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 195.4 MB/s eta 0:00:00 -#59 18.76 Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB) -#59 18.77 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) -#59 18.78 Downloading rsa-4.9-py3-none-any.whl (34 kB) -#59 18.79 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#59 18.80 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) -#59 18.81 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#59 18.82 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) -#59 18.84 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 232.0 MB/s eta 0:00:00 -#59 18.85 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) -#59 18.86 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#59 18.87 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) -#59 18.88 Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) -#59 19.11 Building wheels for collected packages: docx2txt -#59 19.11 Building wheel for docx2txt (setup.py): started -#59 19.31 Building wheel for docx2txt (setup.py): finished with status 'done' -#59 19.31 Created wheel for docx2txt: filename=docx2txt-0.8-py3-none-any.whl size=3990 sha256=33a45c5070de0885b8cd25c5bbb44b993414f6d8f32941fc26717e461438b8a4 -#59 19.31 Stored in directory: /tmp/pip-ephem-wheel-cache-sqlx55pq/wheels/0f/0e/7a/3094a4ceefe657bff7e12dd9592a9d5b6487ef4338ace0afa6 -#59 19.31 Successfully built docx2txt -#59 19.52 Installing collected packages: durationpy, docx2txt, zstandard, zipp, wrapt, websocket-client, urllib3, typing-extensions, tenacity, sniffio, six, shortuuid, pyyaml, python-multipart, python-dotenv, pypdf, pygments, pyasn1, protobuf, propcache, prometheus-client, Pillow, packaging, orjson, oauthlib, numpy, mypy-extensions, multidict, mdurl, jsonpointer, idna, httpx-sse, h11, grpcio, greenlet, frozenlist, click, charset-normalizer, certifi, cachetools, attrs, annotated-types, aiohappyeyeballs, aiofiles, yarl, uvicorn, typing-inspect, types-requests, SQLAlchemy, rsa, requests, python-dateutil, pydantic-core, pyasn1-modules, opentelemetry-proto, marshmallow, markdown-it-py, jsonpatch, importlib-metadata, httpcore, googleapis-common-protos, deprecated, anyio, aiosignal, starlette, rich, requests-toolbelt, requests-oauthlib, pydantic, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, httpx, google-auth, dataclasses-json, aiohttp, pydantic-settings, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, kubernetes, fastapi, docarray, opentelemetry-sdk, langchain-core, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, langchain-text-splitters, opentelemetry-exporter-otlp, langchain, langchain-community -#59 ... - -#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ -#61 1.736 40900K .......... .......... .......... .......... .......... 99% 969K 0s -#61 1.788 40950K .......... .......... .......... 100% 16.0M=1.0s -#61 1.789 -#61 1.789 2025-02-03 22:03:49 (38.4 MB/s) - ‘ffmpeg-git-amd64-static.tar.xz’ saved [41964060/41964060] -#61 1.789 -#61 1.794 ffmpeg-git-20240629-amd64-static/GPLv3.txt -#61 1.794 ffmpeg-git-20240629-amd64-static/manpages/ -#61 1.794 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-all.txt -#61 1.814 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-scaler.txt -#61 1.814 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-resampler.txt -#61 1.814 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-filters.txt -#61 1.815 ffmpeg-git-20240629-amd64-static/manpages/ffprobe.txt -#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-devices.txt -#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-utils.txt -#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-protocols.txt -#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-codecs.txt -#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-bitstream-filters.txt -#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg.txt -#61 1.816 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-formats.txt -#61 1.817 ffmpeg-git-20240629-amd64-static/ffprobe -#61 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 11.91 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl (178.7 MB) -#54 14.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.7/178.7 MB 63.2 MB/s eta 0:00:00 -#54 14.76 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl (1.8 MB) -#54 14.82 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 28.8 MB/s eta 0:00:00 -#54 14.87 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#54 16.09 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 4.2 MB/s eta 0:00:00 -#54 16.10 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#54 16.15 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#54 16.21 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) -#54 16.28 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) -#54 16.35 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) -#54 16.55 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 9.2 MB/s eta 0:00:00 -#54 16.58 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) -#54 17.47 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 18.8 MB/s eta 0:00:00 -#54 17.51 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) -#54 18.32 Installing collected packages: mpmath, typing-extensions, sympy, pillow, numpy, networkx, MarkupSafe, fsspec, filelock, jinja2, torch, torchvision -#54 ... - -#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ -#61 3.233 ffmpeg-git-20240629-amd64-static/qt-faststart -#61 3.236 ffmpeg-git-20240629-amd64-static/model/ -#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_v0.6.1.json -#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/ -#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020.model -#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005 -#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015 -#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016.model -#61 3.236 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.model -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008.model -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020 -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017.model -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014 -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011 -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012 -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004 -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005.model -#61 3.237 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003.model -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019 -#61 3.238 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014.model -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018.model -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.json -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016 -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010.model -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001.model -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003 -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015.model -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013 -#61 3.239 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1.json -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/ -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012 -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006.model -#61 3.240 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013.model -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001 -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011.model -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007 -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006 -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.model -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017 -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008 -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003 -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002 -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004.model -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001.model -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018.model -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002.model -#61 3.241 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.json -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014 -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017.model -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019 -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009.model -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013 -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007.model -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016.model -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010 -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016 -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl.model -#61 3.242 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3.json -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1neg.json -#61 3.243 ffmpeg-git-20240629-amd64-static/model/000-PLEASE-README.TXT -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_float_4k_v0.6.1.json -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/ -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008.model -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012 -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002.model -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007.model -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011.model -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019 -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017.model -#61 3.243 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008 -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004.model -#61 3.244 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.json -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006 -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001.model -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016.model -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.model -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015 -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003.model -#61 3.245 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011 -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016 -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003 -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014.model -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018.model -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001 -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002 -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012.model -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.json -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl -#61 3.246 ffmpeg-git-20240629-amd64-static/model/vmaf_b_v0.6.3.json -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/ -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003 -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012 -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017 -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016 -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015 -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006 -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009 -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017.model -#61 3.247 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.json -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008 -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001 -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011 -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004 -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002.model -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005 -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014 -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014.model -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007.model -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.model -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002 -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020.model -#61 3.248 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007 -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018.model -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020 -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010 -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013.model -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011.model -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016.model -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010.model -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006.model -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019 -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013 -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018 -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005.model -#61 3.249 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.json -#61 3.249 ffmpeg-git-20240629-amd64-static/model/other_models/ -#61 3.249 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl.model -#61 3.250 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl -#61 3.250 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v2.pkl -#61 3.252 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.json -#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl -#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl -#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/niqe_v0.1.pkl -#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl.model -#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl.model -#61 3.253 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl.model -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl.model -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl.model -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl.model -#61 3.254 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.json -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl.model -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl.model -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl.model -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.1mfz.json -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl.model -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl -#61 3.255 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v1.pkl -#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl.model -#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl -#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/model_V8a.model -#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl.model -#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl.model -#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl.model -#61 3.257 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.json -#61 3.257 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl.model -#61 3.257 ffmpeg-git-20240629-amd64-static/readme.txt -#61 3.257 ffmpeg-git-20240629-amd64-static/ffmpeg -#61 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 26.85 Selecting previously unselected package python3.11. -#42 26.86 Preparing to unpack .../python3.11_3.11.2-6+deb12u5_amd64.deb ... -#42 26.87 Unpacking python3.11 (3.11.2-6+deb12u5) ... -#42 27.47 Selecting previously unselected package libpython3-stdlib:amd64. -#42 27.49 Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ... -#42 27.61 Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ... -#42 28.26 Setting up python3-minimal (3.11.2-1+b1) ... -#42 29.40 Selecting previously unselected package python3. -#42 29.40 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 15343 files and directories currently installed.) -#42 29.40 Preparing to unpack .../000-python3_3.11.2-1+b1_amd64.deb ... -#42 29.41 Unpacking python3 (3.11.2-1+b1) ... -#42 29.44 Selecting previously unselected package bzip2. -#42 29.44 Preparing to unpack .../001-bzip2_1.0.8-5+b1_amd64.deb ... -#42 29.44 Unpacking bzip2 (1.0.8-5+b1) ... -#42 29.82 Selecting previously unselected package wget. -#42 29.82 Preparing to unpack .../002-wget_1.21.3-1+b2_amd64.deb ... -#42 29.87 Unpacking wget (1.21.3-1+b2) ... -#42 30.34 Selecting previously unselected package xz-utils. -#42 30.34 Preparing to unpack .../003-xz-utils_5.4.1-0.2_amd64.deb ... -#42 30.44 Unpacking xz-utils (5.4.1-0.2) ... -#42 31.24 Selecting previously unselected package hicolor-icon-theme. -#42 31.25 Preparing to unpack .../004-hicolor-icon-theme_0.17-2_all.deb ... -#42 31.33 Unpacking hicolor-icon-theme (0.17-2) ... -#42 31.62 Selecting previously unselected package libgdk-pixbuf2.0-common. -#42 31.63 Preparing to unpack .../005-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u1_all.deb ... -#42 31.63 Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... -#42 31.67 Selecting previously unselected package shared-mime-info. -#42 31.67 Preparing to unpack .../006-shared-mime-info_2.2-1_amd64.deb ... -#42 31.67 Unpacking shared-mime-info (2.2-1) ... -#42 31.75 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -#42 31.75 Preparing to unpack .../007-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u1_amd64.deb ... -#42 31.75 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... -#42 31.77 Selecting previously unselected package gtk-update-icon-cache. -#42 31.77 Preparing to unpack .../008-gtk-update-icon-cache_3.24.38-2~deb12u3_amd64.deb ... -#42 31.77 Unpacking gtk-update-icon-cache (3.24.38-2~deb12u3) ... -#42 31.80 Selecting previously unselected package adwaita-icon-theme. -#42 31.80 Preparing to unpack .../009-adwaita-icon-theme_43-1_all.deb ... -#42 31.80 Unpacking adwaita-icon-theme (43-1) ... -#42 32.45 Selecting previously unselected package at-spi2-common. -#42 32.45 Preparing to unpack .../010-at-spi2-common_2.46.0-5_all.deb ... -#42 32.45 Unpacking at-spi2-common (2.46.0-5) ... -#42 32.48 Selecting previously unselected package binutils-common:amd64. -#42 32.49 Preparing to unpack .../011-binutils-common_2.40-2_amd64.deb ... -#42 32.49 Unpacking binutils-common:amd64 (2.40-2) ... -#42 32.68 Selecting previously unselected package libbinutils:amd64. -#42 32.68 Preparing to unpack .../012-libbinutils_2.40-2_amd64.deb ... -#42 32.68 Unpacking libbinutils:amd64 (2.40-2) ... -#42 32.74 Selecting previously unselected package libctf-nobfd0:amd64. -#42 32.74 Preparing to unpack .../013-libctf-nobfd0_2.40-2_amd64.deb ... -#42 32.74 Unpacking libctf-nobfd0:amd64 (2.40-2) ... -#42 32.77 Selecting previously unselected package libctf0:amd64. -#42 32.77 Preparing to unpack .../014-libctf0_2.40-2_amd64.deb ... -#42 32.77 Unpacking libctf0:amd64 (2.40-2) ... -#42 32.79 Selecting previously unselected package libgprofng0:amd64. -#42 32.79 Preparing to unpack .../015-libgprofng0_2.40-2_amd64.deb ... -#42 32.79 Unpacking libgprofng0:amd64 (2.40-2) ... -#42 32.87 Selecting previously unselected package libjansson4:amd64. -#42 32.87 Preparing to unpack .../016-libjansson4_2.14-2_amd64.deb ... -#42 32.87 Unpacking libjansson4:amd64 (2.14-2) ... -#42 32.89 Selecting previously unselected package binutils-x86-64-linux-gnu. -#42 32.89 Preparing to unpack .../017-binutils-x86-64-linux-gnu_2.40-2_amd64.deb ... -#42 32.89 Unpacking binutils-x86-64-linux-gnu (2.40-2) ... -#42 33.08 Selecting previously unselected package binutils. -#42 33.08 Preparing to unpack .../018-binutils_2.40-2_amd64.deb ... -#42 33.08 Unpacking binutils (2.40-2) ... -#42 33.10 Selecting previously unselected package libc-dev-bin. -#42 33.11 Preparing to unpack .../019-libc-dev-bin_2.36-9+deb12u9_amd64.deb ... -#42 33.11 Unpacking libc-dev-bin (2.36-9+deb12u9) ... -#42 33.12 Selecting previously unselected package linux-libc-dev:amd64. -#42 33.13 Preparing to unpack .../020-linux-libc-dev_6.1.124-1_amd64.deb ... -#42 33.13 Unpacking linux-libc-dev:amd64 (6.1.124-1) ... -#42 33.27 Selecting previously unselected package libcrypt-dev:amd64. -#42 33.27 Preparing to unpack .../021-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... -#42 33.27 Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... -#42 33.30 Selecting previously unselected package libtirpc-dev:amd64. -#42 33.30 Preparing to unpack .../022-libtirpc-dev_1.3.3+ds-1_amd64.deb ... -#42 33.30 Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... -#42 33.33 Selecting previously unselected package libnsl-dev:amd64. -#42 33.33 Preparing to unpack .../023-libnsl-dev_1.3.0-2_amd64.deb ... -#42 33.33 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -#42 33.35 Selecting previously unselected package rpcsvc-proto. -#42 33.35 Preparing to unpack .../024-rpcsvc-proto_1.4.3-1_amd64.deb ... -#42 33.35 Unpacking rpcsvc-proto (1.4.3-1) ... -#42 33.37 Selecting previously unselected package libc6-dev:amd64. -#42 33.37 Preparing to unpack .../025-libc6-dev_2.36-9+deb12u9_amd64.deb ... -#42 33.37 Unpacking libc6-dev:amd64 (2.36-9+deb12u9) ... -#42 33.53 Selecting previously unselected package libisl23:amd64. -#42 33.53 Preparing to unpack .../026-libisl23_0.25-1.1_amd64.deb ... -#42 33.54 Unpacking libisl23:amd64 (0.25-1.1) ... -#42 33.60 Selecting previously unselected package libmpfr6:amd64. -#42 33.60 Preparing to unpack .../027-libmpfr6_4.2.0-1_amd64.deb ... -#42 33.60 Unpacking libmpfr6:amd64 (4.2.0-1) ... -#42 33.64 Selecting previously unselected package libmpc3:amd64. -#42 33.64 Preparing to unpack .../028-libmpc3_1.3.1-1_amd64.deb ... -#42 33.64 Unpacking libmpc3:amd64 (1.3.1-1) ... -#42 33.66 Selecting previously unselected package cpp-12. -#42 33.66 Preparing to unpack .../029-cpp-12_12.2.0-14_amd64.deb ... -#42 33.66 Unpacking cpp-12 (12.2.0-14) ... -#42 34.24 Selecting previously unselected package cpp. -#42 34.25 Preparing to unpack .../030-cpp_4%3a12.2.0-3_amd64.deb ... -#42 34.25 Unpacking cpp (4:12.2.0-3) ... -#42 34.26 Selecting previously unselected package libcc1-0:amd64. -#42 34.27 Preparing to unpack .../031-libcc1-0_12.2.0-14_amd64.deb ... -#42 34.27 Unpacking libcc1-0:amd64 (12.2.0-14) ... -#42 34.28 Selecting previously unselected package libgomp1:amd64. -#42 34.29 Preparing to unpack .../032-libgomp1_12.2.0-14_amd64.deb ... -#42 34.29 Unpacking libgomp1:amd64 (12.2.0-14) ... -#42 34.31 Selecting previously unselected package libitm1:amd64. -#42 34.31 Preparing to unpack .../033-libitm1_12.2.0-14_amd64.deb ... -#42 34.31 Unpacking libitm1:amd64 (12.2.0-14) ... -#42 34.33 Selecting previously unselected package libatomic1:amd64. -#42 34.33 Preparing to unpack .../034-libatomic1_12.2.0-14_amd64.deb ... -#42 34.33 Unpacking libatomic1:amd64 (12.2.0-14) ... -#42 34.34 Selecting previously unselected package libasan8:amd64. -#42 34.34 Preparing to unpack .../035-libasan8_12.2.0-14_amd64.deb ... -#42 34.35 Unpacking libasan8:amd64 (12.2.0-14) ... -#42 34.53 Selecting previously unselected package liblsan0:amd64. -#42 34.53 Preparing to unpack .../036-liblsan0_12.2.0-14_amd64.deb ... -#42 34.53 Unpacking liblsan0:amd64 (12.2.0-14) ... -#42 34.61 Selecting previously unselected package libtsan2:amd64. -#42 34.62 Preparing to unpack .../037-libtsan2_12.2.0-14_amd64.deb ... -#42 34.62 Unpacking libtsan2:amd64 (12.2.0-14) ... -#42 34.80 Selecting previously unselected package libubsan1:amd64. -#42 34.80 Preparing to unpack .../038-libubsan1_12.2.0-14_amd64.deb ... -#42 34.80 Unpacking libubsan1:amd64 (12.2.0-14) ... -#42 34.88 Selecting previously unselected package libquadmath0:amd64. -#42 34.88 Preparing to unpack .../039-libquadmath0_12.2.0-14_amd64.deb ... -#42 34.88 Unpacking libquadmath0:amd64 (12.2.0-14) ... -#42 34.91 Selecting previously unselected package libgcc-12-dev:amd64. -#42 34.91 Preparing to unpack .../040-libgcc-12-dev_12.2.0-14_amd64.deb ... -#42 34.91 Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... -#42 35.08 Selecting previously unselected package gcc-12. -#42 35.08 Preparing to unpack .../041-gcc-12_12.2.0-14_amd64.deb ... -#42 35.08 Unpacking gcc-12 (12.2.0-14) ... -#42 35.74 Selecting previously unselected package gcc. -#42 35.74 Preparing to unpack .../042-gcc_4%3a12.2.0-3_amd64.deb ... -#42 35.74 Unpacking gcc (4:12.2.0-3) ... -#42 35.76 Selecting previously unselected package libstdc++-12-dev:amd64. -#42 35.76 Preparing to unpack .../043-libstdc++-12-dev_12.2.0-14_amd64.deb ... -#42 35.76 Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... -#42 35.93 Selecting previously unselected package g++-12. -#42 35.94 Preparing to unpack .../044-g++-12_12.2.0-14_amd64.deb ... -#42 35.94 Unpacking g++-12 (12.2.0-14) ... -#42 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 30.27 Selecting previously unselected package libglapi-mesa:amd64. -#49 30.27 Preparing to unpack .../155-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... -#49 30.32 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#49 30.58 Selecting previously unselected package libxcb-dri2-0:amd64. -#49 30.58 Preparing to unpack .../156-libxcb-dri2-0_1.15-1_amd64.deb ... -#49 30.58 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... -#49 30.60 Selecting previously unselected package libxcb-glx0:amd64. -#49 30.60 Preparing to unpack .../157-libxcb-glx0_1.15-1_amd64.deb ... -#49 30.61 Unpacking libxcb-glx0:amd64 (1.15-1) ... -#49 30.63 Selecting previously unselected package libxcb-present0:amd64. -#49 30.63 Preparing to unpack .../158-libxcb-present0_1.15-1_amd64.deb ... -#49 30.63 Unpacking libxcb-present0:amd64 (1.15-1) ... -#49 30.65 Selecting previously unselected package libxcb-randr0:amd64. -#49 30.66 Preparing to unpack .../159-libxcb-randr0_1.15-1_amd64.deb ... -#49 30.66 Unpacking libxcb-randr0:amd64 (1.15-1) ... -#49 30.68 Selecting previously unselected package libxcb-sync1:amd64. -#49 30.68 Preparing to unpack .../160-libxcb-sync1_1.15-1_amd64.deb ... -#49 30.68 Unpacking libxcb-sync1:amd64 (1.15-1) ... -#49 30.71 Selecting previously unselected package libxcb-xfixes0:amd64. -#49 30.71 Preparing to unpack .../161-libxcb-xfixes0_1.15-1_amd64.deb ... -#49 30.71 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... -#49 30.73 Selecting previously unselected package libxshmfence1:amd64. -#49 30.73 Preparing to unpack .../162-libxshmfence1_1.3-1_amd64.deb ... -#49 30.73 Unpacking libxshmfence1:amd64 (1.3-1) ... -#49 30.75 Selecting previously unselected package libxxf86vm1:amd64. -#49 30.75 Preparing to unpack .../163-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -#49 30.75 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#49 30.76 Selecting previously unselected package libdrm-amdgpu1:amd64. -#49 30.76 Preparing to unpack .../164-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... -#49 30.76 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#49 30.78 Selecting previously unselected package libpciaccess0:amd64. -#49 30.78 Preparing to unpack .../165-libpciaccess0_0.17-2_amd64.deb ... -#49 30.78 Unpacking libpciaccess0:amd64 (0.17-2) ... -#49 30.80 Selecting previously unselected package libdrm-intel1:amd64. -#49 30.80 Preparing to unpack .../166-libdrm-intel1_2.4.114-1+b1_amd64.deb ... -#49 30.80 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... -#49 30.82 Selecting previously unselected package libdrm-nouveau2:amd64. -#49 30.82 Preparing to unpack .../167-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... -#49 30.83 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#49 30.85 Selecting previously unselected package libdrm-radeon1:amd64. -#49 30.85 Preparing to unpack .../168-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... -#49 30.85 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#49 30.86 Selecting previously unselected package libelf1:amd64. -#49 30.86 Preparing to unpack .../169-libelf1_0.188-2.1_amd64.deb ... -#49 30.87 Unpacking libelf1:amd64 (0.188-2.1) ... -#49 30.89 Selecting previously unselected package libedit2:amd64. -#49 30.89 Preparing to unpack .../170-libedit2_3.1-20221030-2_amd64.deb ... -#49 30.89 Unpacking libedit2:amd64 (3.1-20221030-2) ... -#49 30.91 Selecting previously unselected package libz3-4:amd64. -#49 30.91 Preparing to unpack .../171-libz3-4_4.8.12-3.1_amd64.deb ... -#49 30.92 Unpacking libz3-4:amd64 (4.8.12-3.1) ... -#49 31.41 Selecting previously unselected package libllvm15:amd64. -#49 31.41 Preparing to unpack .../172-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... -#49 31.42 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... -#49 32.12 Selecting previously unselected package libsensors-config. -#49 32.12 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7.1_all.deb ... -#49 32.12 Unpacking libsensors-config (1:3.6.0-7.1) ... -#49 32.14 Selecting previously unselected package libsensors5:amd64. -#49 32.14 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7.1_amd64.deb ... -#49 32.15 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... -#49 32.16 Selecting previously unselected package libgl1-mesa-dri:amd64. -#49 32.16 Preparing to unpack .../175-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... -#49 32.17 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#49 32.65 Selecting previously unselected package libglx-mesa0:amd64. -#49 32.66 Preparing to unpack .../176-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... -#49 32.66 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#49 32.68 Selecting previously unselected package libglx0:amd64. -#49 32.68 Preparing to unpack .../177-libglx0_1.6.0-1_amd64.deb ... -#49 32.68 Unpacking libglx0:amd64 (1.6.0-1) ... -#49 32.70 Selecting previously unselected package libgl1:amd64. -#49 32.70 Preparing to unpack .../178-libgl1_1.6.0-1_amd64.deb ... -#49 32.70 Unpacking libgl1:amd64 (1.6.0-1) ... -#49 32.72 Selecting previously unselected package libiec61883-0:amd64. -#49 32.72 Preparing to unpack .../179-libiec61883-0_1.2.0-6+b1_amd64.deb ... -#49 32.73 Unpacking libiec61883-0:amd64 (1.2.0-6+b1) ... -#49 32.74 Selecting previously unselected package libsamplerate0:amd64. -#49 32.74 Preparing to unpack .../180-libsamplerate0_0.2.2-3_amd64.deb ... -#49 32.74 Unpacking libsamplerate0:amd64 (0.2.2-3) ... -#49 32.83 Selecting previously unselected package libjack-jackd2-0:amd64. -#49 32.83 Preparing to unpack .../181-libjack-jackd2-0_1.9.21~dfsg-3_amd64.deb ... -#49 32.83 Unpacking libjack-jackd2-0:amd64 (1.9.21~dfsg-3) ... -#49 32.87 Selecting previously unselected package libopenal-data. -#49 32.87 Preparing to unpack .../182-libopenal-data_1%3a1.19.1-2_all.deb ... -#49 32.87 Unpacking libopenal-data (1:1.19.1-2) ... -#49 32.89 Selecting previously unselected package libsndio7.0:amd64. -#49 32.89 Preparing to unpack .../183-libsndio7.0_1.9.0-0.3+b2_amd64.deb ... -#49 32.89 Unpacking libsndio7.0:amd64 (1.9.0-0.3+b2) ... -#49 32.91 Selecting previously unselected package libopenal1:amd64. -#49 32.91 Preparing to unpack .../184-libopenal1_1%3a1.19.1-2_amd64.deb ... -#49 32.91 Unpacking libopenal1:amd64 (1:1.19.1-2) ... -#49 32.96 Selecting previously unselected package libwayland-client0:amd64. -#49 32.96 Preparing to unpack .../185-libwayland-client0_1.21.0-1_amd64.deb ... -#49 32.96 Unpacking libwayland-client0:amd64 (1.21.0-1) ... -#49 32.97 Selecting previously unselected package libdecor-0-0:amd64. -#49 32.97 Preparing to unpack .../186-libdecor-0-0_0.1.1-2_amd64.deb ... -#49 32.97 Unpacking libdecor-0-0:amd64 (0.1.1-2) ... -#49 32.99 Selecting previously unselected package libwayland-server0:amd64. -#49 32.99 Preparing to unpack .../187-libwayland-server0_1.21.0-1_amd64.deb ... -#49 32.99 Unpacking libwayland-server0:amd64 (1.21.0-1) ... -#49 33.00 Selecting previously unselected package libgbm1:amd64. -#49 33.00 Preparing to unpack .../188-libgbm1_22.3.6-1+deb12u1_amd64.deb ... -#49 33.01 Unpacking libgbm1:amd64 (22.3.6-1+deb12u1) ... -#49 33.02 Selecting previously unselected package libwayland-cursor0:amd64. -#49 33.02 Preparing to unpack .../189-libwayland-cursor0_1.21.0-1_amd64.deb ... -#49 33.02 Unpacking libwayland-cursor0:amd64 (1.21.0-1) ... -#49 33.04 Selecting previously unselected package libwayland-egl1:amd64. -#49 33.04 Preparing to unpack .../190-libwayland-egl1_1.21.0-1_amd64.deb ... -#49 33.04 Unpacking libwayland-egl1:amd64 (1.21.0-1) ... -#49 33.05 Selecting previously unselected package libxcursor1:amd64. -#49 33.05 Preparing to unpack .../191-libxcursor1_1%3a1.2.1-1_amd64.deb ... -#49 33.05 Unpacking libxcursor1:amd64 (1:1.2.1-1) ... -#49 33.07 Selecting previously unselected package libxi6:amd64. -#49 33.07 Preparing to unpack .../192-libxi6_2%3a1.8-1+b1_amd64.deb ... -#49 33.07 Unpacking libxi6:amd64 (2:1.8-1+b1) ... -#49 33.09 Selecting previously unselected package xkb-data. -#49 33.09 Preparing to unpack .../193-xkb-data_2.35.1-1_all.deb ... -#49 33.09 Unpacking xkb-data (2.35.1-1) ... -#49 33.17 Selecting previously unselected package libxkbcommon0:amd64. -#49 33.17 Preparing to unpack .../194-libxkbcommon0_1.5.0-1_amd64.deb ... -#49 33.17 Unpacking libxkbcommon0:amd64 (1.5.0-1) ... -#49 33.19 Selecting previously unselected package libxrandr2:amd64. -#49 33.20 Preparing to unpack .../195-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ... -#49 33.20 Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ... -#49 33.21 Selecting previously unselected package x11-common. -#49 33.21 Preparing to unpack .../196-x11-common_1%3a7.7+23_all.deb ... -#49 33.21 Unpacking x11-common (1:7.7+23) ... -#49 33.24 Selecting previously unselected package libxss1:amd64. -#49 33.24 Preparing to unpack .../197-libxss1_1%3a1.2.3-1_amd64.deb ... -#49 33.24 Unpacking libxss1:amd64 (1:1.2.3-1) ... -#49 33.25 Selecting previously unselected package libsdl2-2.0-0:amd64. -#49 33.25 Preparing to unpack .../198-libsdl2-2.0-0_2.26.5+dfsg-1_amd64.deb ... -#49 33.25 Unpacking libsdl2-2.0-0:amd64 (2.26.5+dfsg-1) ... -#49 33.31 Selecting previously unselected package libxcb-shape0:amd64. -#49 33.31 Preparing to unpack .../199-libxcb-shape0_1.15-1_amd64.deb ... -#49 33.31 Unpacking libxcb-shape0:amd64 (1.15-1) ... -#49 33.33 Selecting previously unselected package libxv1:amd64. -#49 33.33 Preparing to unpack .../200-libxv1_2%3a1.0.11-1.1_amd64.deb ... -#49 33.34 Unpacking libxv1:amd64 (2:1.0.11-1.1) ... -#49 33.35 Selecting previously unselected package libavdevice59:amd64. -#49 33.35 Preparing to unpack .../201-libavdevice59_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 33.35 Unpacking libavdevice59:amd64 (7:5.1.6-0+deb12u1) ... -#49 33.37 Selecting previously unselected package ffmpeg. -#49 33.37 Preparing to unpack .../202-ffmpeg_7%3a5.1.6-0+deb12u1_amd64.deb ... -#49 33.37 Unpacking ffmpeg (7:5.1.6-0+deb12u1) ... -#49 33.48 Selecting previously unselected package i965-va-driver:amd64. -#49 33.48 Preparing to unpack .../203-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -#49 33.48 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -#49 33.52 Selecting previously unselected package libigdgmm12:amd64. -#49 33.52 Preparing to unpack .../204-libigdgmm12_22.3.3+ds1-1_amd64.deb ... -#49 33.52 Unpacking libigdgmm12:amd64 (22.3.3+ds1-1) ... -#49 33.54 Selecting previously unselected package intel-media-va-driver:amd64. -#49 33.54 Preparing to unpack .../205-intel-media-va-driver_23.1.1+dfsg1-1_amd64.deb ... -#49 33.55 Unpacking intel-media-va-driver:amd64 (23.1.1+dfsg1-1) ... -#49 33.77 Selecting previously unselected package libaacs0:amd64. -#49 33.77 Preparing to unpack .../206-libaacs0_0.11.1-2_amd64.deb ... -#49 33.77 Unpacking libaacs0:amd64 (0.11.1-2) ... -#49 33.79 Selecting previously unselected package libbdplus0:amd64. -#49 33.79 Preparing to unpack .../207-libbdplus0_0.2.0-3_amd64.deb ... -#49 33.79 Unpacking libbdplus0:amd64 (0.2.0-3) ... -#49 33.80 Selecting previously unselected package libdecor-0-plugin-1-cairo:amd64. -#49 33.81 Preparing to unpack .../208-libdecor-0-plugin-1-cairo_0.1.1-2_amd64.deb ... -#49 33.81 Unpacking libdecor-0-plugin-1-cairo:amd64 (0.1.1-2) ... -#49 33.82 Selecting previously unselected package libgdk-pixbuf2.0-bin. -#49 33.82 Preparing to unpack .../209-libgdk-pixbuf2.0-bin_2.42.10+dfsg-1+deb12u1_amd64.deb ... -#49 33.82 Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u1) ... -#49 33.84 Selecting previously unselected package libglib2.0-data. -#49 33.84 Preparing to unpack .../210-libglib2.0-data_2.74.6-2+deb12u5_all.deb ... -#49 33.84 Unpacking libglib2.0-data (2.74.6-2+deb12u5) ... -#49 33.95 Selecting previously unselected package libldap-common. -#49 33.95 Preparing to unpack .../211-libldap-common_2.5.13+dfsg-5_all.deb ... -#49 33.95 Unpacking libldap-common (2.5.13+dfsg-5) ... -#49 33.96 Selecting previously unselected package librsvg2-common:amd64. -#49 33.96 Preparing to unpack .../212-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ... -#49 33.97 Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ... -#49 33.98 Selecting previously unselected package libsasl2-modules:amd64. -#49 33.98 Preparing to unpack .../213-libsasl2-modules_2.1.28+dfsg-10_amd64.deb ... -#49 33.99 Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... -#49 34.00 Selecting previously unselected package libvdpau-va-gl1:amd64. -#49 34.00 Preparing to unpack .../214-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -#49 34.01 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -#49 34.02 Selecting previously unselected package mesa-va-drivers:amd64. -#49 34.02 Preparing to unpack .../215-mesa-va-drivers_22.3.6-1+deb12u1_amd64.deb ... -#49 34.02 Unpacking mesa-va-drivers:amd64 (22.3.6-1+deb12u1) ... -#49 34.27 Selecting previously unselected package mesa-vdpau-drivers:amd64. -#49 34.27 Preparing to unpack .../216-mesa-vdpau-drivers_22.3.6-1+deb12u1_amd64.deb ... -#49 34.27 Unpacking mesa-vdpau-drivers:amd64 (22.3.6-1+deb12u1) ... -#49 34.50 Selecting previously unselected package mesa-vulkan-drivers:amd64. -#49 34.50 Preparing to unpack .../217-mesa-vulkan-drivers_22.3.6-1+deb12u1_amd64.deb ... -#49 34.50 Unpacking mesa-vulkan-drivers:amd64 (22.3.6-1+deb12u1) ... -#49 34.94 Selecting previously unselected package pocketsphinx-en-us. -#49 34.94 Preparing to unpack .../218-pocketsphinx-en-us_0.8+5prealpha+1-15_all.deb ... -#49 34.94 Unpacking pocketsphinx-en-us (0.8+5prealpha+1-15) ... -#49 ... - -#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt -#50 36.32 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 1.5 MB/s eta 0:00:00 -#50 36.36 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#50 36.52 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#50 36.62 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#50 36.71 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#50 36.88 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#50 37.02 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#50 37.19 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#50 37.23 Downloading distro-1.9.0-py3-none-any.whl (20 kB) -#50 37.28 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) -#50 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 22.43 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) -#44 22.48 Collecting tzdata>=2022.7 (from pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 22.51 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) -#44 22.72 Collecting charset-normalizer<4,>=2 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 22.74 Downloading charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#44 22.79 Collecting idna<4,>=2.5 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 22.81 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#44 22.94 Collecting urllib3<3,>=1.21.1 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 22.95 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#44 23.06 Collecting certifi>=2017.4.17 (from requests->huggingface_hub->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 3)) -#44 23.09 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#44 23.17 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 23.18 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#44 23.26 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 23.28 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#44 23.63 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 23.66 Downloading greenlet-3.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#44 23.73 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) -#44 23.75 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#44 23.88 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 23.89 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) -#44 24.30 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 24.32 Downloading manifold3d-3.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) -#44 24.37 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 24.38 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) -#44 25.15 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 25.19 Downloading lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#44 25.31 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 25.33 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) -#44 25.39 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 25.40 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) -#44 25.46 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 25.48 Downloading pycollada-0.8.tar.gz (108 kB) -#44 25.52 Preparing metadata (setup.py): started -#44 26.07 Preparing metadata (setup.py): finished with status 'done' -#44 26.07 Requirement already satisfied: setuptools in /usr/local/lib/python3.10/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) (65.5.1) -#44 26.42 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 26.43 Downloading shapely-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) -#44 26.78 Collecting xxhash (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 26.79 Downloading xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) -#44 26.88 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 26.89 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) -#44 26.97 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 26.98 Downloading embreex-2.17.7.post6-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (2.9 kB) -#44 27.10 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 27.11 Downloading xatlas-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#44 27.26 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 27.27 Downloading vhacdx-0.0.8.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) -#44 27.35 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 27.36 Downloading mapbox_earcut-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) -#44 27.43 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 27.44 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) -#44 27.64 Collecting MarkupSafe>=2.0 (from jinja2->torch->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 11)) -#44 27.65 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) -#44 27.73 Collecting exceptiongroup>=1.0.2 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) -#44 27.74 Downloading exceptiongroup-1.2.2-py3-none-any.whl.metadata (6.6 kB) -#44 27.80 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 2)) -#44 27.81 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#44 28.13 Collecting httpcore==1.* (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 28.14 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#44 28.22 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 4)) -#44 28.23 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) -#44 28.29 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 28.30 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#44 28.44 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas>=1.1.0->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 28.45 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#44 28.66 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 28.67 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) -#44 28.76 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 28.77 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) -#44 29.53 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/third_parties/bridgetower/src/requirements.txt (line 1)) -#44 29.54 Downloading rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) -#44 29.74 Downloading pydantic-2.8.2-py3-none-any.whl (423 kB) -#44 29.78 Downloading pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB) -#44 29.82 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 48.0 MB/s eta 0:00:00 -#44 29.84 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#44 29.85 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#44 29.86 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) -#44 29.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 98.5 MB/s eta 0:00:00 -#44 29.88 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) -#44 29.89 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) -#44 29.91 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) -#44 29.92 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) -#44 29.93 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) -#44 29.94 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) -#44 29.95 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) -#44 29.96 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) -#44 29.98 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#44 29.99 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#44 30.00 Downloading torch-2.6.0-cp310-cp310-manylinux1_x86_64.whl (766.7 MB) -#44 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 37.42 Selecting previously unselected package publicsuffix. -#49 37.45 Preparing to unpack .../219-publicsuffix_20230209.2326-1_all.deb ... -#49 37.57 Unpacking publicsuffix (20230209.2326-1) ... -#49 38.23 Selecting previously unselected package va-driver-all:amd64. -#49 38.23 Preparing to unpack .../220-va-driver-all_2.17.0-1_amd64.deb ... -#49 38.45 Unpacking va-driver-all:amd64 (2.17.0-1) ... -#49 39.06 Selecting previously unselected package vdpau-driver-all:amd64. -#49 39.06 Preparing to unpack .../221-vdpau-driver-all_1.5-2_amd64.deb ... -#49 39.15 Unpacking vdpau-driver-all:amd64 (1.5-2) ... -#49 39.60 Selecting previously unselected package xdg-user-dirs. -#49 39.62 Preparing to unpack .../222-xdg-user-dirs_0.18-1_amd64.deb ... -#49 39.67 Unpacking xdg-user-dirs (0.18-1) ... -#49 40.37 Setting up libgme0:amd64 (0.6.3-6) ... -#49 41.38 Setting up libssh-gcrypt-4:amd64 (0.10.6-0+deb12u1) ... -#49 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 25.93 Collecting sentence-transformers==3.2.1 (from optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 25.94 Downloading sentence_transformers-3.2.1-py3-none-any.whl.metadata (10 kB) -#58 26.16 Collecting scikit-learn (from sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 26.17 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) -#58 26.33 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 26.35 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#58 26.53 Collecting psutil (from accelerate<0.34.0,>=0.33.0->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 26.54 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) -#58 26.64 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 3)) -#58 26.65 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#58 26.86 Collecting httpcore==1.* (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.125->langchain-core->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 5)) -#58 26.87 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#58 26.96 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 26.97 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#58 27.10 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 1)) -#58 27.11 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#58 27.37 Collecting MarkupSafe>=2.0 (from jinja2->torch>=1.11->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 27.38 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) -#58 27.44 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 27.45 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) -#58 27.51 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 27.53 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) -#58 27.99 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 2)) -#58 28.01 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) -#58 28.26 Collecting joblib>=1.2.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 28.27 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) -#58 28.32 Collecting threadpoolctl>=3.1.0 (from scikit-learn->sentence-transformers==3.2.1->optimum-habana->optimum[habana]->-r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt (line 9)) -#58 28.33 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) -#58 28.37 Downloading pydantic-2.7.2-py3-none-any.whl (409 kB) -#58 28.40 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#58 28.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 108.2 MB/s eta 0:00:00 -#58 28.44 Downloading datasets-3.2.0-py3-none-any.whl (480 kB) -#58 28.46 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#58 28.47 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#58 28.48 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) -#58 28.49 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) -#58 28.50 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) -#58 28.51 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) -#58 28.52 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) -#58 28.53 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) -#58 28.54 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) -#58 28.56 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) -#58 28.57 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) -#58 28.58 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#58 28.59 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) -#58 28.60 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#58 28.61 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#58 28.62 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#58 28.63 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) -#58 28.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 202.8 MB/s eta 0:00:00 -#58 28.84 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#58 28.85 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#58 28.86 Downloading dill-0.3.8-py3-none-any.whl (116 kB) -#58 28.87 Downloading fsspec-2024.9.0-py3-none-any.whl (179 kB) -#58 28.89 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) -#58 28.90 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 217.3 MB/s eta 0:00:00 -#58 28.91 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#58 28.92 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) -#58 28.94 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) -#58 28.95 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 257.9 MB/s eta 0:00:00 -#58 28.96 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) -#58 28.97 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) -#58 28.98 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#58 28.99 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 301.3 MB/s eta 0:00:00 -#58 29.00 Downloading multiprocess-0.70.16-py311-none-any.whl (143 kB) -#58 29.01 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#58 29.02 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#58 29.03 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) -#58 29.08 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 277.6 MB/s eta 0:00:00 -#58 29.09 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#58 29.11 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 244.7 MB/s eta 0:00:00 -#58 29.12 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#58 29.13 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) -#58 29.15 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) -#58 29.37 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 195.5 MB/s eta 0:00:00 -#58 29.38 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#58 29.38 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 235.4 MB/s eta 0:00:00 -#58 29.39 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#58 29.41 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#58 29.42 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#58 29.44 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) -#58 29.45 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl (766.7 MB) -#58 35.23 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 155.5 MB/s eta 0:00:00 -#58 35.24 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) -#58 ... - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 32.10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 369.6 MB/s eta 0:00:00 -#37 32.11 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) -#37 32.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 553.6 MB/s eta 0:00:00 -#37 32.50 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) -#37 32.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 569.9 MB/s eta 0:00:00 -#37 32.61 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) -#37 32.84 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 556.5 MB/s eta 0:00:00 -#37 32.85 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) -#37 33.23 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 553.7 MB/s eta 0:00:00 -#37 33.24 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) -#37 33.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 346.7 MB/s eta 0:00:00 -#37 33.68 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) -#37 34.03 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 546.1 MB/s eta 0:00:00 -#37 34.04 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) -#37 34.07 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 582.5 MB/s eta 0:00:00 -#37 34.08 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) -#37 34.09 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) -#37 34.10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 576.5 MB/s eta 0:00:00 -#37 34.11 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.2 MB) -#37 34.88 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.2/253.2 MB 329.8 MB/s eta 0:00:00 -#37 34.89 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#37 34.90 Downloading transformers-4.45.2-py3-none-any.whl (9.9 MB) -#37 34.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.9/9.9 MB 331.2 MB/s eta 0:00:00 -#37 34.95 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) -#37 34.95 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 544.2 MB/s eta 0:00:00 -#37 34.96 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) -#37 34.97 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#37 34.99 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#37 35.00 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#37 35.01 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#37 35.03 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#37 35.04 Downloading optimum-1.24.0-py3-none-any.whl (433 kB) -#37 35.05 Downloading optimum_habana-1.15.0-py3-none-any.whl (809 kB) -#37 35.06 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 809.9/809.9 kB 304.1 MB/s eta 0:00:00 -#37 35.07 Downloading sentence_transformers-3.2.1-py3-none-any.whl (255 kB) -#37 35.08 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) -#37 35.10 Downloading accelerate-0.33.0-py3-none-any.whl (315 kB) -#37 35.12 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) -#37 35.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 210.4 MB/s eta 0:00:00 -#37 35.22 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#37 35.23 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#37 35.27 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#37 35.28 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#37 35.29 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#37 35.35 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#37 35.36 Downloading diffusers-0.31.0-py3-none-any.whl (2.9 MB) -#37 35.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 538.0 MB/s eta 0:00:00 -#37 35.44 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) -#37 35.45 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#37 35.51 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#37 35.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 84.7 MB/s eta 0:00:00 -#37 35.59 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#37 35.61 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#37 35.68 Downloading idna-3.10-py3-none-any.whl (70 kB) -#37 35.74 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) -#37 36.73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 109.1 MB/s eta 0:00:00 -#37 36.74 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) -#37 36.75 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) -#37 36.80 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 507.1 MB/s eta 0:00:00 -#37 36.81 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) -#37 36.82 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#37 36.83 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) -#37 36.90 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 478.4 MB/s eta 0:00:00 -#37 36.91 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) -#37 36.93 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#37 36.94 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) -#37 36.95 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#37 36.97 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 199.9 MB/s eta 0:00:00 -#37 36.98 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#37 36.99 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) -#37 37.02 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) -#37 37.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 19.5 MB/s eta 0:00:00 -#37 37.07 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) -#37 37.08 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) -#37 37.10 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) -#37 37.41 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 130.8 MB/s eta 0:00:00 -#37 37.42 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#37 37.49 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 74.3 MB/s eta 0:00:00 -#37 37.50 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) -#37 37.52 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#37 37.53 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) -#37 37.56 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) -#37 37.59 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#37 37.60 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) -#37 37.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 172.8 MB/s eta 0:00:00 -#37 37.65 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) -#37 37.68 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) -#37 37.69 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) -#37 37.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 211.4 MB/s eta 0:00:00 -#37 37.82 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) -#37 37.83 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) -#37 37.86 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) -#37 37.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 71.5 MB/s eta 0:00:00 -#37 37.94 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) -#37 37.97 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 535.8 MB/s eta 0:00:00 -#37 37.98 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) -#37 37.99 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) -#37 38.02 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 10.3 MB/s eta 0:00:00 -#37 38.03 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) -#37 38.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 245.1 MB/s eta 0:00:00 -#37 38.06 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) -#37 38.09 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) -#37 38.10 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) -#37 38.11 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) -#37 38.14 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) -#37 38.15 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#37 38.16 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) -#37 38.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 16.5 MB/s eta 0:00:00 -#37 38.19 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) -#37 38.20 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) -#37 38.21 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#37 38.22 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#37 38.24 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287 kB) -#37 38.25 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) -#37 38.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 96.1 MB/s eta 0:00:00 -#37 38.44 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) -#37 38.46 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) -#37 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 38.00 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 143.1 MB/s eta 0:00:00 -#58 38.02 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) -#58 38.11 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 143.8 MB/s eta 0:00:00 -#58 38.12 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) -#58 38.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 61.3 MB/s eta 0:00:00 -#58 38.54 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) -#58 38.58 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 474.1 MB/s eta 0:00:00 -#58 38.59 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) -#58 ... - -#61 [opea/multimodalqna-ui:latest 4/8] RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ && cp /root/ffmpeg-git-amd64-static/ffprobe /usr/local/bin/ -#61 DONE 15.9s - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 42.44 Setting up media-types (10.0.0) ... -#49 43.43 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -#49 44.07 Setting up liblcms2-2:amd64 (2.14-2) ... -#49 44.43 Setting up libpixman-1-0:amd64 (0.42.2-1) ... -#49 45.22 Setting up libudfread0:amd64 (1.1.2-1) ... -#49 45.54 Setting up libwayland-server0:amd64 (1.21.0-1) ... -#49 45.94 Setting up libaom3:amd64 (3.6.0-1+deb12u1) ... -#49 46.19 Setting up libpciaccess0:amd64 (0.17-2) ... -#49 46.43 Setting up librabbitmq4:amd64 (0.11.0-1+b1) ... -#49 46.49 Setting up libxau6:amd64 (1:1.0.9-1) ... -#49 46.50 Setting up libraw1394-11:amd64 (2.1.2-2) ... -#49 46.50 Setting up libapparmor1:amd64 (3.0.8-3) ... -#49 46.50 Setting up libpsl5:amd64 (0.21.2-1) ... -#49 46.50 Setting up libcodec2-1.0:amd64 (1.0.5-1) ... -#49 46.51 Setting up libsodium23:amd64 (1.0.18-1) ... -#49 46.51 Setting up libicu72:amd64 (72.1-3) ... -#49 46.51 Setting up libmpg123-0:amd64 (1.31.2-1+deb12u1) ... -#49 46.52 Setting up libogg0:amd64 (1.3.5-3) ... -#49 46.52 Setting up liblerc4:amd64 (4.0.0+ds-2) ... -#49 46.52 Setting up libspeex1:amd64 (1.2.1-2) ... -#49 46.52 Setting up libshine3:amd64 (3.1.1-2) ... -#49 46.53 Setting up libx264-164:amd64 (2:0.164.3095+gitbaee400-3) ... -#49 46.53 Setting up libtwolame0:amd64 (0.4.0-2) ... -#49 46.53 Setting up libdatrie1:amd64 (0.2.13-2+b1) ... -#49 46.53 Setting up xdg-user-dirs (0.18-1) ... -#49 46.54 Setting up libgsm1:amd64 (1.0.22-1) ... -#49 46.54 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#49 46.55 No schema files found: doing nothing. -#49 46.55 Setting up libglvnd0:amd64 (1.6.0-1) ... -#49 46.56 Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... -#49 46.56 Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... -#49 46.56 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... -#49 46.56 Setting up libsasl2-modules:amd64 (2.1.28+dfsg-10) ... -#49 46.57 Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... -#49 46.57 Setting up libnorm1:amd64 (1.5.9+dfsg-2) ... -#49 46.57 Setting up libmysofa1:amd64 (1.3.1~dfsg0-1) ... -#49 46.58 Setting up x11-common (1:7.7+23) ... -#49 46.66 debconf: unable to initialize frontend: Dialog -#49 46.66 debconf: (TERM is not set, so the dialog frontend is not usable.) -#49 46.66 debconf: falling back to frontend: Readline -#49 46.66 debconf: unable to initialize frontend: Readline -#49 46.66 debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.36.0 /usr/local/share/perl/5.36.0 /usr/lib/x86_64-linux-gnu/perl5/5.36 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.36 /usr/share/perl/5.36 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) -#49 46.66 debconf: falling back to frontend: Teletype -#49 46.68 invoke-rc.d: could not determine current runlevel -#49 46.68 invoke-rc.d: policy-rc.d denied execution of restart. -#49 46.68 Setting up libsensors-config (1:3.6.0-7.1) ... -#49 46.69 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#49 46.71 Setting up libdeflate0:amd64 (1.14-1) ... -#49 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 38.11 Selecting previously unselected package g++. -#42 38.11 Preparing to unpack .../045-g++_4%3a12.2.0-3_amd64.deb ... -#42 38.32 Unpacking g++ (4:12.2.0-3) ... -#42 39.03 Selecting previously unselected package make. -#42 39.03 Preparing to unpack .../046-make_4.3-4.1_amd64.deb ... -#42 39.12 Unpacking make (4.3-4.1) ... -#42 39.91 Selecting previously unselected package libdpkg-perl. -#42 39.92 Preparing to unpack .../047-libdpkg-perl_1.21.22_all.deb ... -#42 40.01 Unpacking libdpkg-perl (1.21.22) ... -#42 40.44 Selecting previously unselected package patch. -#42 40.46 Preparing to unpack .../048-patch_2.7.6-7_amd64.deb ... -#42 40.52 Unpacking patch (2.7.6-7) ... -#42 40.98 Selecting previously unselected package dpkg-dev. -#42 40.98 Preparing to unpack .../049-dpkg-dev_1.21.22_all.deb ... -#42 41.14 Unpacking dpkg-dev (1.21.22) ... -#42 42.85 Selecting previously unselected package build-essential. -#42 42.86 Preparing to unpack .../050-build-essential_12.9_amd64.deb ... -#42 43.29 Unpacking build-essential (12.9) ... -#42 45.39 Selecting previously unselected package ca-certificates-java. -#42 45.39 Preparing to unpack .../051-ca-certificates-java_20230710~deb12u1_all.deb ... -#42 45.48 Unpacking ca-certificates-java (20230710~deb12u1) ... -#42 47.12 Selecting previously unselected package libblas3:amd64. -#42 47.13 Preparing to unpack .../052-libblas3_3.11.0-2_amd64.deb ... -#42 47.23 Unpacking libblas3:amd64 (3.11.0-2) ... -#42 47.54 Selecting previously unselected package libgfortran5:amd64. -#42 47.54 Preparing to unpack .../053-libgfortran5_12.2.0-14_amd64.deb ... -#42 47.54 Unpacking libgfortran5:amd64 (12.2.0-14) ... -#42 47.62 Selecting previously unselected package liblapack3:amd64. -#42 47.62 Preparing to unpack .../054-liblapack3_3.11.0-2_amd64.deb ... -#42 47.63 Unpacking liblapack3:amd64 (3.11.0-2) ... -#42 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 47.22 Setting up xkb-data (2.35.1-1) ... -#49 47.59 Setting up libhwy1:amd64 (1.0.3-3+deb12u1) ... -#49 ... - -#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt -#50 37.62 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) -#50 37.89 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#50 37.99 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#50 38.11 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#50 38.28 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) -#50 38.36 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345 kB) -#50 38.82 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) -#50 39.00 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) -#50 ... - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 47.44 Building wheels for collected packages: pycollada -#37 47.44 Building wheel for pycollada (setup.py): started -#37 48.05 Building wheel for pycollada (setup.py): finished with status 'done' -#37 48.07 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=132fc91ed8099d1df6f931c19fc6e7f09344f5c4f7b2aa3e4b3a92d116692805 -#37 48.07 Stored in directory: /tmp/pip-ephem-wheel-cache-t9jum4sv/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 -#37 48.08 Successfully built pycollada -#37 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 33.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 279.4 MB/s eta 0:00:00 -#44 33.82 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) -#44 35.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 257.7 MB/s eta 0:00:00 -#44 35.15 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) -#44 35.25 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 160.6 MB/s eta 0:00:00 -#44 35.27 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) -#44 35.40 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 214.2 MB/s eta 0:00:00 -#44 35.41 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) -#44 35.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 618.7 MB/s eta 0:00:00 -#44 35.45 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) -#44 38.17 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 243.7 MB/s eta 0:00:00 -#44 38.18 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) -#44 39.69 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 142.5 MB/s eta 0:00:00 -#44 39.71 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) -#44 40.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 162.5 MB/s eta 0:00:00 -#44 40.07 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) -#44 40.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 188.9 MB/s eta 0:00:00 -#44 40.76 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) -#44 41.86 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 189.0 MB/s eta 0:00:00 -#44 41.88 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) -#44 42.69 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 185.1 MB/s eta 0:00:00 -#44 42.70 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) -#44 43.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 172.2 MB/s eta 0:00:00 -#44 43.85 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) -#44 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 48.12 Setting up libigdgmm12:amd64 (22.3.3+ds1-1) ... -#49 48.43 Setting up libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... -#49 48.62 Setting up libgomp1:amd64 (12.2.0-14) ... -#49 48.79 Setting up libcdio19:amd64 (2.1.0-4) ... -#49 49.03 Setting up libcjson1:amd64 (1.7.15-1+deb12u2) ... -#49 49.55 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -#49 50.43 Setting up libldap-common (2.5.13+dfsg-5) ... -#49 51.46 Setting up libjbig0:amd64 (2.1-6.1) ... -#49 52.41 Setting up librav1e0:amd64 (0.5.1-6) ... -#49 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 43.98 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 164.1 MB/s eta 0:00:00 -#44 43.99 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) -#44 44.01 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) -#44 44.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 165.6 MB/s eta 0:00:00 -#44 44.06 Downloading triton-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.1 MB) -#44 45.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.1/253.1 MB 175.6 MB/s eta 0:00:00 -#44 45.53 Downloading torchvision-0.21.0-cp310-cp310-manylinux1_x86_64.whl (7.2 MB) -#44 45.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/7.2 MB 72.0 MB/s eta 0:00:00 -#44 45.64 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) -#44 45.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 526.6 MB/s eta 0:00:00 -#44 45.68 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#44 45.69 Downloading aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) -#44 45.70 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 567.5 MB/s eta 0:00:00 -#44 45.71 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#44 45.72 Downloading async_timeout-4.0.3-py3-none-any.whl (5.7 kB) -#44 45.77 Downloading av-14.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.7 MB) -#44 45.98 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.7/38.7 MB 184.9 MB/s eta 0:00:00 -#44 45.99 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#44 46.00 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#44 46.01 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) -#44 46.02 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#44 46.03 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) -#44 46.05 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) -#44 46.06 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 317.9 MB/s eta 0:00:00 -#44 46.07 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) -#44 46.08 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) -#44 46.13 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) -#44 46.14 Downloading lz4-4.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#44 46.15 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 230.6 MB/s eta 0:00:00 -#44 46.16 Downloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB) -#44 46.23 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.2/18.2 MB 297.3 MB/s eta 0:00:00 -#44 46.24 Downloading orjson-3.10.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#44 46.25 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#44 46.27 Downloading pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) -#44 46.30 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 481.2 MB/s eta 0:00:00 -#44 46.31 Downloading pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (4.5 MB) -#44 46.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 591.1 MB/s eta 0:00:00 -#44 46.35 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#44 46.36 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) -#44 46.41 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) -#44 46.42 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751 kB) -#44 46.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 751.2/751.2 kB 596.4 MB/s eta 0:00:00 -#44 46.43 Downloading regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (781 kB) -#44 46.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 781.7/781.7 kB 341.4 MB/s eta 0:00:00 -#44 46.45 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#44 46.49 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#44 46.50 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) -#44 46.51 Downloading SQLAlchemy-2.0.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB) -#44 46.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 479.3 MB/s eta 0:00:00 -#44 46.53 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#44 46.56 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) -#44 46.57 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#44 46.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 277.5 MB/s eta 0:00:00 -#44 46.60 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#44 46.61 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) -#44 46.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 606.3 MB/s eta 0:00:00 -#44 46.64 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) -#44 46.65 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#44 46.66 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#44 46.67 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#44 46.69 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#44 46.70 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#44 46.71 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) -#44 46.74 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) -#44 46.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 250.6 MB/s eta 0:00:00 -#44 46.76 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#44 46.77 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#44 46.78 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#44 46.79 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#44 46.86 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#44 46.87 Downloading charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146 kB) -#44 46.88 Downloading frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241 kB) -#44 46.89 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#44 46.91 Downloading greenlet-3.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (599 kB) -#44 46.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 599.5/599.5 kB 43.8 MB/s eta 0:00:00 -#44 46.94 Downloading grpcio-1.70.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#44 46.99 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 117.4 MB/s eta 0:00:00 -#44 47.00 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#44 47.04 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#44 47.05 Downloading idna-3.10-py3-none-any.whl (70 kB) -#44 47.06 Downloading jaxlib-0.5.0-cp310-cp310-manylinux2014_x86_64.whl (102.0 MB) -#44 47.62 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 183.9 MB/s eta 0:00:00 -#44 47.63 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) -#44 47.64 Downloading manifold3d-3.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) -#44 47.65 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 183.9 MB/s eta 0:00:00 -#44 47.66 Downloading mapbox_earcut-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95 kB) -#44 47.67 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#44 47.68 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) -#44 47.73 Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) -#44 47.76 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 583.9 MB/s eta 0:00:00 -#44 47.77 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) -#44 47.77 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 556.7 MB/s eta 0:00:00 -#44 47.78 Downloading multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124 kB) -#44 47.83 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#44 47.84 Downloading propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (205 kB) -#44 47.85 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#44 47.86 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 578.3 MB/s eta 0:00:00 -#44 47.87 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#44 47.88 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) -#44 47.89 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) -#44 47.91 Downloading scipy-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) -#44 48.08 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 241.1 MB/s eta 0:00:00 -#44 48.09 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) -#44 48.10 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#44 48.11 Downloading wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82 kB) -#44 48.15 Downloading yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319 kB) -#44 48.16 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#44 48.18 Downloading zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) -#44 48.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 180.2 MB/s eta 0:00:00 -#44 48.22 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) -#44 48.27 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) -#44 48.28 Downloading embreex-2.17.7.post6-cp310-cp310-manylinux_2_28_x86_64.whl (17.1 MB) -#44 48.40 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.1/17.1 MB 139.9 MB/s eta 0:00:00 -#44 48.41 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) -#44 48.43 Downloading lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (5.0 MB) -#44 48.48 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 96.7 MB/s eta 0:00:00 -#44 48.49 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) -#44 48.50 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) -#44 48.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 567.1 MB/s eta 0:00:00 -#44 48.51 Downloading shapely-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) -#44 48.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 296.7 MB/s eta 0:00:00 -#44 48.53 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) -#44 48.59 Downloading vhacdx-0.0.8.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211 kB) -#44 48.67 Downloading xatlas-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230 kB) -#44 48.68 Downloading xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) -#44 48.70 Downloading exceptiongroup-1.2.2-py3-none-any.whl (16 kB) -#44 48.71 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) -#44 48.72 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) -#44 48.73 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#44 48.80 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) -#44 48.81 Downloading rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) -#44 48.82 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#44 48.83 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#44 ... - -#62 [opea/multimodalqna-ui:latest 5/8] RUN mkdir -p /home/user -#62 DONE 7.7s - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 41.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 222.9 MB/s eta 0:00:00 -#58 41.65 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) -#58 42.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 169.9 MB/s eta 0:00:00 -#58 42.94 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) -#58 43.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 288.9 MB/s eta 0:00:00 -#58 43.15 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) -#58 43.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 262.9 MB/s eta 0:00:00 -#58 43.65 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) -#58 44.47 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 253.9 MB/s eta 0:00:00 -#58 44.48 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) -#58 45.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 289.8 MB/s eta 0:00:00 -#58 45.02 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) -#58 45.56 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 350.0 MB/s eta 0:00:00 -#58 45.57 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) -#58 45.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 359.6 MB/s eta 0:00:00 -#58 45.64 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) -#58 45.65 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) -#58 45.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 352.5 MB/s eta 0:00:00 -#58 45.68 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.2 MB) -#58 47.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.2/253.2 MB 165.1 MB/s eta 0:00:00 -#58 47.22 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#58 47.23 Downloading transformers-4.45.2-py3-none-any.whl (9.9 MB) -#58 47.26 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.9/9.9 MB 358.0 MB/s eta 0:00:00 -#58 47.28 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) -#58 47.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 529.6 MB/s eta 0:00:00 -#58 47.35 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) -#58 47.36 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#58 47.37 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#58 47.41 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#58 47.42 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#58 47.43 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#58 47.50 Downloading optimum-1.24.0-py3-none-any.whl (433 kB) -#58 47.51 Downloading optimum_habana-1.15.0-py3-none-any.whl (809 kB) -#58 47.56 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 809.9/809.9 kB 513.0 MB/s eta 0:00:00 -#58 47.57 Downloading sentence_transformers-3.2.1-py3-none-any.whl (255 kB) -#58 47.58 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) -#58 47.59 Downloading accelerate-0.33.0-py3-none-any.whl (315 kB) -#58 47.60 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) -#58 47.66 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 363.1 MB/s eta 0:00:00 -#58 47.67 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#58 47.75 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#58 47.76 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#58 47.76 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#58 47.78 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#58 47.78 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#58 47.80 Downloading diffusers-0.31.0-py3-none-any.whl (2.9 MB) -#58 47.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 38.7 MB/s eta 0:00:00 -#58 47.88 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) -#58 47.89 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#58 47.90 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#58 47.92 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 291.7 MB/s eta 0:00:00 -#58 47.93 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#58 47.95 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#58 47.96 Downloading idna-3.10-py3-none-any.whl (70 kB) -#58 47.97 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) -#58 48.60 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 162.9 MB/s eta 0:00:00 -#58 48.61 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) -#58 48.63 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) -#58 48.65 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 631.4 MB/s eta 0:00:00 -#58 48.66 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) -#58 48.67 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#58 48.69 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) -#58 48.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 586.3 MB/s eta 0:00:00 -#58 48.75 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) -#58 48.81 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#58 48.82 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) -#58 48.83 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#58 48.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 580.8 MB/s eta 0:00:00 -#58 48.88 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#58 48.89 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) -#58 48.91 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) -#58 48.91 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 320.7 MB/s eta 0:00:00 -#58 48.92 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) -#58 48.94 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) -#58 48.96 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) -#58 49.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 245.0 MB/s eta 0:00:00 -#58 49.16 Downloading tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#58 49.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 167.9 MB/s eta 0:00:00 -#58 49.19 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) -#58 49.20 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#58 49.25 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) -#58 49.26 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) -#58 49.31 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#58 49.32 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) -#58 49.38 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 96.2 MB/s eta 0:00:00 -#58 49.39 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) -#58 49.43 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) -#58 49.45 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) -#58 49.56 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 176.9 MB/s eta 0:00:00 -#58 49.57 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) -#58 49.58 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) -#58 49.59 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) -#58 49.62 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 238.8 MB/s eta 0:00:00 -#58 49.63 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) -#58 49.68 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 403.9 MB/s eta 0:00:00 -#58 49.69 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) -#58 49.71 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) -#58 49.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 330.4 MB/s eta 0:00:00 -#58 49.76 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) -#58 49.77 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 266.5 MB/s eta 0:00:00 -#58 49.78 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) -#58 49.82 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) -#58 49.83 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) -#58 49.84 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) -#58 49.85 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) -#58 49.86 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#58 49.87 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) -#58 49.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 226.2 MB/s eta 0:00:00 -#58 49.88 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) -#58 49.89 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) -#58 49.95 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#58 49.96 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#58 50.02 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287 kB) -#58 50.05 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) -#58 50.12 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 247.6 MB/s eta 0:00:00 -#58 50.13 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) -#58 50.17 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) -#58 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 48.69 Selecting previously unselected package coinor-libcoinutils3v5:amd64. -#42 48.69 Preparing to unpack .../055-coinor-libcoinutils3v5_2.11.4+repack1-2_amd64.deb ... -#42 48.86 Unpacking coinor-libcoinutils3v5:amd64 (2.11.4+repack1-2) ... -#42 49.52 Selecting previously unselected package coinor-libosi1v5:amd64. -#42 49.52 Preparing to unpack .../056-coinor-libosi1v5_0.108.6+repack1-2_amd64.deb ... -#42 49.57 Unpacking coinor-libosi1v5:amd64 (0.108.6+repack1-2) ... -#42 50.06 Selecting previously unselected package coinor-libclp1:amd64. -#42 50.06 Preparing to unpack .../057-coinor-libclp1_1.17.6-3_amd64.deb ... -#42 50.07 Unpacking coinor-libclp1:amd64 (1.17.6-3) ... -#42 52.07 Selecting previously unselected package coinor-libcgl1:amd64. -#42 52.07 Preparing to unpack .../058-coinor-libcgl1_0.60.3+repack1-4_amd64.deb ... -#42 52.41 Unpacking coinor-libcgl1:amd64 (0.60.3+repack1-4) ... -#42 54.48 Selecting previously unselected package coinor-libcbc3:amd64. -#42 54.48 Preparing to unpack .../059-coinor-libcbc3_2.10.8+ds1-1_amd64.deb ... -#42 54.94 Unpacking coinor-libcbc3:amd64 (2.10.8+ds1-1) ... -#42 55.23 Selecting previously unselected package coinor-libcoinmp1v5:amd64. -#42 55.24 Preparing to unpack .../060-coinor-libcoinmp1v5_1.8.3-3_amd64.deb ... -#42 55.48 Unpacking coinor-libcoinmp1v5:amd64 (1.8.3-3) ... -#42 56.78 Selecting previously unselected package java-common. -#42 56.78 Preparing to unpack .../061-java-common_0.74_all.deb ... -#42 57.00 Unpacking java-common (0.74) ... -#42 58.45 Selecting previously unselected package libasound2-data. -#42 58.45 Preparing to unpack .../062-libasound2-data_1.2.8-1_all.deb ... -#42 58.66 Unpacking libasound2-data (1.2.8-1) ... -#42 ... - -#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt -#50 51.28 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 1.3 MB/s eta 0:00:00 -#50 51.31 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#50 51.44 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#50 51.51 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#50 51.58 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) -#50 51.81 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) -#50 52.24 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#50 53.72 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 1.3 MB/s eta 0:00:00 -#50 53.76 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) -#50 54.20 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 1.9 MB/s eta 0:00:00 -#50 54.24 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#50 54.32 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#50 54.54 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) -#50 54.87 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#50 54.92 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#50 55.06 Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) -#50 55.13 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#50 57.07 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 1.6 MB/s eta 0:00:00 -#50 57.11 Downloading torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl (766.7 MB) -#50 ... - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 48.61 Installing collected packages: triton, pytz, pydub, nvidia-cusparselt-cu12, mpmath, zstandard, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, threadpoolctl, tenacity, sympy, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, pygments, pyarrow, psutil, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, multidict, mdurl, MarkupSafe, lz4, lxml, jsonpointer, joblib, idna, h11, grpcio, fsspec, frozenlist, filelock, dill, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, multiprocess, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, jsonpatch, jinja2, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, starlette, scikit-learn, rich, requests-toolbelt, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, jsonschema-specifications, jaxlib, huggingface_hub, httpx, aiohttp, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, jsonschema, jax, fastapi, docarray, diffusers, transformers, opentelemetry-sdk, langchain-core, datasets, accelerate, sentence-transformers, optimum, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, optimum-habana, opentelemetry-exporter-otlp -#37 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 59.95 Selecting previously unselected package libasound2:amd64. -#42 59.95 Preparing to unpack .../063-libasound2_1.2.8-1+b1_amd64.deb ... -#42 60.19 Unpacking libasound2:amd64 (1.2.8-1+b1) ... -#42 61.18 Selecting previously unselected package libpcsclite1:amd64. -#42 ... - -#63 [opea/multimodalqna-ui:latest 6/8] COPY gradio /home/user/gradio -#63 DONE 6.0s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 61.19 Preparing to unpack .../064-libpcsclite1_1.9.9-2_amd64.deb ... -#42 61.25 Unpacking libpcsclite1:amd64 (1.9.9-2) ... -#42 61.28 Selecting previously unselected package openjdk-17-jre-headless:amd64. -#42 61.28 Preparing to unpack .../065-openjdk-17-jre-headless_17.0.14+7-1~deb12u1_amd64.deb ... -#42 61.28 Unpacking openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... -#42 62.35 Selecting previously unselected package default-jre-headless. -#42 62.35 Preparing to unpack .../066-default-jre-headless_2%3a1.17-74_amd64.deb ... -#42 62.35 Unpacking default-jre-headless (2:1.17-74) ... -#42 62.37 Selecting previously unselected package libgtk2.0-common. -#42 62.37 Preparing to unpack .../067-libgtk2.0-common_2.24.33-2+deb12u1_all.deb ... -#42 62.37 Unpacking libgtk2.0-common (2.24.33-2+deb12u1) ... -#42 62.59 Selecting previously unselected package libatk1.0-0:amd64. -#42 62.59 Preparing to unpack .../068-libatk1.0-0_2.46.0-5_amd64.deb ... -#42 62.59 Unpacking libatk1.0-0:amd64 (2.46.0-5) ... -#42 62.61 Selecting previously unselected package libfribidi0:amd64. -#42 62.61 Preparing to unpack .../069-libfribidi0_1.0.8-2.1_amd64.deb ... -#42 62.61 Unpacking libfribidi0:amd64 (1.0.8-2.1) ... -#42 62.63 Selecting previously unselected package libthai-data. -#42 62.63 Preparing to unpack .../070-libthai-data_0.1.29-1_all.deb ... -#42 62.63 Unpacking libthai-data (0.1.29-1) ... -#42 62.66 Selecting previously unselected package libdatrie1:amd64. -#42 62.66 Preparing to unpack .../071-libdatrie1_0.2.13-2+b1_amd64.deb ... -#42 62.67 Unpacking libdatrie1:amd64 (0.2.13-2+b1) ... -#42 62.68 Selecting previously unselected package libthai0:amd64. -#42 62.68 Preparing to unpack .../072-libthai0_0.1.29-1_amd64.deb ... -#42 62.68 Unpacking libthai0:amd64 (0.1.29-1) ... -#42 62.70 Selecting previously unselected package libpango-1.0-0:amd64. -#42 62.70 Preparing to unpack .../073-libpango-1.0-0_1.50.12+ds-1_amd64.deb ... -#42 62.71 Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ... -#42 62.74 Selecting previously unselected package libpangoft2-1.0-0:amd64. -#42 62.74 Preparing to unpack .../074-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ... -#42 62.74 Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... -#42 62.76 Selecting previously unselected package libpangocairo-1.0-0:amd64. -#42 62.76 Preparing to unpack .../075-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ... -#42 62.76 Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... -#42 62.78 Selecting previously unselected package libxcomposite1:amd64. -#42 62.78 Preparing to unpack .../076-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -#42 62.78 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -#42 62.79 Selecting previously unselected package libxfixes3:amd64. -#42 62.80 Preparing to unpack .../077-libxfixes3_1%3a6.0.0-2_amd64.deb ... -#42 62.80 Unpacking libxfixes3:amd64 (1:6.0.0-2) ... -#42 62.81 Selecting previously unselected package libxcursor1:amd64. -#42 62.81 Preparing to unpack .../078-libxcursor1_1%3a1.2.1-1_amd64.deb ... -#42 62.82 Unpacking libxcursor1:amd64 (1:1.2.1-1) ... -#42 62.83 Selecting previously unselected package libxdamage1:amd64. -#42 62.83 Preparing to unpack .../079-libxdamage1_1%3a1.1.6-1_amd64.deb ... -#42 62.83 Unpacking libxdamage1:amd64 (1:1.1.6-1) ... -#42 62.85 Selecting previously unselected package libxi6:amd64. -#42 62.85 Preparing to unpack .../080-libxi6_2%3a1.8-1+b1_amd64.deb ... -#42 62.85 Unpacking libxi6:amd64 (2:1.8-1+b1) ... -#42 62.87 Selecting previously unselected package libgtk2.0-0:amd64. -#42 62.88 Preparing to unpack .../081-libgtk2.0-0_2.24.33-2+deb12u1_amd64.deb ... -#42 62.88 Unpacking libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... -#42 63.02 Selecting previously unselected package libglvnd0:amd64. -#42 63.02 Preparing to unpack .../082-libglvnd0_1.6.0-1_amd64.deb ... -#42 63.02 Unpacking libglvnd0:amd64 (1.6.0-1) ... -#42 63.04 Selecting previously unselected package libdrm-common. -#42 63.04 Preparing to unpack .../083-libdrm-common_2.4.114-1_all.deb ... -#42 63.04 Unpacking libdrm-common (2.4.114-1) ... -#42 63.07 Selecting previously unselected package libdrm2:amd64. -#42 63.07 Preparing to unpack .../084-libdrm2_2.4.114-1+b1_amd64.deb ... -#42 63.07 Unpacking libdrm2:amd64 (2.4.114-1+b1) ... -#42 63.09 Selecting previously unselected package libglapi-mesa:amd64. -#42 63.09 Preparing to unpack .../085-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ... -#42 63.09 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#42 63.11 Selecting previously unselected package libxcb-dri2-0:amd64. -#42 63.11 Preparing to unpack .../086-libxcb-dri2-0_1.15-1_amd64.deb ... -#42 63.11 Unpacking libxcb-dri2-0:amd64 (1.15-1) ... -#42 63.14 Selecting previously unselected package libxcb-dri3-0:amd64. -#42 63.14 Preparing to unpack .../087-libxcb-dri3-0_1.15-1_amd64.deb ... -#42 63.14 Unpacking libxcb-dri3-0:amd64 (1.15-1) ... -#42 63.16 Selecting previously unselected package libxcb-glx0:amd64. -#42 63.16 Preparing to unpack .../088-libxcb-glx0_1.15-1_amd64.deb ... -#42 63.16 Unpacking libxcb-glx0:amd64 (1.15-1) ... -#42 63.19 Selecting previously unselected package libxcb-present0:amd64. -#42 63.19 Preparing to unpack .../089-libxcb-present0_1.15-1_amd64.deb ... -#42 63.19 Unpacking libxcb-present0:amd64 (1.15-1) ... -#42 63.21 Selecting previously unselected package libxcb-randr0:amd64. -#42 63.22 Preparing to unpack .../090-libxcb-randr0_1.15-1_amd64.deb ... -#42 63.22 Unpacking libxcb-randr0:amd64 (1.15-1) ... -#42 63.24 Selecting previously unselected package libxcb-sync1:amd64. -#42 63.24 Preparing to unpack .../091-libxcb-sync1_1.15-1_amd64.deb ... -#42 63.24 Unpacking libxcb-sync1:amd64 (1.15-1) ... -#42 63.26 Selecting previously unselected package libxcb-xfixes0:amd64. -#42 63.27 Preparing to unpack .../092-libxcb-xfixes0_1.15-1_amd64.deb ... -#42 63.27 Unpacking libxcb-xfixes0:amd64 (1.15-1) ... -#42 63.29 Selecting previously unselected package libxshmfence1:amd64. -#42 63.29 Preparing to unpack .../093-libxshmfence1_1.3-1_amd64.deb ... -#42 63.29 Unpacking libxshmfence1:amd64 (1.3-1) ... -#42 63.31 Selecting previously unselected package libxxf86vm1:amd64. -#42 63.31 Preparing to unpack .../094-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -#42 63.31 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#42 63.33 Selecting previously unselected package libdrm-amdgpu1:amd64. -#42 63.33 Preparing to unpack .../095-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ... -#42 63.33 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#42 63.35 Selecting previously unselected package libpciaccess0:amd64. -#42 63.35 Preparing to unpack .../096-libpciaccess0_0.17-2_amd64.deb ... -#42 63.35 Unpacking libpciaccess0:amd64 (0.17-2) ... -#42 63.37 Selecting previously unselected package libdrm-intel1:amd64. -#42 63.37 Preparing to unpack .../097-libdrm-intel1_2.4.114-1+b1_amd64.deb ... -#42 63.37 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ... -#42 63.39 Selecting previously unselected package libdrm-nouveau2:amd64. -#42 63.39 Preparing to unpack .../098-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ... -#42 63.39 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#42 63.41 Selecting previously unselected package libdrm-radeon1:amd64. -#42 63.41 Preparing to unpack .../099-libdrm-radeon1_2.4.114-1+b1_amd64.deb ... -#42 63.41 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#42 63.43 Selecting previously unselected package libedit2:amd64. -#42 63.43 Preparing to unpack .../100-libedit2_3.1-20221030-2_amd64.deb ... -#42 63.43 Unpacking libedit2:amd64 (3.1-20221030-2) ... -#42 63.45 Selecting previously unselected package libz3-4:amd64. -#42 63.46 Preparing to unpack .../101-libz3-4_4.8.12-3.1_amd64.deb ... -#42 63.46 Unpacking libz3-4:amd64 (4.8.12-3.1) ... -#42 63.96 Selecting previously unselected package libllvm15:amd64. -#42 63.96 Preparing to unpack .../102-libllvm15_1%3a15.0.6-4+b1_amd64.deb ... -#42 63.96 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ... -#42 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 53.38 Setting up libsnappy1v5:amd64 (1.1.9-3) ... -#49 54.17 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#49 54.19 Setting up libasound2-data (1.2.8-1) ... -#49 54.19 Setting up libz3-4:amd64 (4.8.12-3.1) ... -#49 54.19 Setting up libblas3:amd64 (3.11.0-2) ... -#49 54.23 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode -#49 54.64 Setting up libglib2.0-data (2.74.6-2+deb12u5) ... -#49 55.16 Setting up libflac12:amd64 (1.4.2+ds-2) ... -#49 55.81 Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ... -#49 56.60 Setting up libslang2:amd64 (2.3.3-3) ... -#49 57.49 Setting up libva2:amd64 (2.17.0-1) ... -#49 58.10 Setting up libmbedcrypto7:amd64 (2.28.3-1) ... -#49 58.56 Setting up libx11-data (2:1.8.4-2+deb12u2) ... -#49 59.26 Setting up libepoxy0:amd64 (1.5.10-1) ... -#49 59.55 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#49 60.02 Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... -#49 60.22 Setting up libfribidi0:amd64 (1.0.8-2.1) ... -#49 60.23 Setting up libopus0:amd64 (1.3.1-3) ... -#49 60.23 Setting up libquadmath0:amd64 (12.2.0-14) ... -#49 60.23 Setting up intel-media-va-driver:amd64 (23.1.1+dfsg1-1) ... -#49 60.24 Setting up libpng16-16:amd64 (1.6.39-2) ... -#49 60.24 Setting up libvorbis0a:amd64 (1.3.7-1) ... -#49 60.24 Setting up fonts-dejavu-core (2.37-6) ... -#49 60.27 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... -#49 60.27 Setting up libaacs0:amd64 (0.11.1-2) ... -#49 60.27 Setting up libjxl0.7:amd64 (0.7.0-10) ... -#49 60.27 Setting up pocketsphinx-en-us (0.8+5prealpha+1-15) ... -#49 60.28 Setting up libdav1d6:amd64 (1.0.0-2+deb12u1) ... -#49 60.28 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#49 60.28 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#49 60.28 Setting up libgfortran5:amd64 (12.2.0-14) ... -#49 60.28 Setting up libvulkan1:amd64 (1.3.239.0-1) ... -#49 60.29 Setting up libwebp7:amd64 (1.2.4-0.2+deb12u1) ... -#49 60.29 Setting up librubberband2:amd64 (3.1.2+dfsg0-1) ... -#49 60.29 Setting up libbdplus0:amd64 (0.2.0-3) ... -#49 60.29 Setting up libnuma1:amd64 (2.0.16-1) ... -#49 60.29 Setting up libvidstab1.1:amd64 (1.1.0-2+b1) ... -#49 60.30 Setting up libsrt1.5-gnutls:amd64 (1.5.1-1+deb12u1) ... -#49 60.30 Setting up alsa-topology-conf (1.2.5.1-2) ... -#49 60.30 Setting up ocl-icd-libopencl1:amd64 (2.3.1-1) ... -#49 60.30 Setting up libasyncns0:amd64 (0.8-6+b3) ... -#49 60.32 Setting up libxshmfence1:amd64 (1.3-1) ... -#49 60.32 Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... -#49 60.32 Setting up libbs2b0:amd64 (3.1.0+dfsg-7) ... -#49 60.32 Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ... -#49 60.32 Setting up libasound2:amd64 (1.2.8-1+b1) ... -#49 60.32 Setting up libzimg2:amd64 (3.0.4+ds1-1) ... -#49 60.32 Setting up libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... -#49 60.32 Setting up libopenal-data (1:1.19.1-2) ... -#49 60.32 Setting up libthai-data (0.1.29-1) ... -#49 60.32 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... -#49 60.33 Setting up libvpx7:amd64 (1.12.0-1+deb12u3) ... -#49 60.33 Setting up libwayland-egl1:amd64 (1.21.0-1) ... -#49 60.33 Setting up libusb-1.0-0:amd64 (2:1.0.26-1) ... -#49 60.33 Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ... -#49 60.38 Setting up libmfx1:amd64 (22.5.4-1) ... -#49 60.39 Setting up libsamplerate0:amd64 (0.2.2-3) ... -#49 60.39 Setting up libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... -#49 60.39 Setting up libbsd0:amd64 (0.11.7-2) ... -#49 60.39 Setting up libdrm-common (2.4.114-1) ... -#49 60.39 Setting up libelf1:amd64 (0.188-2.1) ... -#49 60.40 Setting up publicsuffix (20230209.2326-1) ... -#49 60.40 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#49 60.40 Setting up dbus-bin (1.14.10-1~deb12u1) ... -#49 60.40 Setting up libzvbi-common (0.2.41-1) ... -#49 60.40 Setting up libmp3lame0:amd64 (3.100-6) ... -#49 60.41 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -#49 60.41 Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ... -#49 60.41 Setting up libiec61883-0:amd64 (1.2.0-6+b1) ... -#49 60.41 Setting up libserd-0-0:amd64 (0.30.16-1) ... -#49 60.41 Setting up libxkbcommon0:amd64 (1.5.0-1) ... -#49 60.42 Setting up libwayland-client0:amd64 (1.21.0-1) ... -#49 60.42 Setting up libavc1394-0:amd64 (0.5.4-5) ... -#49 60.42 Setting up libzvbi0:amd64 (0.2.41-1) ... -#49 60.42 Setting up python3.11 (3.11.2-6+deb12u5) ... -#49 61.10 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... -#49 61.10 Setting up liblapack3:amd64 (3.11.0-2) ... -#49 61.10 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode -#49 61.10 Setting up libxcb1:amd64 (1.15-1) ... -#49 61.11 Setting up libxcb-xfixes0:amd64 (1.15-1) ... -#49 61.11 Setting up libplacebo208:amd64 (4.208.0-3) ... -#49 61.11 Setting up libzmq5:amd64 (4.3.4-6) ... -#49 61.11 Setting up libcaca0:amd64 (0.99.beta20-3) ... -#49 61.11 Setting up alsa-ucm-conf (1.2.8-1) ... -#49 61.12 Setting up libxcb-render0:amd64 (1.15-1) ... -#49 61.12 Setting up libsoxr0:amd64 (0.1.3-4) ... -#49 61.12 Setting up libcdio-cdda2:amd64 (10.2+2.0.1-1) ... -#49 61.12 Setting up fontconfig-config (2.14.1-4) ... -#49 61.19 debconf: unable to initialize frontend: Dialog -#49 61.19 debconf: (TERM is not set, so the dialog frontend is not usable.) -#49 61.19 debconf: falling back to frontend: Readline -#49 61.19 debconf: unable to initialize frontend: Readline -#49 61.19 debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.36.0 /usr/local/share/perl/5.36.0 /usr/lib/x86_64-linux-gnu/perl5/5.36 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.36 /usr/share/perl/5.36 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) -#49 61.19 debconf: falling back to frontend: Teletype -#49 61.31 Setting up libcdio-paranoia2:amd64 (10.2+2.0.1-1) ... -#49 61.31 Setting up libxcb-glx0:amd64 (1.15-1) ... -#49 61.32 Setting up libedit2:amd64 (3.1-20221030-2) ... -#49 61.32 Setting up libxcb-shape0:amd64 (1.15-1) ... -#49 61.32 Setting up python3 (3.11.2-1+b1) ... -#49 61.33 running python rtupdate hooks for python3.11... -#49 61.33 running python post-rtupdate hooks for python3.11... -#49 61.41 Setting up libxcb-shm0:amd64 (1.15-1) ... -#49 61.42 Setting up dbus-daemon (1.14.10-1~deb12u1) ... -#49 61.42 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#49 61.42 Setting up librist4:amd64 (0.2.7+dfsg-1) ... -#49 61.43 Setting up libxcb-present0:amd64 (1.15-1) ... -#49 61.43 Setting up libthai0:amd64 (0.1.29-1) ... -#49 61.43 Setting up libvorbisfile3:amd64 (1.3.7-1) ... -#49 61.43 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#49 61.43 Setting up libxcb-sync1:amd64 (1.15-1) ... -#49 61.44 Setting up dbus (1.14.10-1~deb12u1) ... -#49 61.45 invoke-rc.d: could not determine current runlevel -#49 61.45 invoke-rc.d: policy-rc.d denied execution of start. -#49 61.46 Setting up shared-mime-info (2.2-1) ... -#49 62.01 Setting up libdc1394-25:amd64 (2.2.6-4) ... -#49 62.02 Setting up libx265-199:amd64 (3.5-2+b1) ... -#49 62.03 Setting up libsndio7.0:amd64 (1.9.0-0.3+b2) ... -#49 62.03 Setting up libxcb-dri2-0:amd64 (1.15-1) ... -#49 62.03 Setting up libjack-jackd2-0:amd64 (1.9.21~dfsg-3) ... -#49 62.03 Setting up libdrm2:amd64 (2.4.114-1+b1) ... -#49 62.03 Setting up libflite1:amd64 (2.2-5) ... -#49 62.04 Setting up libva-drm2:amd64 (2.17.0-1) ... -#49 62.04 Setting up libsord-0-0:amd64 (0.16.14+git221008-1) ... -#49 62.04 Setting up libwayland-cursor0:amd64 (1.21.0-1) ... -#49 62.04 Setting up libxcb-randr0:amd64 (1.15-1) ... -#49 62.05 Setting up libsratom-0-0:amd64 (0.6.14-1) ... -#49 62.05 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... -#49 62.05 Setting up libdecor-0-0:amd64 (0.1.1-2) ... -#49 62.05 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... -#49 62.05 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#49 62.06 Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... -#49 62.06 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... -#49 62.08 Setting up curl (7.88.1-10+deb12u8) ... -#49 62.08 Setting up libfontconfig1:amd64 (2.14.1-4) ... -#49 62.08 Setting up libsndfile1:amd64 (1.2.0-1) ... -#49 62.08 Setting up libbluray2:amd64 (1:1.3.4-1) ... -#49 62.08 Setting up liblilv-0-0:amd64 (0.24.14-1) ... -#49 62.09 Setting up libopenmpt0:amd64 (0.6.9-1) ... -#49 62.09 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#49 62.09 Setting up libxcb-dri3-0:amd64 (1.15-1) ... -#49 62.09 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#49 62.10 Setting up fontconfig (2.14.1-4) ... -#49 62.10 Regenerating fonts cache... -#49 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 64.87 Selecting previously unselected package libsensors-config. -#42 64.87 Preparing to unpack .../103-libsensors-config_1%3a3.6.0-7.1_all.deb ... -#42 64.88 Unpacking libsensors-config (1:3.6.0-7.1) ... -#42 64.92 Selecting previously unselected package libsensors5:amd64. -#42 64.93 Preparing to unpack .../104-libsensors5_1%3a3.6.0-7.1_amd64.deb ... -#42 64.96 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ... -#42 65.65 Selecting previously unselected package libgl1-mesa-dri:amd64. -#42 65.65 Preparing to unpack .../105-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ... -#42 65.78 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#42 ... - -#59 [opea/multimodalqna:latest comps-base 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/GenAIComps/requirements.txt -#59 50.74 Successfully installed Pillow-11.1.0 SQLAlchemy-2.0.37 aiofiles-24.1.0 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 cachetools-5.5.1 certifi-2025.1.31 charset-normalizer-3.4.1 click-8.1.8 dataclasses-json-0.6.7 deprecated-1.2.18 docarray-0.40.0 docx2txt-0.8 durationpy-0.9 fastapi-0.115.8 frozenlist-1.5.0 google-auth-2.38.0 googleapis-common-protos-1.66.0 greenlet-3.1.1 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 httpx-sse-0.4.0 idna-3.10 importlib-metadata-8.5.0 jsonpatch-1.33 jsonpointer-3.0.0 kubernetes-32.0.0 langchain-0.3.17 langchain-community-0.3.16 langchain-core-0.3.33 langchain-text-splitters-0.3.5 langsmith-0.3.4 markdown-it-py-3.0.0 marshmallow-3.26.1 mdurl-0.1.2 multidict-6.1.0 mypy-extensions-1.0.0 numpy-1.26.4 oauthlib-3.2.2 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 orjson-3.10.15 packaging-24.2 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pyasn1-0.6.1 pyasn1-modules-0.4.1 pydantic-2.10.6 pydantic-core-2.27.2 pydantic-settings-2.7.1 pygments-2.19.1 pypdf-5.2.0 python-dateutil-2.9.0.post0 python-dotenv-1.0.1 python-multipart-0.0.20 pyyaml-6.0.2 requests-2.32.3 requests-oauthlib-2.0.0 requests-toolbelt-1.0.0 rich-13.9.4 rsa-4.9 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 tenacity-9.0.0 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 urllib3-2.3.0 uvicorn-0.34.0 websocket-client-1.8.0 wrapt-1.17.2 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 -#59 50.74 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#59 DONE 52.7s - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 59.10 Building wheels for collected packages: pycollada -#58 59.10 Building wheel for pycollada (setup.py): started -#58 ... - -#64 [opea/multimodalqna:latest comps-base 5/5] WORKDIR /home/user -#64 DONE 0.4s - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 59.47 Building wheel for pycollada (setup.py): finished with status 'done' -#58 59.48 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=6bf8628e1ff788431052c26d72f5168711df49398f8a0c652dc9fadff33bd30e -#58 59.48 Stored in directory: /tmp/pip-ephem-wheel-cache-l77xglvn/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 -#58 59.48 Successfully built pycollada -#58 ... - -#65 [opea/multimodalqna:latest stage-3 1/1] COPY ./multimodalqna.py /home/user/multimodalqna.py -#65 DONE 0.1s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 66.37 Selecting previously unselected package libglx-mesa0:amd64. -#42 66.37 Preparing to unpack .../106-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ... -#42 66.37 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#42 66.40 Selecting previously unselected package libglx0:amd64. -#42 66.40 Preparing to unpack .../107-libglx0_1.6.0-1_amd64.deb ... -#42 66.40 Unpacking libglx0:amd64 (1.6.0-1) ... -#42 66.43 Selecting previously unselected package libgl1:amd64. -#42 66.43 Preparing to unpack .../108-libgl1_1.6.0-1_amd64.deb ... -#42 66.43 Unpacking libgl1:amd64 (1.6.0-1) ... -#42 66.46 Selecting previously unselected package libgif7:amd64. -#42 66.46 Preparing to unpack .../109-libgif7_5.2.1-2.5_amd64.deb ... -#42 66.46 Unpacking libgif7:amd64 (5.2.1-2.5) ... -#42 66.48 Selecting previously unselected package libxtst6:amd64. -#42 66.48 Preparing to unpack .../110-libxtst6_2%3a1.2.3-1.1_amd64.deb ... -#42 66.49 Unpacking libxtst6:amd64 (2:1.2.3-1.1) ... -#42 66.50 Selecting previously unselected package openjdk-17-jre:amd64. -#42 66.51 Preparing to unpack .../111-openjdk-17-jre_17.0.14+7-1~deb12u1_amd64.deb ... -#42 66.51 Unpacking openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... -#42 66.54 Selecting previously unselected package default-jre. -#42 66.54 Preparing to unpack .../112-default-jre_2%3a1.17-74_amd64.deb ... -#42 66.55 Unpacking default-jre (2:1.17-74) ... -#42 66.56 Selecting previously unselected package libabw-0.1-1:amd64. -#42 66.57 Preparing to unpack .../113-libabw-0.1-1_0.1.3-1_amd64.deb ... -#42 66.57 Unpacking libabw-0.1-1:amd64 (0.1.3-1) ... -#42 66.59 Selecting previously unselected package libarchive13:amd64. -#42 66.60 Preparing to unpack .../114-libarchive13_3.6.2-1+deb12u2_amd64.deb ... -#42 66.65 Unpacking libarchive13:amd64 (3.6.2-1+deb12u2) ... -#42 66.81 Selecting previously unselected package libbox2d2:amd64. -#42 ... - -#49 [opea/whisper:latest 3/6] RUN apt-get update && apt-get install -y ffmpeg curl -#49 62.10 Regenerating fonts cache... done. -#49 64.25 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#49 64.67 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... -#49 64.82 Setting up libgbm1:amd64 (22.3.6-1+deb12u1) ... -#49 64.83 Setting up libpulse0:amd64 (16.1+dfsg1-2+b1) ... -#49 64.88 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#49 65.12 Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ... -#49 65.19 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... -#49 65.19 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#49 65.25 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... -#49 65.31 Setting up libopenal1:amd64 (1:1.19.1-2) ... -#49 65.32 Setting up libcairo2:amd64 (1.16.0-7) ... -#49 65.32 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#49 65.33 Setting up libass9:amd64 (1:0.17.1-1) ... -#49 65.33 Setting up libxfixes3:amd64 (1:6.0.0-2) ... -#49 65.33 Setting up libxv1:amd64 (2:1.0.11-1.1) ... -#49 65.33 Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ... -#49 65.34 Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u1) ... -#49 65.34 Setting up libvdpau1:amd64 (1.5-2) ... -#49 65.34 Setting up libtheora0:amd64 (1.1.1+dfsg.1-16.1+b1) ... -#49 65.35 Setting up libcairo-gobject2:amd64 (1.16.0-7) ... -#49 65.35 Setting up libxss1:amd64 (1:1.2.3-1) ... -#49 65.35 Setting up mesa-va-drivers:amd64 (22.3.6-1+deb12u1) ... -#49 65.35 Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... -#49 65.36 Setting up libva-x11-2:amd64 (2.17.0-1) ... -#49 65.36 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -#49 65.36 Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... -#49 65.36 Setting up mesa-vulkan-drivers:amd64 (22.3.6-1+deb12u1) ... -#49 65.37 Setting up mesa-vdpau-drivers:amd64 (22.3.6-1+deb12u1) ... -#49 65.37 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#49 65.37 Setting up libxi6:amd64 (2:1.8-1+b1) ... -#49 65.37 Setting up libglx0:amd64 (1.6.0-1) ... -#49 65.38 Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-16) ... -#49 65.38 Setting up libxcursor1:amd64 (1:1.2.1-1) ... -#49 65.38 Setting up librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ... -#49 65.38 Setting up libpocketsphinx3:amd64 (0.8+5prealpha+1-15) ... -#49 65.38 Setting up libavutil57:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.39 Setting up libgl1:amd64 (1.6.0-1) ... -#49 65.39 Setting up libswresample4:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.39 Setting up va-driver-all:amd64 (2.17.0-1) ... -#49 65.39 Setting up libdecor-0-plugin-1-cairo:amd64 (0.1.1-2) ... -#49 65.39 Setting up librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ... -#49 65.40 Setting up libpostproc56:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.40 Setting up libavcodec59:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.41 Setting up libsdl2-2.0-0:amd64 (2.26.5+dfsg-1) ... -#49 65.41 Setting up libswscale6:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.41 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -#49 65.41 Setting up libchromaprint1:amd64 (1.5.1-2+b1) ... -#49 65.42 Setting up libavformat59:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.42 Setting up libavfilter8:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.42 Setting up libavdevice59:amd64 (7:5.1.6-0+deb12u1) ... -#49 65.42 Setting up vdpau-driver-all:amd64 (1.5-2) ... -#49 65.43 Setting up ffmpeg (7:5.1.6-0+deb12u1) ... -#49 65.43 Processing triggers for libc-bin (2.36-9+deb12u9) ... -#49 65.45 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... -#49 DONE 65.8s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 66.81 Preparing to unpack .../115-libbox2d2_2.4.1-3_amd64.deb ... -#42 66.81 Unpacking libbox2d2:amd64 (2.4.1-3) ... -#42 66.84 Selecting previously unselected package libcdr-0.1-1:amd64. -#42 66.84 Preparing to unpack .../116-libcdr-0.1-1_0.1.6-2+b2_amd64.deb ... -#42 66.84 Unpacking libcdr-0.1-1:amd64 (0.1.6-2+b2) ... -#42 66.89 Selecting previously unselected package libsuitesparseconfig5:amd64. -#42 66.89 Preparing to unpack .../117-libsuitesparseconfig5_1%3a5.12.0+dfsg-2_amd64.deb ... -#42 66.90 Unpacking libsuitesparseconfig5:amd64 (1:5.12.0+dfsg-2) ... -#42 66.91 Selecting previously unselected package libcolamd2:amd64. -#42 66.92 Preparing to unpack .../118-libcolamd2_1%3a5.12.0+dfsg-2_amd64.deb ... -#42 66.92 Unpacking libcolamd2:amd64 (1:5.12.0+dfsg-2) ... -#42 ... - -#66 [opea/whisper:latest 4/6] COPY --chown=user:user comps /home/user/comps -#66 DONE 0.4s - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 67.22 Selecting previously unselected package libcurl4:amd64. -#42 67.23 Preparing to unpack .../119-libcurl4_7.88.1-10+deb12u8_amd64.deb ... -#42 67.26 Unpacking libcurl4:amd64 (7.88.1-10+deb12u8) ... -#42 67.30 Selecting previously unselected package libe-book-0.1-1:amd64. -#42 67.30 Preparing to unpack .../120-libe-book-0.1-1_0.1.3-2+b2_amd64.deb ... -#42 67.30 Unpacking libe-book-0.1-1:amd64 (0.1.3-2+b2) ... -#42 67.34 Selecting previously unselected package libepubgen-0.1-1:amd64. -#42 67.34 Preparing to unpack .../121-libepubgen-0.1-1_0.1.1-1_amd64.deb ... -#42 67.34 Unpacking libepubgen-0.1-1:amd64 (0.1.1-1) ... -#42 67.37 Selecting previously unselected package libetonyek-0.1-1:amd64. -#42 67.37 Preparing to unpack .../122-libetonyek-0.1-1_0.1.10-3+b1_amd64.deb ... -#42 67.37 Unpacking libetonyek-0.1-1:amd64 (0.1.10-3+b1) ... -#42 67.44 Selecting previously unselected package libfreehand-0.1-1. -#42 67.45 Preparing to unpack .../123-libfreehand-0.1-1_0.1.2-3_amd64.deb ... -#42 67.45 Unpacking libfreehand-0.1-1 (0.1.2-3) ... -#42 67.48 Selecting previously unselected package libgl1-mesa-glx:amd64. -#42 67.48 Preparing to unpack .../124-libgl1-mesa-glx_22.3.6-1+deb12u1_amd64.deb ... -#42 67.49 Unpacking libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... -#42 67.50 Selecting previously unselected package libjemalloc2:amd64. -#42 67.50 Preparing to unpack .../125-libjemalloc2_5.3.0-1_amd64.deb ... -#42 67.50 Unpacking libjemalloc2:amd64 (5.3.0-1) ... -#42 67.54 Selecting previously unselected package libjemalloc-dev. -#42 67.54 Preparing to unpack .../126-libjemalloc-dev_5.3.0-1_amd64.deb ... -#42 67.54 Unpacking libjemalloc-dev (5.3.0-1) ... -#42 67.59 Selecting previously unselected package libwebpmux3:amd64. -#42 67.60 Preparing to unpack .../127-libwebpmux3_1.2.4-0.2+deb12u1_amd64.deb ... -#42 67.60 Unpacking libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... -#42 67.62 Selecting previously unselected package liblept5:amd64. -#42 67.62 Preparing to unpack .../128-liblept5_1.82.0-3+b3_amd64.deb ... -#42 67.62 Unpacking liblept5:amd64 (1.82.0-3+b3) ... -#42 67.71 Selecting previously unselected package libmspub-0.1-1:amd64. -#42 67.71 Preparing to unpack .../129-libmspub-0.1-1_0.1.4-3+b3_amd64.deb ... -#42 67.71 Unpacking libmspub-0.1-1:amd64 (0.1.4-3+b3) ... -#42 67.74 Selecting previously unselected package libmwaw-0.3-3:amd64. -#42 67.74 Preparing to unpack .../130-libmwaw-0.3-3_0.3.21-1_amd64.deb ... -#42 67.74 Unpacking libmwaw-0.3-3:amd64 (0.3.21-1) ... -#42 67.94 Selecting previously unselected package libodfgen-0.1-1:amd64. -#42 67.94 Preparing to unpack .../131-libodfgen-0.1-1_0.1.8-2_amd64.deb ... -#42 67.94 Unpacking libodfgen-0.1-1:amd64 (0.1.8-2) ... -#42 67.98 Selecting previously unselected package libpagemaker-0.0-0:amd64. -#42 67.98 Preparing to unpack .../132-libpagemaker-0.0-0_0.0.4-1_amd64.deb ... -#42 67.98 Unpacking libpagemaker-0.0-0:amd64 (0.0.4-1) ... -#42 68.00 Selecting previously unselected package libpq5:amd64. -#42 68.00 Preparing to unpack .../133-libpq5_15.10-0+deb12u1_amd64.deb ... -#42 68.00 Unpacking libpq5:amd64 (15.10-0+deb12u1) ... -#42 68.03 Selecting previously unselected package libssl-dev:amd64. -#42 68.04 Preparing to unpack .../134-libssl-dev_3.0.15-1~deb12u1_amd64.deb ... -#42 68.04 Unpacking libssl-dev:amd64 (3.0.15-1~deb12u1) ... -#42 68.21 Selecting previously unselected package libpq-dev. -#42 68.21 Preparing to unpack .../135-libpq-dev_15.10-0+deb12u1_amd64.deb ... -#42 68.21 Unpacking libpq-dev (15.10-0+deb12u1) ... -#42 68.24 Selecting previously unselected package libpython3.11:amd64. -#42 68.24 Preparing to unpack .../136-libpython3.11_3.11.2-6+deb12u5_amd64.deb ... -#42 68.24 Unpacking libpython3.11:amd64 (3.11.2-6+deb12u5) ... -#42 68.40 Selecting previously unselected package libqxp-0.0-0. -#42 68.40 Preparing to unpack .../137-libqxp-0.0-0_0.0.2-1+b3_amd64.deb ... -#42 68.40 Unpacking libqxp-0.0-0 (0.0.2-1+b3) ... -#42 68.43 Selecting previously unselected package lp-solve. -#42 68.43 Preparing to unpack .../138-lp-solve_5.5.2.5-2_amd64.deb ... -#42 68.43 Unpacking lp-solve (5.5.2.5-2) ... -#42 68.46 Selecting previously unselected package libstaroffice-0.0-0:amd64. -#42 68.47 Preparing to unpack .../139-libstaroffice-0.0-0_0.0.7-1_amd64.deb ... -#42 68.47 Unpacking libstaroffice-0.0-0:amd64 (0.0.7-1) ... -#42 68.54 Selecting previously unselected package libwps-0.4-4:amd64. -#42 68.54 Preparing to unpack .../140-libwps-0.4-4_0.4.13-1_amd64.deb ... -#42 68.54 Unpacking libwps-0.4-4:amd64 (0.4.13-1) ... -#42 68.62 Selecting previously unselected package libreoffice-calc. -#42 68.62 Preparing to unpack .../141-libreoffice-calc_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 68.62 Unpacking libreoffice-calc (4:7.4.7-1+deb12u6) ... -#42 ... - -#67 [opea/multimodalqna:latest] exporting to image -#67 exporting layers 2.4s done -#67 writing image sha256:969351029eafde09314f0019f51e51d41929ea6fc054a238e84eb0229c8b0ee3 done -#67 naming to docker.io/opea/multimodalqna:latest done -#67 DONE 2.4s - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 51.11 Successfully installed MarkupSafe-3.0.2 filelock-3.17.0 fsspec-2025.2.0 jinja2-3.1.5 mpmath-1.3.0 networkx-3.4.2 numpy-2.2.2 pillow-11.1.0 sympy-1.13.1 torch-2.6.0+cpu torchvision-0.21.0+cpu typing-extensions-4.12.2 -#54 51.11 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#54 52.09 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu -#54 52.41 Collecting bs4 (from -r /home/user/comps/retrievers/src/requirements.txt (line 1)) -#54 52.59 Downloading bs4-0.0.2-py2.py3-none-any.whl.metadata (411 bytes) -#54 52.83 Collecting cairosvg (from -r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 52.88 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -#54 52.99 Collecting docx2txt (from -r /home/user/comps/retrievers/src/requirements.txt (line 4)) -#54 53.04 Downloading docx2txt-0.8.tar.gz (2.8 kB) -#54 53.04 Preparing metadata (setup.py): started -#54 53.42 Preparing metadata (setup.py): finished with status 'done' -#54 53.51 Collecting easyocr (from -r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 53.55 Downloading easyocr-1.7.2-py3-none-any.whl.metadata (10 kB) -#54 53.72 Collecting fastapi (from -r /home/user/comps/retrievers/src/requirements.txt (line 6)) -#54 53.75 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#54 53.89 Collecting future (from -r /home/user/comps/retrievers/src/requirements.txt (line 7)) -#54 53.92 Downloading future-1.0.0-py3-none-any.whl.metadata (4.0 kB) -#54 54.18 Collecting graspologic (from -r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 54.22 Downloading graspologic-3.4.1-py3-none-any.whl.metadata (5.8 kB) -#54 54.54 Collecting haystack-ai==2.3.1 (from -r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 54.58 Downloading haystack_ai-2.3.1-py3-none-any.whl.metadata (13 kB) -#54 54.81 Collecting langchain-elasticsearch (from -r /home/user/comps/retrievers/src/requirements.txt (line 10)) -#54 54.85 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl.metadata (8.3 kB) -#54 55.08 Collecting langchain-pinecone (from -r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 55.12 Downloading langchain_pinecone-0.2.2-py3-none-any.whl.metadata (1.6 kB) -#54 55.38 Collecting langchain_community (from -r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 55.42 Downloading langchain_community-0.3.16-py3-none-any.whl.metadata (2.9 kB) -#54 55.64 Collecting langchain_huggingface (from -r /home/user/comps/retrievers/src/requirements.txt (line 13)) -#54 55.67 Downloading langchain_huggingface-0.1.2-py3-none-any.whl.metadata (1.3 kB) -#54 55.95 Collecting langchain_milvus (from -r /home/user/comps/retrievers/src/requirements.txt (line 14)) -#54 55.98 Downloading langchain_milvus-0.1.8-py3-none-any.whl.metadata (1.9 kB) -#54 56.23 Collecting llama-index-core (from -r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 56.27 Downloading llama_index_core-0.12.15-py3-none-any.whl.metadata (2.5 kB) -#54 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 69.18 Selecting previously unselected package libvisio-0.1-1:amd64. -#42 69.18 Preparing to unpack .../142-libvisio-0.1-1_0.1.7-1+b3_amd64.deb ... -#42 69.18 Unpacking libvisio-0.1-1:amd64 (0.1.7-1+b3) ... -#42 69.22 Selecting previously unselected package libwpd-0.10-10:amd64. -#42 69.22 Preparing to unpack .../143-libwpd-0.10-10_0.10.3-2+b1_amd64.deb ... -#42 69.22 Unpacking libwpd-0.10-10:amd64 (0.10.3-2+b1) ... -#42 69.25 Selecting previously unselected package libwpg-0.3-3:amd64. -#42 69.25 Preparing to unpack .../144-libwpg-0.3-3_0.3.3-1_amd64.deb ... -#42 69.25 Unpacking libwpg-0.3-3:amd64 (0.3.3-1) ... -#42 69.27 Selecting previously unselected package libzmf-0.0-0:amd64. -#42 69.27 Preparing to unpack .../145-libzmf-0.0-0_0.0.2-1+b5_amd64.deb ... -#42 69.27 Unpacking libzmf-0.0-0:amd64 (0.0.2-1+b5) ... -#42 69.29 Selecting previously unselected package libreoffice-draw. -#42 69.29 Preparing to unpack .../146-libreoffice-draw_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 69.30 Unpacking libreoffice-draw (4:7.4.7-1+deb12u6) ... -#42 69.52 Selecting previously unselected package libreoffice-impress. -#42 69.52 Preparing to unpack .../147-libreoffice-impress_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 69.53 Unpacking libreoffice-impress (4:7.4.7-1+deb12u6) ... -#42 69.64 Selecting previously unselected package libreoffice-math. -#42 69.64 Preparing to unpack .../148-libreoffice-math_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 69.65 Unpacking libreoffice-math (4:7.4.7-1+deb12u6) ... -#42 69.71 Selecting previously unselected package libreoffice-report-builder-bin. -#42 69.71 Preparing to unpack .../149-libreoffice-report-builder-bin_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 69.71 Unpacking libreoffice-report-builder-bin (4:7.4.7-1+deb12u6) ... -#42 69.79 Selecting previously unselected package libreoffice-writer. -#42 69.79 Preparing to unpack .../150-libreoffice-writer_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 69.80 Unpacking libreoffice-writer (4:7.4.7-1+deb12u6) ... -#42 70.43 Selecting previously unselected package python3-uno. -#42 70.43 Preparing to unpack .../151-python3-uno_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 70.43 Unpacking python3-uno (4:7.4.7-1+deb12u6) ... -#42 70.46 Selecting previously unselected package libreoffice. -#42 70.46 Preparing to unpack .../152-libreoffice_4%3a7.4.7-1+deb12u6_amd64.deb ... -#42 70.46 Unpacking libreoffice (4:7.4.7-1+deb12u6) ... -#42 70.48 Selecting previously unselected package libtesseract5:amd64. -#42 70.48 Preparing to unpack .../153-libtesseract5_5.3.0-2_amd64.deb ... -#42 70.48 Unpacking libtesseract5:amd64 (5.3.0-2) ... -#42 70.59 Selecting previously unselected package poppler-utils. -#42 70.59 Preparing to unpack .../154-poppler-utils_22.12.0-2+b1_amd64.deb ... -#42 70.59 Unpacking poppler-utils (22.12.0-2+b1) ... -#42 70.62 Selecting previously unselected package tesseract-ocr-eng. -#42 70.62 Preparing to unpack .../155-tesseract-ocr-eng_1%3a4.1.0-2_all.deb ... -#42 70.62 Unpacking tesseract-ocr-eng (1:4.1.0-2) ... -#42 70.75 Selecting previously unselected package tesseract-ocr-osd. -#42 70.75 Preparing to unpack .../156-tesseract-ocr-osd_1%3a4.1.0-2_all.deb ... -#42 70.75 Unpacking tesseract-ocr-osd (1:4.1.0-2) ... -#42 71.00 Selecting previously unselected package tesseract-ocr. -#42 71.01 Preparing to unpack .../157-tesseract-ocr_5.3.0-2_amd64.deb ... -#42 71.01 Unpacking tesseract-ocr (5.3.0-2) ... -#42 71.07 Setting up libksba8:amd64 (1.6.3-2) ... -#42 71.07 Setting up media-types (10.0.0) ... -#42 71.07 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -#42 71.07 Setting up liblcms2-2:amd64 (2.14-2) ... -#42 71.08 Setting up libpixman-1-0:amd64 (0.42.2-1) ... -#42 71.08 Setting up libpciaccess0:amd64 (0.17-2) ... -#42 71.08 Setting up libabsl20220623:amd64 (20220623.1-1) ... -#42 71.08 Setting up libxau6:amd64 (1:1.0.9-1) ... -#42 71.08 Setting up libpsl5:amd64 (0.21.2-1) ... -#42 71.08 Setting up libicu72:amd64 (72.1-3) ... -#42 71.09 Setting up liblerc4:amd64 (4.0.0+ds-2) ... -#42 71.09 Setting up wget (1.21.3-1+b2) ... -#42 71.09 Setting up hicolor-icon-theme (0.17-2) ... -#42 71.11 Setting up java-common (0.74) ... -#42 71.11 Setting up libhyphen0:amd64 (2.8.8-7) ... -#42 71.12 Setting up libdatrie1:amd64 (0.2.13-2+b1) ... -#42 71.12 Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ... -#42 71.12 No schema files found: doing nothing. -#42 71.12 Setting up libboost-iostreams1.74.0:amd64 (1.74.0+ds1-21) ... -#42 71.13 Setting up libglvnd0:amd64 (1.6.0-1) ... -#42 71.13 Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ... -#42 71.13 Setting up libbrotli1:amd64 (1.0.9-2+b6) ... -#42 71.13 Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ... -#42 71.13 Setting up binutils-common:amd64 (2.40-2) ... -#42 71.14 Setting up libyajl2:amd64 (2.1.0-3+deb12u2) ... -#42 71.14 Setting up x11-common (1:7.7+23) ... -#42 71.21 debconf: unable to initialize frontend: Dialog -#42 71.21 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 71.21 debconf: falling back to frontend: Readline -#42 71.22 debconf: unable to initialize frontend: Readline -#42 71.22 debconf: (This frontend requires a controlling tty.) -#42 71.22 debconf: falling back to frontend: Teletype -#42 71.24 invoke-rc.d: could not determine current runlevel -#42 71.24 invoke-rc.d: policy-rc.d denied execution of restart. -#42 71.24 Setting up libsensors-config (1:3.6.0-7.1) ... -#42 71.25 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... -#42 71.25 Setting up libuno-sal3 (4:7.4.7-1+deb12u6) ... -#42 71.25 Setting up libdeflate0:amd64 (1.14-1) ... -#42 71.25 Setting up linux-libc-dev:amd64 (6.1.124-1) ... -#42 71.25 Setting up libctf-nobfd0:amd64 (2.40-2) ... -#42 71.26 Setting up tesseract-ocr-eng (1:4.1.0-2) ... -#42 71.26 Setting up libboost-filesystem1.74.0:amd64 (1.74.0+ds1-21) ... -#42 71.26 Setting up libnpth0:amd64 (1.6-3) ... -#42 71.26 Setting up libeot0:amd64 (0.01-5+b1) ... -#42 71.26 Setting up libjemalloc2:amd64 (5.3.0-1) ... -#42 71.26 Setting up libassuan0:amd64 (2.5.5-5) ... -#42 71.27 Setting up libgomp1:amd64 (12.2.0-14) ... -#42 71.27 Setting up bzip2 (1.0.8-5+b1) ... -#42 71.27 Setting up libunwind8:amd64 (1.6.2-3) ... -#42 71.27 Setting up libjbig0:amd64 (2.1-6.1) ... -#42 71.27 Setting up librevenge-0.0-0:amd64 (0.0.5-3) ... -#42 71.27 Setting up libjansson4:amd64 (2.14-2) ... -#42 71.28 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... -#42 71.28 Setting up libcap2-bin (1:2.66-4) ... -#42 71.28 Setting up libdconf1:amd64 (0.40.0-4) ... -#42 71.28 Setting up libasound2-data (1.2.8-1) ... -#42 71.28 Setting up libjemalloc-dev (5.3.0-1) ... -#42 71.28 Setting up libreoffice-style-colibre (4:7.4.7-1+deb12u6) ... -#42 71.29 Setting up perl-modules-5.36 (5.36.0-7+deb12u1) ... -#42 71.29 Setting up libz3-4:amd64 (4.8.12-3.1) ... -#42 71.30 Setting up liborcus-parser-0.17-0:amd64 (0.17.2-2+b2) ... -#42 71.30 Setting up libblas3:amd64 (3.11.0-2) ... -#42 71.30 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode -#42 71.30 Setting up libzxing2:amd64 (1.4.0-3+b1) ... -#42 71.30 Setting up libtirpc-dev:amd64 (1.3.3+ds-1) ... -#42 71.31 Setting up libnumbertext-data (1.0.11-1) ... -#42 71.31 Setting up rpcsvc-proto (1.4.3-1) ... -#42 71.31 Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ... -#42 71.31 Setting up libx11-data (2:1.8.4-2+deb12u2) ... -#42 ... - -#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt -#0 1.631 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#0 1.773 Collecting pip -#0 1.930 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#0 1.933 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#0 2.205 Collecting setuptools -#0 2.239 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#0 2.329 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#0 2.919 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 3.2 MB/s eta 0:00:00 -#0 2.961 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#0 3.238 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 4.5 MB/s eta 0:00:00 -#0 3.371 Installing collected packages: setuptools, pip -#0 3.371 Attempting uninstall: setuptools -#0 3.374 Found existing installation: setuptools 65.5.1 -#0 3.393 Uninstalling setuptools-65.5.1: -#0 3.533 Successfully uninstalled setuptools-65.5.1 -#0 4.744 Attempting uninstall: pip -#0 4.747 Found existing installation: pip 24.0 -#0 4.799 Uninstalling pip-24.0: -#0 5.100 Successfully uninstalled pip-24.0 -#0 6.223 Successfully installed pip-25.0 setuptools-75.8.0 -#0 6.224 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#0 7.292 Collecting gradio==5.5.0 (from -r /home/user/gradio/requirements.txt (line 1)) -#0 7.347 Downloading gradio-5.5.0-py3-none-any.whl.metadata (16 kB) -#0 7.466 Collecting gradio_pdf==0.0.19 (from -r /home/user/gradio/requirements.txt (line 2)) -#0 7.476 Downloading gradio_pdf-0.0.19-py3-none-any.whl.metadata (6.8 kB) -#0 7.525 Collecting moviepy==1.0.3 (from -r /home/user/gradio/requirements.txt (line 3)) -#0 7.537 Downloading moviepy-1.0.3.tar.gz (388 kB) -#0 7.620 Preparing metadata (setup.py): started -#0 7.823 Preparing metadata (setup.py): finished with status 'done' -#0 8.073 Collecting numpy==1.26.4 (from -r /home/user/gradio/requirements.txt (line 4)) -#0 8.081 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#0 8.211 Collecting opencv-python==4.10.0.82 (from -r /home/user/gradio/requirements.txt (line 5)) -#0 8.220 Downloading opencv_python-4.10.0.82-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) -#0 8.451 Collecting Pillow==10.3.0 (from -r /home/user/gradio/requirements.txt (line 6)) -#0 8.459 Downloading pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB) -#0 8.515 Collecting aiofiles<24.0,>=22.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 8.522 Downloading aiofiles-23.2.1-py3-none-any.whl.metadata (9.7 kB) -#0 8.584 Collecting anyio<5.0,>=3.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 8.592 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#0 8.692 Collecting fastapi<1.0,>=0.115.2 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 8.700 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#0 8.819 Collecting ffmpy (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 8.830 Downloading ffmpy-0.5.0-py3-none-any.whl.metadata (3.0 kB) -#0 8.979 Collecting gradio-client==1.4.2 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 8.989 Downloading gradio_client-1.4.2-py3-none-any.whl.metadata (7.1 kB) -#0 9.036 Collecting httpx>=0.24.1 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 9.044 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#0 9.109 Collecting huggingface-hub>=0.25.1 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 9.117 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#0 9.176 Collecting jinja2<4.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 9.184 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) -#0 9.303 Collecting markupsafe~=2.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 9.311 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) -#0 9.629 Collecting orjson~=3.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 9.639 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#0 9.687 Collecting packaging (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 9.697 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#0 9.843 Collecting pandas<3.0,>=1.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#0 9.851 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) -#68 10.09 Collecting pydantic>=2.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 10.10 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) -#68 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 71.31 Setting up make (4.3-4.1) ... -#42 71.31 Setting up libepoxy0:amd64 (1.5.10-1) ... -#42 71.32 Setting up libmpfr6:amd64 (4.2.0-1) ... -#42 71.32 Setting up libnspr4:amd64 (2:4.35-1) ... -#42 71.32 Setting up gnupg-l10n (2.2.40-1.1) ... -#42 71.32 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... -#42 71.32 Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ... -#42 71.32 Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ... -#42 71.33 Setting up xz-utils (5.4.1-0.2) ... -#42 71.33 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist -#42 71.33 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist -#42 71.33 Setting up libfribidi0:amd64 (1.0.8-2.1) ... -#42 71.33 Setting up libquadmath0:amd64 (12.2.0-14) ... -#42 71.34 Setting up libssl-dev:amd64 (3.0.15-1~deb12u1) ... -#42 71.34 Setting up libpng16-16:amd64 (1.6.39-2) ... -#42 71.34 Setting up libmpc3:amd64 (1.3.1-1) ... -#42 71.34 Setting up libatomic1:amd64 (12.2.0-14) ... -#42 71.34 Setting up patch (2.7.6-7) ... -#42 71.34 Setting up liborc-0.4-0:amd64 (1:0.4.33-2) ... -#42 71.35 Setting up fonts-dejavu-core (2.37-6) ... -#42 71.37 Setting up libgdbm-compat4:amd64 (1.23-3) ... -#42 71.37 Setting up libfreehand-0.1-1 (0.1.2-3) ... -#42 71.37 Setting up libclucene-core1v5:amd64 (2.3.3.4+dfsg-1.1) ... -#42 71.37 Setting up libpcsclite1:amd64 (1.9.9-2) ... -#42 71.37 Setting up libsensors5:amd64 (1:3.6.0-7.1) ... -#42 71.37 Setting up libltdl7:amd64 (2.4.7-7~deb12u1) ... -#42 71.38 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ... -#42 71.38 Setting up libbox2d2:amd64 (2.4.1-3) ... -#42 71.38 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ... -#42 71.38 Setting up libgfortran5:amd64 (12.2.0-14) ... -#42 71.38 Setting up libwebp7:amd64 (1.2.4-0.2+deb12u1) ... -#42 71.38 Setting up libmhash2:amd64 (0.9.9.9-9) ... -#42 71.39 Setting up libmythes-1.2-0:amd64 (2:1.2.5-1) ... -#42 71.39 Setting up libubsan1:amd64 (12.2.0-14) ... -#42 71.39 Setting up libgif7:amd64 (5.2.1-2.5) ... -#42 71.39 Setting up libnsl-dev:amd64 (1.3.0-2) ... -#42 71.39 Setting up sensible-utils (0.0.17+nmu1) ... -#42 71.39 Setting up libxshmfence1:amd64 (1.3-1) ... -#42 71.40 Setting up at-spi2-common (2.46.0-5) ... -#42 71.40 Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... -#42 71.40 Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... -#42 71.41 Setting up libasan8:amd64 (12.2.0-14) ... -#42 71.41 Setting up libexttextcat-data (3.4.5-1) ... -#42 71.41 Setting up libasound2:amd64 (1.2.8-1+b1) ... -#42 71.41 Setting up gpgconf (2.2.40-1.1) ... -#42 71.41 Setting up libepubgen-0.1-1:amd64 (0.1.1-1) ... -#42 71.41 Setting up libuno-salhelpergcc3-3 (4:7.4.7-1+deb12u6) ... -#42 71.42 Setting up libopenjp2-7:amd64 (2.5.0-2+deb12u1) ... -#42 71.42 Setting up libthai-data (0.1.29-1) ... -#42 71.42 Setting up libssh2-1:amd64 (1.10.0-3+b1) ... -#42 71.42 Setting up libgtk2.0-common (2.24.33-2+deb12u1) ... -#42 71.42 Setting up libatk1.0-0:amd64 (2.46.0-5) ... -#42 71.43 Setting up tesseract-ocr-osd (1:4.1.0-2) ... -#42 71.43 Setting up liblangtag-common (0.6.4-2) ... -#42 71.43 Setting up libtsan2:amd64 (12.2.0-14) ... -#42 71.43 Setting up ca-certificates-java (20230710~deb12u1) ... -#42 71.44 No JRE found. Skipping Java certificates setup. -#42 71.44 Setting up libhunspell-1.7-0:amd64 (1.7.1-1) ... -#42 71.45 Setting up libbinutils:amd64 (2.40-2) ... -#42 71.45 Setting up libisl23:amd64 (0.25-1.1) ... -#42 71.45 Setting up libc-dev-bin (2.36-9+deb12u9) ... -#42 71.45 Setting up libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ... -#42 71.45 Setting up libbsd0:amd64 (0.11.7-2) ... -#42 71.45 Setting up libwpd-0.10-10:amd64 (0.10.3-2+b1) ... -#42 71.46 Setting up libdrm-common (2.4.114-1) ... -#42 71.46 Setting up libelf1:amd64 (0.188-2.1) ... -#42 71.46 Setting up libnumbertext-1.0-0:amd64 (1.0.11-1) ... -#42 71.46 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... -#42 71.46 Setting up libsuitesparseconfig5:amd64 (1:5.12.0+dfsg-2) ... -#42 71.46 Setting up libcc1-0:amd64 (12.2.0-14) ... -#42 71.47 Setting up libperl5.36:amd64 (5.36.0-7+deb12u1) ... -#42 71.47 Setting up iso-codes (4.15.0-1) ... -#42 71.47 Setting up gpg (2.2.40-1.1) ... -#42 71.47 Setting up liblsan0:amd64 (12.2.0-14) ... -#42 71.47 Setting up fonts-opensymbol (4:102.12+LibO7.4.7-1+deb12u6) ... -#42 71.48 Setting up libitm1:amd64 (12.2.0-14) ... -#42 71.48 Setting up libodfgen-0.1-1:amd64 (0.1.8-2) ... -#42 71.48 Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ... -#42 71.48 Setting up libvisio-0.1-1:amd64 (0.1.7-1+b3) ... -#42 71.48 Setting up libboost-thread1.74.0:amd64 (1.74.0+ds1-21) ... -#42 71.48 Setting up gnupg-utils (2.2.40-1.1) ... -#42 71.49 Setting up libctf0:amd64 (2.40-2) ... -#42 71.49 Setting up pinentry-curses (1.2.1-1) ... -#42 71.49 Setting up python3.11 (3.11.2-6+deb12u5) ... -#42 72.14 Setting up libice6:amd64 (2:1.0.10-1) ... -#42 72.14 Setting up libdw1:amd64 (0.188-2.1) ... -#42 72.14 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... -#42 72.15 Setting up liblapack3:amd64 (3.11.0-2) ... -#42 72.15 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode -#42 72.15 Setting up libstaroffice-0.0-0:amd64 (0.0.7-1) ... -#42 72.15 Setting up cpp-12 (12.2.0-14) ... -#42 72.16 Setting up libxcb1:amd64 (1.15-1) ... -#42 72.16 Setting up libxcb-xfixes0:amd64 (1.15-1) ... -#42 72.16 Setting up gpg-agent (2.2.40-1.1) ... -#42 72.62 Setting up libwps-0.4-4:amd64 (0.4.13-1) ... -#42 72.62 Setting up libcolamd2:amd64 (1:5.12.0+dfsg-2) ... -#42 72.62 Setting up libpython3.11:amd64 (3.11.2-6+deb12u5) ... -#42 72.63 Setting up libexttextcat-2.0-0:amd64 (3.4.5-1) ... -#42 72.63 Setting up libmspub-0.1-1:amd64 (0.1.4-3+b3) ... -#42 72.63 Setting up libarchive13:amd64 (3.6.2-1+deb12u2) ... -#42 72.63 Setting up libxcb-render0:amd64 (1.15-1) ... -#42 72.64 Setting up fontconfig-config (2.14.1-4) ... -#42 72.71 debconf: unable to initialize frontend: Dialog -#42 72.71 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 72.71 debconf: falling back to frontend: Readline -#42 72.72 debconf: unable to initialize frontend: Readline -#42 72.72 debconf: (This frontend requires a controlling tty.) -#42 72.72 debconf: falling back to frontend: Teletype -#42 72.84 Setting up libxcb-glx0:amd64 (1.15-1) ... -#42 72.85 Setting up libedit2:amd64 (3.1-20221030-2) ... -#42 72.85 Setting up gpgsm (2.2.40-1.1) ... -#42 72.85 Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ... -#42 72.85 Setting up lp-solve (5.5.2.5-2) ... -#42 72.85 Setting up python3 (3.11.2-1+b1) ... -#42 72.86 running python rtupdate hooks for python3.11... -#42 73.00 running python post-rtupdate hooks for python3.11... -#42 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 57.02 Building wheels for collected packages: pycollada -#44 57.02 Building wheel for pycollada (setup.py): started -#44 57.46 Building wheel for pycollada (setup.py): finished with status 'done' -#44 57.46 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127514 sha256=ecd8356affd525093b6d776305e47a67f6535ae12a295e25a4bf317971ff9b2c -#44 57.46 Stored in directory: /tmp/pip-ephem-wheel-cache-kuqdh4_i/wheels/11/92/79/6e8add42e1e207a97d435169cdc705e0a5dd6fb182f4368f3d -#44 57.47 Successfully built pycollada -#44 58.63 Installing collected packages: triton, pytz, pydub, nvidia-cusparselt-cu12, mpmath, zstandard, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, tenacity, sympy, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, pygments, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, mdurl, MarkupSafe, lz4, lxml, jsonpointer, idna, h11, grpcio, greenlet, fsspec, frozenlist, filelock, exceptiongroup, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, async-timeout, annotated-types, aiohappyeyeballs, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, SQLAlchemy, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, multidict, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, jsonpatch, jinja2, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, yarl, starlette, rich, requests-toolbelt, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, jsonschema-specifications, jaxlib, huggingface_hub, httpx, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, jsonschema, jax, fastapi, docarray, aiohttp, transformers, torchvision, opentelemetry-sdk, langchain-core, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, langchain-text-splitters, opentelemetry-exporter-otlp, langchain -#44 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 73.08 Setting up libpagemaker-0.0-0:amd64 (0.0.4-1) ... -#42 73.08 Setting up libnss3:amd64 (2:3.87.1-1+deb12u1) ... -#42 73.09 Setting up libxcb-shm0:amd64 (1.15-1) ... -#42 73.09 Setting up libmwaw-0.3-3:amd64 (0.3.21-1) ... -#42 73.09 Setting up libcdr-0.1-1:amd64 (0.1.6-2+b2) ... -#42 73.09 Setting up liblangtag1:amd64 (0.6.4-2) ... -#42 73.09 Setting up libzmf-0.0-0:amd64 (0.0.2-1+b5) ... -#42 73.09 Setting up libgpgme11:amd64 (1.18.0-3+b1) ... -#42 73.10 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... -#42 73.10 Setting up libqxp-0.0-0 (0.0.2-1+b3) ... -#42 73.10 Setting up liblept5:amd64 (1.82.0-3+b3) ... -#42 73.10 Setting up liborcus-0.17-0:amd64 (0.17.2-2+b2) ... -#42 73.10 Setting up libxcb-present0:amd64 (1.15-1) ... -#42 73.10 Setting up coinor-libcoinutils3v5:amd64 (2.11.4+repack1-2) ... -#42 73.11 Setting up dirmngr (2.2.40-1.1) ... -#42 73.23 Setting up libthai0:amd64 (0.1.29-1) ... -#42 73.23 Setting up perl (5.36.0-7+deb12u1) ... -#42 73.24 Setting up libgprofng0:amd64 (2.40-2) ... -#42 73.24 Setting up libfreetype6:amd64 (2.12.1+dfsg-5+deb12u3) ... -#42 73.24 Setting up libxcb-sync1:amd64 (1.15-1) ... -#42 73.25 Setting up libuno-cppu3 (4:7.4.7-1+deb12u6) ... -#42 73.25 Setting up libgcc-12-dev:amd64 (12.2.0-14) ... -#42 73.25 Setting up shared-mime-info (2.2-1) ... -#42 73.80 Setting up libclucene-contribs1v5:amd64 (2.3.3.4+dfsg-1.1) ... -#42 73.80 Setting up ucf (3.0043+nmu1+deb12u1) ... -#42 73.87 debconf: unable to initialize frontend: Dialog -#42 73.87 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 73.87 debconf: falling back to frontend: Readline -#42 73.88 debconf: unable to initialize frontend: Readline -#42 73.88 debconf: (This frontend requires a controlling tty.) -#42 73.88 debconf: falling back to frontend: Teletype -#42 73.91 Setting up coinor-libosi1v5:amd64 (0.108.6+repack1-2) ... -#42 73.91 Setting up libdpkg-perl (1.21.22) ... -#42 73.91 Setting up libwpg-0.3-3:amd64 (0.3.3-1) ... -#42 73.91 Setting up gpg-wks-server (2.2.40-1.1) ... -#42 73.91 Setting up libxcb-dri2-0:amd64 (1.15-1) ... -#42 73.91 Setting up libdrm2:amd64 (2.4.114-1+b1) ... -#42 73.92 Setting up libxcb-randr0:amd64 (1.15-1) ... -#42 73.92 Setting up cpp (4:12.2.0-3) ... -#42 73.92 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ... -#42 73.92 Setting up libabw-0.1-1:amd64 (0.1.3-1) ... -#42 73.92 Setting up libxslt1.1:amd64 (1.1.35-1) ... -#42 73.93 Setting up libcurl4:amd64 (7.88.1-10+deb12u8) ... -#42 73.93 Setting up libc6-dev:amd64 (2.36-9+deb12u9) ... -#42 73.93 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ... -#42 73.93 Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ... -#42 73.93 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ... -#42 73.95 Setting up libfontconfig1:amd64 (2.14.1-4) ... -#42 73.95 Setting up libxmlsec1:amd64 (1.2.37-2) ... -#42 73.95 Setting up libboost-locale1.74.0:amd64 (1.74.0+ds1-21) ... -#42 73.95 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -#42 73.95 Setting up libsm6:amd64 (2:1.2.3-1) ... -#42 73.95 Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ... -#42 73.96 Setting up libgstreamer1.0-0:amd64 (1.22.0-2+deb12u1) ... -#42 73.96 Setcap worked! gst-ptp-helper is not suid! -#42 73.96 Setting up binutils-x86-64-linux-gnu (2.40-2) ... -#42 73.96 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ... -#42 73.96 Setting up libxcb-dri3-0:amd64 (1.15-1) ... -#42 73.97 Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ... -#42 73.97 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ... -#42 73.97 Setting up libuno-purpenvhelpergcc3-3 (4:7.4.7-1+deb12u6) ... -#42 73.97 Setting up fontconfig (2.14.1-4) ... -#42 73.97 Regenerating fonts cache... done. -#42 75.99 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ... -#42 75.99 Setting up libharfbuzz-icu0:amd64 (6.0.0+dfsg-3) ... -#42 75.99 Setting up libxdamage1:amd64 (1:1.1.6-1) ... -#42 75.99 Setting up uno-libs-private (4:7.4.7-1+deb12u6) ... -#42 76.00 Setting up gpg-wks-client (2.2.40-1.1) ... -#42 76.00 Setting up libgpgmepp6:amd64 (1.18.0-3+b1) ... -#42 76.00 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... -#42 76.00 Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... -#42 76.00 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ... -#42 76.01 Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ... -#42 76.01 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ... -#42 76.01 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ... -#42 76.02 Setting up libpq5:amd64 (15.10-0+deb12u1) ... -#42 76.02 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... -#42 76.02 Setting up libetonyek-0.1-1:amd64 (0.1.10-3+b1) ... -#42 76.02 Setting up libgstreamer-plugins-base1.0-0:amd64 (1.22.0-3+deb12u4) ... -#42 76.02 Setting up libpq-dev (15.10-0+deb12u1) ... -#42 76.03 Setting up libcurl3-gnutls:amd64 (7.88.1-10+deb12u8) ... -#42 76.03 Setting up binutils (2.40-2) ... -#42 76.03 Setting up libe-book-0.1-1:amd64 (0.1.3-2+b2) ... -#42 76.04 Setting up libcairo2:amd64 (1.16.0-7) ... -#42 76.04 Setting up dpkg-dev (1.21.22) ... -#42 76.05 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -#42 76.05 Setting up adwaita-icon-theme (43-1) ... -#42 76.10 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -#42 76.11 Setting up gcc-12 (12.2.0-14) ... -#42 76.11 Setting up libxfixes3:amd64 (1:6.0.0-2) ... -#42 76.11 Setting up coinor-libclp1:amd64 (1.17.6-3) ... -#42 76.11 Setting up libxinerama1:amd64 (2:1.1.4-3) ... -#42 76.11 Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ... -#42 76.11 Setting up libpoppler126:amd64 (22.12.0-2+b1) ... -#42 76.12 Setting up libcups2:amd64 (2.4.2-3+deb12u8) ... -#42 76.12 Setting up libxmlsec1-nss:amd64 (1.2.37-2) ... -#42 76.12 Setting up libtesseract5:amd64 (5.3.0-2) ... -#42 76.12 Setting up gnupg (2.2.40-1.1) ... -#42 76.12 Setting up poppler-utils (22.12.0-2+b1) ... -#42 76.13 Setting up coinor-libcgl1:amd64 (0.60.3+repack1-4) ... -#42 76.13 Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ... -#42 76.13 Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ... -#42 76.13 Setting up g++-12 (12.2.0-14) ... -#42 76.13 Setting up libuno-cppuhelpergcc3-3 (4:7.4.7-1+deb12u6) ... -#42 76.13 Setting up coinor-libcbc3:amd64 (2.10.8+ds1-1) ... -#42 76.14 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ... -#42 76.14 Setting up libxi6:amd64 (2:1.8-1+b1) ... -#42 76.14 Setting up libglx0:amd64 (1.6.0-1) ... -#42 76.14 Setting up libxtst6:amd64 (2:1.2.3-1.1) ... -#42 76.14 Setting up libxcursor1:amd64 (1:1.2.1-1) ... -#42 76.14 Setting up libraptor2-0:amd64 (2.0.15-4) ... -#42 76.15 Setting up gcc (4:12.2.0-3) ... -#42 76.15 Setting up libgl1:amd64 (1.6.0-1) ... -#42 76.16 Setting up tesseract-ocr (5.3.0-2) ... -#42 76.16 Setting up coinor-libcoinmp1v5:amd64 (1.8.3-3) ... -#42 76.16 Setting up openjdk-17-jre-headless:amd64 (17.0.14+7-1~deb12u1) ... -#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode -#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/jpackage to provide /usr/bin/jpackage (jpackage) in auto mode -#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode -#42 76.18 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode -#42 76.19 update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode -#42 76.19 Setting up libgl1-mesa-glx:amd64 (22.3.6-1+deb12u1) ... -#42 76.19 Setting up g++ (4:12.2.0-3) ... -#42 76.20 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode -#42 76.20 Setting up ure (4:7.4.7-1+deb12u6) ... -#42 76.20 Setting up build-essential (12.9) ... -#42 76.20 Setting up libgtk2.0-0:amd64 (2.24.33-2+deb12u1) ... -#42 76.21 Setting up librasqal3:amd64 (0.9.33-2) ... -#42 76.21 Setting up libreoffice-common (4:7.4.7-1+deb12u6) ... -#42 76.31 debconf: unable to initialize frontend: Dialog -#42 76.31 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 76.31 debconf: falling back to frontend: Readline -#42 76.32 debconf: unable to initialize frontend: Readline -#42 76.32 debconf: (This frontend requires a controlling tty.) -#42 76.32 debconf: falling back to frontend: Teletype -#42 76.37 -#42 76.37 Creating config file /etc/libreoffice/registry/main.xcd with new version -#42 76.49 debconf: unable to initialize frontend: Dialog -#42 76.49 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 76.49 debconf: falling back to frontend: Readline -#42 76.50 debconf: unable to initialize frontend: Readline -#42 76.50 debconf: (This frontend requires a controlling tty.) -#42 76.50 debconf: falling back to frontend: Teletype -#42 76.54 -#42 76.54 Creating config file /etc/libreoffice/registry/pdfimport.xcd with new version -#42 76.67 debconf: unable to initialize frontend: Dialog -#42 76.67 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 76.67 debconf: falling back to frontend: Readline -#42 76.68 debconf: unable to initialize frontend: Readline -#42 76.68 debconf: (This frontend requires a controlling tty.) -#42 76.68 debconf: falling back to frontend: Teletype -#42 76.72 -#42 76.72 Creating config file /etc/libreoffice/registry/xsltfilter.xcd with new version -#42 76.85 debconf: unable to initialize frontend: Dialog -#42 76.85 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 76.85 debconf: falling back to frontend: Readline -#42 76.86 debconf: unable to initialize frontend: Readline -#42 76.86 debconf: (This frontend requires a controlling tty.) -#42 76.86 debconf: falling back to frontend: Teletype -#42 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 59.99 Installing collected packages: triton, pytz, pydub, nvidia-cusparselt-cu12, mpmath, zstandard, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, threadpoolctl, tenacity, sympy, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, pygments, pyarrow, psutil, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, multidict, mdurl, MarkupSafe, lz4, lxml, jsonpointer, joblib, idna, h11, grpcio, fsspec, frozenlist, filelock, dill, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, multiprocess, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, jsonpatch, jinja2, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, starlette, scikit-learn, rich, requests-toolbelt, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, jsonschema-specifications, jaxlib, huggingface_hub, httpx, aiohttp, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, langsmith, jsonschema, jax, fastapi, docarray, diffusers, transformers, opentelemetry-sdk, langchain-core, datasets, accelerate, sentence-transformers, optimum, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, optimum-habana, opentelemetry-exporter-otlp -#58 ... - -#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt -#68 10.16 Collecting pydub (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 10.16 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) -#68 10.21 Collecting python-multipart==0.0.12 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 10.23 Downloading python_multipart-0.0.12-py3-none-any.whl.metadata (1.9 kB) -#68 10.32 Collecting pyyaml<7.0,>=5.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 10.33 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#68 10.82 Collecting ruff>=0.2.2 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 10.83 Downloading ruff-0.9.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (25 kB) -#68 10.87 Collecting safehttpx<1.0,>=0.1.1 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 10.88 Downloading safehttpx-0.1.6-py3-none-any.whl.metadata (4.2 kB) -#68 11.00 Collecting semantic-version~=2.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 11.00 Downloading semantic_version-2.10.0-py2.py3-none-any.whl.metadata (9.7 kB) -#68 11.07 Collecting starlette<1.0,>=0.40.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 11.08 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#68 11.13 Collecting tomlkit==0.12.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 11.14 Downloading tomlkit-0.12.0-py3-none-any.whl.metadata (2.7 kB) -#68 11.19 Collecting typer<1.0,>=0.12 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 11.20 Downloading typer-0.15.1-py3-none-any.whl.metadata (15 kB) -#68 11.26 Collecting typing-extensions~=4.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 11.27 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#68 11.34 Collecting uvicorn>=0.14.0 (from gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 11.35 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#68 11.46 Collecting decorator<5.0,>=4.0.2 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 11.47 Downloading decorator-4.4.2-py2.py3-none-any.whl.metadata (4.2 kB) -#68 11.53 Collecting imageio<3.0,>=2.5 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 11.54 Downloading imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB) -#68 11.65 Collecting imageio_ffmpeg>=0.2.0 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 11.66 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#68 11.74 Collecting tqdm<5.0,>=4.11.2 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 11.75 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#68 11.84 Collecting requests<3.0,>=2.8.1 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 11.85 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#68 11.90 Collecting proglog<=1.0.0 (from moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 11.91 Downloading proglog-0.1.10-py3-none-any.whl.metadata (639 bytes) -#68 11.99 Collecting fsspec (from gradio-client==1.4.2->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.00 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) -#68 12.19 Collecting websockets<13.0,>=10.0 (from gradio-client==1.4.2->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.20 Downloading websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#68 12.25 Collecting idna>=2.8 (from anyio<5.0,>=3.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.25 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#68 12.30 Collecting sniffio>=1.1 (from anyio<5.0,>=3.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.30 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#68 12.42 Collecting certifi (from httpx>=0.24.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.43 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#68 12.48 Collecting httpcore==1.* (from httpx>=0.24.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.49 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#68 12.52 Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx>=0.24.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.53 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#68 12.58 Collecting filelock (from huggingface-hub>=0.25.1->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.59 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#68 12.71 Collecting python-dateutil>=2.8.2 (from pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.72 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#68 12.78 Collecting pytz>=2020.1 (from pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.79 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) -#68 12.83 Collecting tzdata>=2022.7 (from pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.84 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) -#68 12.87 Collecting annotated-types>=0.6.0 (from pydantic>=2.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 12.88 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#68 13.55 Collecting pydantic-core==2.27.2 (from pydantic>=2.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 13.56 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#68 13.68 Collecting charset-normalizer<4,>=2 (from requests<3.0,>=2.8.1->moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 13.68 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#68 13.76 Collecting urllib3<3,>=1.21.1 (from requests<3.0,>=2.8.1->moviepy==1.0.3->-r /home/user/gradio/requirements.txt (line 3)) -#68 13.76 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#68 13.84 Collecting click>=8.0.0 (from typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 13.85 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#68 13.89 Collecting shellingham>=1.3.0 (from typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 13.90 Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB) -#68 13.97 Collecting rich>=10.11.0 (from typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 13.98 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#68 14.05 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas<3.0,>=1.0->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 14.06 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#68 14.10 Collecting markdown-it-py>=2.2.0 (from rich>=10.11.0->typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 14.11 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#68 14.16 Collecting pygments<3.0.0,>=2.13.0 (from rich>=10.11.0->typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 14.17 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#68 14.22 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=10.11.0->typer<1.0,>=0.12->gradio==5.5.0->-r /home/user/gradio/requirements.txt (line 1)) -#68 14.23 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#68 14.25 Downloading gradio-5.5.0-py3-none-any.whl (56.7 MB) -#68 14.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.7/56.7 MB 120.6 MB/s eta 0:00:00 -#68 14.75 Downloading gradio_pdf-0.0.19-py3-none-any.whl (1.4 MB) -#68 14.75 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 234.4 MB/s eta 0:00:00 -#68 14.76 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) -#68 14.82 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 330.0 MB/s eta 0:00:00 -#68 14.83 Downloading opencv_python-4.10.0.82-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (62.5 MB) -#68 15.16 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.5/62.5 MB 190.2 MB/s eta 0:00:00 -#68 15.17 Downloading pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#68 15.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 391.9 MB/s eta 0:00:00 -#68 15.19 Downloading gradio_client-1.4.2-py3-none-any.whl (319 kB) -#68 15.20 Downloading python_multipart-0.0.12-py3-none-any.whl (23 kB) -#68 15.21 Downloading tomlkit-0.12.0-py3-none-any.whl (37 kB) -#68 15.22 Downloading aiofiles-23.2.1-py3-none-any.whl (15 kB) -#68 15.23 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#68 15.24 Downloading decorator-4.4.2-py2.py3-none-any.whl (9.2 kB) -#68 15.25 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#68 15.25 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#68 15.26 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#68 15.27 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#68 15.28 Downloading imageio-2.37.0-py3-none-any.whl (315 kB) -#68 15.29 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl (29.5 MB) -#68 15.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 29.5/29.5 MB 207.3 MB/s eta 0:00:00 -#68 15.44 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) -#68 15.45 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB) -#68 15.46 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#68 15.47 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#68 15.48 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) -#68 15.51 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 417.8 MB/s eta 0:00:00 -#68 15.52 Downloading proglog-0.1.10-py3-none-any.whl (6.1 kB) -#68 15.52 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) -#68 15.53 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#68 15.54 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 433.8 MB/s eta 0:00:00 -#68 15.55 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#68 15.55 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 329.4 MB/s eta 0:00:00 -#68 15.56 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#68 15.57 Downloading ruff-0.9.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB) -#68 15.63 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.4/12.4 MB 216.8 MB/s eta 0:00:00 -#68 15.64 Downloading safehttpx-0.1.6-py3-none-any.whl (8.7 kB) -#68 15.64 Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB) -#68 15.65 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#68 15.66 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#68 15.67 Downloading typer-0.15.1-py3-none-any.whl (44 kB) -#68 15.68 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#68 15.69 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#68 15.70 Downloading ffmpy-0.5.0-py3-none-any.whl (6.0 kB) -#68 15.71 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) -#68 15.71 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#68 15.72 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#68 15.73 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#68 15.74 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#68 15.74 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) -#68 15.75 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#68 15.76 Downloading idna-3.10-py3-none-any.whl (70 kB) -#68 15.77 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#68 15.78 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) -#68 15.79 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#68 15.80 Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB) -#68 15.81 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#68 15.82 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) -#68 15.82 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#68 15.83 Downloading websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#68 15.84 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#68 15.85 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#68 15.86 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#68 15.86 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 420.8 MB/s eta 0:00:00 -#68 15.87 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#68 15.88 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#68 ... - -#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi -#0 1.611 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#0 1.850 Collecting pip -#0 1.907 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#0 1.910 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#0 2.242 Collecting setuptools -#0 2.251 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#0 2.309 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#0 2.427 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 16.1 MB/s eta 0:00:00 -#0 2.439 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#0 2.484 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 28.2 MB/s eta 0:00:00 -#0 2.616 Installing collected packages: setuptools, pip -#0 2.616 Attempting uninstall: setuptools -#0 2.619 Found existing installation: setuptools 65.5.1 -#0 2.638 Uninstalling setuptools-65.5.1: -#0 2.687 Successfully uninstalled setuptools-65.5.1 -#0 3.341 Attempting uninstall: pip -#0 3.344 Found existing installation: pip 24.0 -#0 3.395 Uninstalling pip-24.0: -#0 3.553 Successfully uninstalled pip-24.0 -#0 4.363 Successfully installed pip-25.0 setuptools-75.8.0 -#0 4.363 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#0 5.083 Collecting datasets (from -r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 5.143 Downloading datasets-3.2.0-py3-none-any.whl.metadata (20 kB) -#0 5.252 Collecting fastapi (from -r /home/user/comps/asr/src/requirements.txt (line 3)) -#0 5.262 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#0 5.296 Collecting opentelemetry-api (from -r /home/user/comps/asr/src/requirements.txt (line 4)) -#0 5.306 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) -#0 5.332 Collecting opentelemetry-exporter-otlp (from -r /home/user/comps/asr/src/requirements.txt (line 5)) -#0 5.342 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#0 5.367 Collecting opentelemetry-sdk (from -r /home/user/comps/asr/src/requirements.txt (line 6)) -#0 5.377 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) -#0 5.400 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/asr/src/requirements.txt (line 7)) -#0 5.411 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#0 5.541 Collecting pydantic==2.7.2 (from -r /home/user/comps/asr/src/requirements.txt (line 8)) -#0 5.553 Downloading pydantic-2.7.2-py3-none-any.whl.metadata (108 kB) -#0 5.591 Collecting pydub (from -r /home/user/comps/asr/src/requirements.txt (line 9)) -#0 5.601 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) -#0 5.618 Collecting python-multipart (from -r /home/user/comps/asr/src/requirements.txt (line 10)) -#0 5.628 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) -#0 5.647 Collecting shortuuid (from -r /home/user/comps/asr/src/requirements.txt (line 11)) -#0 5.659 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#0 5.706 Collecting transformers (from -r /home/user/comps/asr/src/requirements.txt (line 12)) -#0 5.717 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) -#0 5.865 Collecting uvicorn (from -r /home/user/comps/asr/src/requirements.txt (line 13)) -#0 5.875 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#0 5.957 Collecting zhconv (from -r /home/user/comps/asr/src/requirements.txt (line 14)) -#0 5.968 Downloading zhconv-1.4.3.tar.gz (211 kB) -#0 5.989 Preparing metadata (setup.py): started -#0 6.183 Preparing metadata (setup.py): finished with status 'done' -#0 6.270 Collecting docarray[full] (from -r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 6.283 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#0 6.308 Collecting annotated-types>=0.4.0 (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) -#0 6.319 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#0 6.940 Collecting pydantic-core==2.18.3 (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) -#0 6.955 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) -#0 6.978 Collecting typing-extensions>=4.6.1 (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) -#0 6.988 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#0 7.025 Collecting filelock (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.035 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#0 7.247 Collecting numpy>=1.17 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.257 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#0 7.376 Collecting pyarrow>=15.0.0 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.389 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) -#0 7.412 Collecting dill<0.3.9,>=0.3.0 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.422 Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB) -#0 7.548 Collecting pandas (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.580 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) -#0 7.672 Collecting requests>=2.32.2 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.682 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#0 7.725 Collecting tqdm>=4.66.3 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.734 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#0 7.828 Collecting xxhash (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.837 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) -#0 7.865 Collecting multiprocess<0.70.17 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.875 Downloading multiprocess-0.70.16-py311-none-any.whl.metadata (7.2 kB) -#0 7.905 Collecting fsspec<=2024.9.0,>=2023.1.0 (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 7.915 Downloading fsspec-2024.9.0-py3-none-any.whl.metadata (11 kB) -#0 8.408 Collecting aiohttp (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 8.418 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#0 8.460 Collecting huggingface-hub>=0.23.0 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 8.470 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#0 8.509 Collecting packaging (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 8.519 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#0 8.560 Collecting pyyaml>=5.1 (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#0 8.569 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#0 8.630 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 8.644 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) -#0 8.678 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 8.689 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) -#0 8.767 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 8.778 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#0 9.089 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.100 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#0 9.293 Collecting pillow>=9.3.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.303 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#0 9.504 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.514 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#0 9.618 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.629 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#0 9.766 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.777 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) -#0 9.822 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.834 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) -#0 9.874 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.884 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#0 9.900 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#0 9.910 Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) -#0 9.953 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) -#0 9.963 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#0 10.01 Collecting deprecated>=1.2.6 (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) -#0 10.02 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#69 10.06 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) -#69 10.08 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) -#69 10.11 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) -#69 10.12 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#69 10.14 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) -#69 10.15 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#69 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 76.90 -#42 76.90 Creating config file /etc/libreoffice/registry/lingucomponent.xcd with new version -#42 77.03 debconf: unable to initialize frontend: Dialog -#42 77.03 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 77.03 debconf: falling back to frontend: Readline -#42 77.04 debconf: unable to initialize frontend: Readline -#42 77.04 debconf: (This frontend requires a controlling tty.) -#42 77.04 debconf: falling back to frontend: Teletype -#42 77.08 -#42 77.08 Creating config file /etc/libreoffice/registry/Langpack-en-US.xcd with new version -#42 77.22 debconf: unable to initialize frontend: Dialog -#42 77.22 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 77.22 debconf: falling back to frontend: Readline -#42 77.22 debconf: unable to initialize frontend: Readline -#42 77.22 debconf: (This frontend requires a controlling tty.) -#42 77.22 debconf: falling back to frontend: Teletype -#42 77.26 -#42 77.26 Creating config file /etc/libreoffice/registry/res/fcfg_langpack_en-US.xcd with new version -#42 77.38 Setting up librdf0:amd64 (1.0.17-3) ... -#42 77.42 Setting up libreoffice-core (4:7.4.7-1+deb12u6) ... -#42 77.43 Setting up libreoffice-math (4:7.4.7-1+deb12u6) ... -#42 77.52 debconf: unable to initialize frontend: Dialog -#42 77.52 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 77.52 debconf: falling back to frontend: Readline -#42 77.53 debconf: unable to initialize frontend: Readline -#42 77.53 debconf: (This frontend requires a controlling tty.) -#42 77.53 debconf: falling back to frontend: Teletype -#42 77.58 -#42 77.58 Creating config file /etc/libreoffice/registry/math.xcd with new version -#42 77.63 Setting up libreoffice-draw (4:7.4.7-1+deb12u6) ... -#42 77.72 debconf: unable to initialize frontend: Dialog -#42 77.72 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 77.72 debconf: falling back to frontend: Readline -#42 77.73 debconf: unable to initialize frontend: Readline -#42 77.73 debconf: (This frontend requires a controlling tty.) -#42 77.73 debconf: falling back to frontend: Teletype -#42 77.77 -#42 77.77 Creating config file /etc/libreoffice/registry/draw.xcd with new version -#42 77.91 debconf: unable to initialize frontend: Dialog -#42 77.91 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 77.91 debconf: falling back to frontend: Readline -#42 77.92 debconf: unable to initialize frontend: Readline -#42 77.92 debconf: (This frontend requires a controlling tty.) -#42 77.92 debconf: falling back to frontend: Teletype -#42 77.97 -#42 77.97 Creating config file /etc/libreoffice/registry/graphicfilter.xcd with new version -#42 78.02 Setting up libreoffice-base-drivers (4:7.4.7-1+deb12u6) ... -#42 78.02 Setting up libreoffice-impress (4:7.4.7-1+deb12u6) ... -#42 78.12 debconf: unable to initialize frontend: Dialog -#42 78.12 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 78.12 debconf: falling back to frontend: Readline -#42 78.12 debconf: unable to initialize frontend: Readline -#42 78.12 debconf: (This frontend requires a controlling tty.) -#42 78.12 debconf: falling back to frontend: Teletype -#42 78.17 -#42 78.17 Creating config file /etc/libreoffice/registry/impress.xcd with new version -#42 78.31 debconf: unable to initialize frontend: Dialog -#42 78.31 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 78.31 debconf: falling back to frontend: Readline -#42 78.31 debconf: unable to initialize frontend: Readline -#42 78.31 debconf: (This frontend requires a controlling tty.) -#42 78.31 debconf: falling back to frontend: Teletype -#42 78.36 -#42 78.36 Creating config file /etc/libreoffice/registry/ogltrans.xcd with new version -#42 78.41 Setting up libreoffice-base-core (4:7.4.7-1+deb12u6) ... -#42 78.42 Setting up python3-uno (4:7.4.7-1+deb12u6) ... -#42 78.51 debconf: unable to initialize frontend: Dialog -#42 78.51 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 78.51 debconf: falling back to frontend: Readline -#42 78.52 debconf: unable to initialize frontend: Readline -#42 78.52 debconf: (This frontend requires a controlling tty.) -#42 78.52 debconf: falling back to frontend: Teletype -#42 78.57 -#42 78.57 Creating config file /etc/libreoffice/registry/pyuno.xcd with new version -#42 78.81 Setting up libreoffice-calc (4:7.4.7-1+deb12u6) ... -#42 78.91 debconf: unable to initialize frontend: Dialog -#42 78.91 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 78.91 debconf: falling back to frontend: Readline -#42 78.91 debconf: unable to initialize frontend: Readline -#42 78.91 debconf: (This frontend requires a controlling tty.) -#42 78.91 debconf: falling back to frontend: Teletype -#42 78.96 -#42 78.96 Creating config file /etc/libreoffice/registry/calc.xcd with new version -#42 79.01 Setting up libreoffice-base (4:7.4.7-1+deb12u6) ... -#42 79.11 debconf: unable to initialize frontend: Dialog -#42 79.11 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 79.11 debconf: falling back to frontend: Readline -#42 79.12 debconf: unable to initialize frontend: Readline -#42 79.12 debconf: (This frontend requires a controlling tty.) -#42 79.12 debconf: falling back to frontend: Teletype -#42 79.16 -#42 79.16 Creating config file /etc/libreoffice/registry/base.xcd with new version -#42 79.21 Setting up libreoffice-writer (4:7.4.7-1+deb12u6) ... -#42 79.31 debconf: unable to initialize frontend: Dialog -#42 79.31 debconf: (TERM is not set, so the dialog frontend is not usable.) -#42 79.31 debconf: falling back to frontend: Readline -#42 79.32 debconf: unable to initialize frontend: Readline -#42 79.32 debconf: (This frontend requires a controlling tty.) -#42 79.32 debconf: falling back to frontend: Teletype -#42 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 56.49 Collecting llama-index-embeddings-openai (from -r /home/user/comps/retrievers/src/requirements.txt (line 16)) -#54 56.53 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl.metadata (684 bytes) -#54 56.83 Collecting llama-index-embeddings-text-embeddings-inference (from -r /home/user/comps/retrievers/src/requirements.txt (line 17)) -#54 56.86 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl.metadata (803 bytes) -#54 57.09 Collecting llama-index-llms-openai (from -r /home/user/comps/retrievers/src/requirements.txt (line 18)) -#54 57.13 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl.metadata (3.3 kB) -#54 57.35 Collecting llama-index-llms-openai-like (from -r /home/user/comps/retrievers/src/requirements.txt (line 19)) -#54 57.39 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl.metadata (751 bytes) -#54 57.67 Collecting llama-index-llms-text-generation-inference (from -r /home/user/comps/retrievers/src/requirements.txt (line 20)) -#54 57.72 Downloading llama_index_llms_text_generation_inference-0.3.1-py3-none-any.whl.metadata (1.3 kB) -#54 57.96 Collecting llama_index_graph_stores_neo4j (from -r /home/user/comps/retrievers/src/requirements.txt (line 21)) -#54 57.99 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl.metadata (694 bytes) -#54 58.22 Collecting neo4j (from -r /home/user/comps/retrievers/src/requirements.txt (line 22)) -#54 58.25 Downloading neo4j-5.27.0-py3-none-any.whl.metadata (5.9 kB) -#54 58.26 Requirement already satisfied: numpy in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/retrievers/src/requirements.txt (line 23)) (2.2.2) -#54 58.50 Collecting opensearch-py (from -r /home/user/comps/retrievers/src/requirements.txt (line 24)) -#54 58.54 Downloading opensearch_py-2.8.0-py3-none-any.whl.metadata (6.9 kB) -#54 58.85 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 58.89 Downloading pathway-0.17.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB) -#54 59.20 Collecting pgvector (from -r /home/user/comps/retrievers/src/requirements.txt (line 26)) -#54 59.24 Downloading pgvector-0.3.6-py3-none-any.whl.metadata (13 kB) -#54 59.35 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/retrievers/src/requirements.txt (line 27)) -#54 59.39 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#54 59.67 Collecting protobuf==4.24.2 (from -r /home/user/comps/retrievers/src/requirements.txt (line 28)) -#54 59.71 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl.metadata (540 bytes) -#54 60.01 Collecting psycopg2-binary (from -r /home/user/comps/retrievers/src/requirements.txt (line 29)) -#54 60.05 Downloading psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#54 60.26 Collecting pydantic (from -r /home/user/comps/retrievers/src/requirements.txt (line 30)) -#54 60.29 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) -#54 60.60 Collecting pymupdf (from -r /home/user/comps/retrievers/src/requirements.txt (line 31)) -#54 60.63 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (3.4 kB) -#54 60.73 Collecting pytesseract (from -r /home/user/comps/retrievers/src/requirements.txt (line 32)) -#54 60.76 Downloading pytesseract-0.3.13-py3-none-any.whl.metadata (11 kB) -#54 61.01 Collecting python-docx (from -r /home/user/comps/retrievers/src/requirements.txt (line 33)) -#54 61.05 Downloading python_docx-1.1.2-py3-none-any.whl.metadata (2.0 kB) -#54 61.32 Collecting python-multipart (from -r /home/user/comps/retrievers/src/requirements.txt (line 34)) -#54 61.35 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) -#54 61.60 Collecting python-pptx (from -r /home/user/comps/retrievers/src/requirements.txt (line 35)) -#54 61.64 Downloading python_pptx-1.0.2-py3-none-any.whl.metadata (2.5 kB) -#54 61.94 Collecting qdrant-haystack (from -r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 61.98 Downloading qdrant_haystack-7.0.0-py3-none-any.whl.metadata (1.9 kB) -#54 62.26 Collecting redis (from -r /home/user/comps/retrievers/src/requirements.txt (line 37)) -#54 62.30 Downloading redis-5.2.1-py3-none-any.whl.metadata (9.1 kB) -#54 62.57 Collecting sentence_transformers (from -r /home/user/comps/retrievers/src/requirements.txt (line 38)) -#54 62.61 Downloading sentence_transformers-3.4.1-py3-none-any.whl.metadata (10 kB) -#54 62.72 Collecting shortuuid (from -r /home/user/comps/retrievers/src/requirements.txt (line 39)) -#54 62.77 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#54 63.04 Collecting tiktoken (from -r /home/user/comps/retrievers/src/requirements.txt (line 40)) -#54 63.08 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#54 63.36 Collecting uvicorn (from -r /home/user/comps/retrievers/src/requirements.txt (line 41)) -#54 63.39 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#54 63.69 Collecting vdms==0.0.21 (from -r /home/user/comps/retrievers/src/requirements.txt (line 42)) -#54 63.72 Downloading vdms-0.0.21-py3-none-any.whl.metadata (600 bytes) -#54 64.06 Collecting docarray[full] (from -r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 64.10 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#54 64.43 Collecting haystack-experimental (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 64.47 Downloading haystack_experimental-0.5.0-py3-none-any.whl.metadata (15 kB) -#54 64.48 Requirement already satisfied: jinja2 in /usr/local/lib/python3.11/site-packages (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (3.1.5) -#54 64.70 Collecting lazy-imports (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 64.75 Downloading lazy_imports-0.4.0-py3-none-any.whl.metadata (10 kB) -#54 65.00 Collecting more-itertools (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 65.05 Downloading more_itertools-10.6.0-py3-none-any.whl.metadata (37 kB) -#54 65.07 Requirement already satisfied: networkx in /usr/local/lib/python3.11/site-packages (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (3.4.2) -#54 65.54 Collecting numpy (from -r /home/user/comps/retrievers/src/requirements.txt (line 23)) -#54 65.57 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#54 65.76 Collecting openai>=1.1.0 (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 65.79 Downloading openai-1.61.0-py3-none-any.whl.metadata (27 kB) -#54 66.03 Collecting pandas (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 66.06 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) -#54 66.25 Collecting posthog (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 66.27 Downloading posthog-3.11.0-py2.py3-none-any.whl.metadata (2.9 kB) -#54 66.38 Collecting python-dateutil (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 66.40 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#54 66.52 Collecting pyyaml (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 66.56 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#54 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 79.36 -#42 79.36 Creating config file /etc/libreoffice/registry/writer.xcd with new version -#42 79.42 Setting up libreoffice-report-builder-bin (4:7.4.7-1+deb12u6) ... -#42 79.42 Setting up libreoffice (4:7.4.7-1+deb12u6) ... -#42 79.43 Processing triggers for libc-bin (2.36-9+deb12u9) ... -#42 79.45 Processing triggers for ca-certificates-java (20230710~deb12u1) ... -#42 79.65 Adding debian:ACCVRAIZ1.pem -#42 79.65 Adding debian:AC_RAIZ_FNMT-RCM.pem -#42 79.66 Adding debian:AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem -#42 79.67 Adding debian:ANF_Secure_Server_Root_CA.pem -#42 79.67 Adding debian:Actalis_Authentication_Root_CA.pem -#42 79.67 Adding debian:AffirmTrust_Commercial.pem -#42 79.67 Adding debian:AffirmTrust_Networking.pem -#42 79.67 Adding debian:AffirmTrust_Premium.pem -#42 79.67 Adding debian:AffirmTrust_Premium_ECC.pem -#42 79.68 Adding debian:Amazon_Root_CA_1.pem -#42 79.68 Adding debian:Amazon_Root_CA_2.pem -#42 79.68 Adding debian:Amazon_Root_CA_3.pem -#42 79.68 Adding debian:Amazon_Root_CA_4.pem -#42 79.68 Adding debian:Atos_TrustedRoot_2011.pem -#42 79.68 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem -#42 79.69 Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068_2.pem -#42 79.69 Adding debian:Baltimore_CyberTrust_Root.pem -#42 79.69 Adding debian:Buypass_Class_2_Root_CA.pem -#42 79.70 Adding debian:Buypass_Class_3_Root_CA.pem -#42 79.70 Adding debian:CA_Disig_Root_R2.pem -#42 79.70 Adding debian:CFCA_EV_ROOT.pem -#42 79.70 Adding debian:COMODO_Certification_Authority.pem -#42 79.70 Adding debian:COMODO_ECC_Certification_Authority.pem -#42 79.71 Adding debian:COMODO_RSA_Certification_Authority.pem -#42 79.71 Adding debian:Certainly_Root_E1.pem -#42 79.71 Adding debian:Certainly_Root_R1.pem -#42 79.71 Adding debian:Certigna.pem -#42 79.71 Adding debian:Certigna_Root_CA.pem -#42 79.71 Adding debian:Certum_EC-384_CA.pem -#42 79.72 Adding debian:Certum_Trusted_Network_CA.pem -#42 79.72 Adding debian:Certum_Trusted_Network_CA_2.pem -#42 79.72 Adding debian:Certum_Trusted_Root_CA.pem -#42 79.72 Adding debian:Comodo_AAA_Services_root.pem -#42 79.72 Adding debian:D-TRUST_BR_Root_CA_1_2020.pem -#42 79.73 Adding debian:D-TRUST_EV_Root_CA_1_2020.pem -#42 79.73 Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem -#42 79.73 Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem -#42 79.73 Adding debian:DigiCert_Assured_ID_Root_CA.pem -#42 79.73 Adding debian:DigiCert_Assured_ID_Root_G2.pem -#42 79.73 Adding debian:DigiCert_Assured_ID_Root_G3.pem -#42 79.73 Adding debian:DigiCert_Global_Root_CA.pem -#42 79.74 Adding debian:DigiCert_Global_Root_G2.pem -#42 79.74 Adding debian:DigiCert_Global_Root_G3.pem -#42 79.74 Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem -#42 79.74 Adding debian:DigiCert_TLS_ECC_P384_Root_G5.pem -#42 79.74 Adding debian:DigiCert_TLS_RSA4096_Root_G5.pem -#42 79.74 Adding debian:DigiCert_Trusted_Root_G4.pem -#42 79.75 Adding debian:E-Tugra_Certification_Authority.pem -#42 79.75 Adding debian:E-Tugra_Global_Root_CA_ECC_v3.pem -#42 79.75 Adding debian:E-Tugra_Global_Root_CA_RSA_v3.pem -#42 79.75 Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem -#42 79.75 Adding debian:Entrust_Root_Certification_Authority.pem -#42 79.75 Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem -#42 79.75 Adding debian:Entrust_Root_Certification_Authority_-_G2.pem -#42 79.76 Adding debian:Entrust_Root_Certification_Authority_-_G4.pem -#42 79.76 Adding debian:GDCA_TrustAUTH_R5_ROOT.pem -#42 79.76 Adding debian:GLOBALTRUST_2020.pem -#42 79.76 Adding debian:GTS_Root_R1.pem -#42 79.76 Adding debian:GTS_Root_R2.pem -#42 79.76 Adding debian:GTS_Root_R3.pem -#42 79.77 Adding debian:GTS_Root_R4.pem -#42 79.77 Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem -#42 79.77 Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem -#42 79.77 Adding debian:GlobalSign_Root_CA.pem -#42 79.77 Adding debian:GlobalSign_Root_CA_-_R3.pem -#42 79.77 Adding debian:GlobalSign_Root_CA_-_R6.pem -#42 79.77 Adding debian:GlobalSign_Root_E46.pem -#42 79.78 Adding debian:GlobalSign_Root_R46.pem -#42 79.78 Adding debian:Go_Daddy_Class_2_CA.pem -#42 79.78 Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem -#42 79.78 Adding debian:HARICA_TLS_ECC_Root_CA_2021.pem -#42 79.78 Adding debian:HARICA_TLS_RSA_Root_CA_2021.pem -#42 79.78 Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem -#42 79.78 Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem -#42 79.79 Adding debian:HiPKI_Root_CA_-_G1.pem -#42 79.79 Adding debian:Hongkong_Post_Root_CA_1.pem -#42 79.79 Adding debian:Hongkong_Post_Root_CA_3.pem -#42 79.79 Adding debian:ISRG_Root_X1.pem -#42 79.79 Adding debian:ISRG_Root_X2.pem -#42 79.79 Adding debian:IdenTrust_Commercial_Root_CA_1.pem -#42 79.80 Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem -#42 79.80 Adding debian:Izenpe.com.pem -#42 79.80 Adding debian:Microsec_e-Szigno_Root_CA_2009.pem -#42 79.80 Adding debian:Microsoft_ECC_Root_Certificate_Authority_2017.pem -#42 79.80 Adding debian:Microsoft_RSA_Root_Certificate_Authority_2017.pem -#42 79.80 Adding debian:NAVER_Global_Root_Certification_Authority.pem -#42 79.81 Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem -#42 79.81 Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem -#42 79.81 Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem -#42 79.81 Adding debian:QuoVadis_Root_CA_1_G3.pem -#42 79.81 Adding debian:QuoVadis_Root_CA_2.pem -#42 79.81 Adding debian:QuoVadis_Root_CA_2_G3.pem -#42 79.82 Adding debian:QuoVadis_Root_CA_3.pem -#42 79.82 Adding debian:QuoVadis_Root_CA_3_G3.pem -#42 79.82 Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem -#42 79.82 Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem -#42 79.82 Adding debian:SSL.com_Root_Certification_Authority_ECC.pem -#42 79.82 Adding debian:SSL.com_Root_Certification_Authority_RSA.pem -#42 79.83 Adding debian:SZAFIR_ROOT_CA2.pem -#42 79.83 Adding debian:SecureSign_RootCA11.pem -#42 79.83 Adding debian:SecureTrust_CA.pem -#42 79.83 Adding debian:Secure_Global_CA.pem -#42 79.83 Adding debian:Security_Communication_ECC_RootCA1.pem -#42 79.83 Adding debian:Security_Communication_RootCA2.pem -#42 79.83 Adding debian:Security_Communication_RootCA3.pem -#42 79.83 Adding debian:Security_Communication_Root_CA.pem -#42 79.84 Adding debian:Starfield_Class_2_CA.pem -#42 79.84 Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem -#42 79.84 Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem -#42 79.84 Adding debian:SwissSign_Gold_CA_-_G2.pem -#42 79.84 Adding debian:SwissSign_Silver_CA_-_G2.pem -#42 79.84 Adding debian:T-TeleSec_GlobalRoot_Class_2.pem -#42 79.85 Adding debian:T-TeleSec_GlobalRoot_Class_3.pem -#42 79.85 Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem -#42 79.85 Adding debian:TWCA_Global_Root_CA.pem -#42 79.85 Adding debian:TWCA_Root_Certification_Authority.pem -#42 79.85 Adding debian:TeliaSonera_Root_CA_v1.pem -#42 79.85 Adding debian:Telia_Root_CA_v2.pem -#42 79.85 Adding debian:TrustCor_ECA-1.pem -#42 79.86 Adding debian:TrustCor_RootCert_CA-1.pem -#42 79.86 Adding debian:TrustCor_RootCert_CA-2.pem -#42 79.86 Adding debian:Trustwave_Global_Certification_Authority.pem -#42 79.86 Adding debian:Trustwave_Global_ECC_P256_Certification_Authority.pem -#42 79.86 Adding debian:Trustwave_Global_ECC_P384_Certification_Authority.pem -#42 79.86 Adding debian:TunTrust_Root_CA.pem -#42 79.86 Adding debian:UCA_Extended_Validation_Root.pem -#42 79.87 Adding debian:UCA_Global_G2_Root.pem -#42 79.87 Adding debian:USERTrust_ECC_Certification_Authority.pem -#42 79.87 Adding debian:USERTrust_RSA_Certification_Authority.pem -#42 79.87 Adding debian:XRamp_Global_CA_Root.pem -#42 79.87 Adding debian:certSIGN_ROOT_CA.pem -#42 79.87 Adding debian:certSIGN_Root_CA_G2.pem -#42 79.87 Adding debian:e-Szigno_Root_CA_2017.pem -#42 79.88 Adding debian:ePKI_Root_Certification_Authority.pem -#42 79.88 Adding debian:emSign_ECC_Root_CA_-_C3.pem -#42 79.88 Adding debian:emSign_ECC_Root_CA_-_G3.pem -#42 79.88 Adding debian:emSign_Root_CA_-_C1.pem -#42 79.88 Adding debian:emSign_Root_CA_-_G1.pem -#42 79.88 Adding debian:vTrus_ECC_Root_CA.pem -#42 79.88 Adding debian:vTrus_Root_CA.pem -#42 79.90 done. -#42 79.91 Setting up default-jre-headless (2:1.17-74) ... -#42 79.91 Setting up openjdk-17-jre:amd64 (17.0.14+7-1~deb12u1) ... -#42 79.92 Setting up default-jre (2:1.17-74) ... -#42 ... - -#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi -#69 10.18 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) -#69 10.19 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#69 10.80 Collecting grpcio<2.0.0,>=1.63.2 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) -#69 10.82 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#69 10.84 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) -#69 10.85 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) -#69 10.87 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) -#69 10.88 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#69 10.96 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk->-r /home/user/comps/asr/src/requirements.txt (line 6)) -#69 10.97 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) -#69 11.00 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/asr/src/requirements.txt (line 7)) -#69 11.01 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#69 11.46 Collecting regex!=2019.12.17 (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) -#69 11.48 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#69 11.66 Collecting tokenizers<0.22,>=0.21 (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) -#69 11.67 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) -#69 11.80 Collecting safetensors>=0.4.1 (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) -#69 11.81 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#69 11.86 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) -#69 11.87 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#69 11.88 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) -#69 11.89 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#69 12.00 Collecting wrapt<2,>=1.10 (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) -#69 12.02 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#69 12.08 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 12.09 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#69 12.10 Collecting aiosignal>=1.1.2 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 12.11 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#69 12.13 Collecting attrs>=17.3.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 12.15 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#69 12.21 Collecting frozenlist>=1.1.1 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 12.22 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#69 12.39 Collecting multidict<7.0,>=4.5 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 12.40 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#69 12.43 Collecting propcache>=0.2.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 12.44 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#69 12.77 Collecting yarl<2.0,>=1.17.0 (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 12.78 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#69 12.86 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) -#69 12.87 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#69 12.92 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 12.93 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) -#69 12.96 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 12.97 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) -#69 13.01 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 13.02 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) -#69 13.17 Collecting scipy>=1.11.1 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 13.18 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#69 13.25 Collecting python-dateutil>=2.8.2 (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 13.27 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#69 13.32 Collecting pytz>=2020.1 (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 13.33 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) -#69 13.38 Collecting tzdata>=2022.7 (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 13.39 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) -#69 13.49 Collecting charset-normalizer<4,>=2 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 13.50 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#69 13.53 Collecting idna<4,>=2.5 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 13.56 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#69 13.60 Collecting urllib3<3,>=1.21.1 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 13.61 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#69 13.68 Collecting certifi>=2017.4.17 (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 13.69 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#69 13.71 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 13.75 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#69 13.79 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 13.79 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#69 13.83 Collecting anyio<5,>=3.6.2 (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) -#69 13.84 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#69 13.91 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 13.94 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) -#69 13.98 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.01 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) -#69 14.03 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.08 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) -#69 14.31 Collecting lxml (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.32 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#69 14.36 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.37 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) -#69 14.40 Collecting networkx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.42 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) -#69 14.44 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.46 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) -#69 14.48 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.49 Downloading pycollada-0.8.tar.gz (108 kB) -#69 14.52 Preparing metadata (setup.py): started -#69 14.70 Preparing metadata (setup.py): finished with status 'done' -#69 14.71 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (75.8.0) -#69 14.81 Collecting shapely (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.82 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) -#69 14.87 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.88 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) -#69 14.91 Collecting httpx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.92 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#69 14.94 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 14.96 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) -#69 15.05 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.06 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#69 15.18 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.20 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) -#69 15.23 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.24 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) -#69 15.29 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.30 Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB) -#69 15.34 Collecting sniffio>=1.1 (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) -#69 15.35 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#69 15.47 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.48 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#69 15.56 Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) -#69 15.57 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#69 15.67 Collecting httpcore==1.* (from httpx->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.70 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#69 15.73 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.75 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) -#69 15.83 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 15.84 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) -#69 16.09 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) -#69 16.10 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) -#69 16.23 Downloading pydantic-2.7.2-py3-none-any.whl (409 kB) -#69 16.29 Downloading pydantic_core-2.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#69 16.31 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 120.8 MB/s eta 0:00:00 -#69 16.32 Downloading datasets-3.2.0-py3-none-any.whl (480 kB) -#69 16.33 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#69 16.34 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) -#69 16.39 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) -#69 16.40 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) -#69 16.41 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) -#69 16.42 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) -#69 16.43 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) -#69 16.44 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) -#69 16.47 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) -#69 16.48 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#69 16.49 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) -#69 16.50 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) -#69 16.51 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#69 16.52 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) -#69 16.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 174.9 MB/s eta 0:00:00 -#69 16.60 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#69 16.63 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#69 16.64 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) -#69 16.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 142.4 MB/s eta 0:00:00 -#69 16.94 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#69 16.96 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#69 16.98 Downloading dill-0.3.8-py3-none-any.whl (116 kB) -#69 16.99 Downloading fsspec-2024.9.0-py3-none-any.whl (179 kB) -#69 17.00 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB) -#69 17.01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 276.7 MB/s eta 0:00:00 -#69 17.02 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#69 17.03 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#69 17.04 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) -#69 17.08 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) -#69 17.12 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 542.0 MB/s eta 0:00:00 -#69 17.14 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#69 17.14 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 281.0 MB/s eta 0:00:00 -#69 17.15 Downloading multiprocess-0.70.16-py311-none-any.whl (143 kB) -#69 17.16 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) -#69 17.26 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 198.7 MB/s eta 0:00:00 -#69 17.27 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#69 17.32 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#69 17.33 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) -#69 17.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 177.9 MB/s eta 0:00:00 -#69 17.43 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#69 17.46 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 289.1 MB/s eta 0:00:00 -#69 17.47 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#69 17.48 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) -#69 17.49 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) -#69 17.71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 193.0 MB/s eta 0:00:00 -#69 17.72 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#69 17.73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 248.8 MB/s eta 0:00:00 -#69 17.74 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) -#69 17.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 243.7 MB/s eta 0:00:00 -#69 17.75 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#69 17.76 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#69 17.77 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) -#69 17.79 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#69 17.82 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#69 17.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 265.7 MB/s eta 0:00:00 -#69 17.84 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#69 17.85 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) -#69 17.85 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 252.4 MB/s eta 0:00:00 -#69 17.87 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) -#69 17.90 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#69 17.91 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#69 17.92 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#69 17.93 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#69 17.94 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#69 17.95 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) -#69 17.97 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#69 17.98 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#69 17.99 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#69 18.00 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#69 18.01 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#69 18.02 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#69 18.03 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) -#69 18.10 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#69 18.11 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#69 18.13 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 257.2 MB/s eta 0:00:00 -#69 18.14 Downloading idna-3.10-py3-none-any.whl (70 kB) -#69 18.18 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) -#69 18.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 182.6 MB/s eta 0:00:00 -#69 18.75 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) -#69 18.76 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 170.4 MB/s eta 0:00:00 -#69 18.77 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) -#69 18.79 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#69 18.80 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) -#69 18.83 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 227.4 MB/s eta 0:00:00 -#69 18.84 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) -#69 18.85 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#69 18.88 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) -#69 18.92 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#69 18.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 334.6 MB/s eta 0:00:00 -#69 18.94 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#69 18.95 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) -#69 18.96 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.6 MB) -#69 19.12 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/40.6 MB 287.6 MB/s eta 0:00:00 -#69 19.13 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) -#69 19.14 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#69 19.18 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) -#69 19.19 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) -#69 19.20 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#69 19.21 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) -#69 19.22 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) -#69 19.23 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) -#69 19.32 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 247.8 MB/s eta 0:00:00 -#69 19.33 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#69 19.34 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#69 19.35 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) -#69 19.36 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) -#69 19.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 160.2 MB/s eta 0:00:00 -#69 19.43 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) -#69 19.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 340.1 MB/s eta 0:00:00 -#69 19.45 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) -#69 19.46 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) -#69 19.47 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 438.2 MB/s eta 0:00:00 -#69 19.48 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) -#69 19.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 298.8 MB/s eta 0:00:00 -#69 19.51 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) -#69 19.53 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) -#69 19.54 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) -#69 19.55 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) -#69 19.56 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#69 19.57 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) -#69 19.61 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) -#69 19.62 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#69 19.63 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#69 ... - -#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt -#68 16.50 Building wheels for collected packages: moviepy -#68 16.50 Building wheel for moviepy (setup.py): started -#68 16.78 Building wheel for moviepy (setup.py): finished with status 'done' -#68 16.78 Created wheel for moviepy: filename=moviepy-1.0.3-py3-none-any.whl size=110763 sha256=f1664dd4bdd99bcc12337800ca1a33cbf8e3b0fa95d5f4b6ed41c72e74801869 -#68 16.78 Stored in directory: /tmp/pip-ephem-wheel-cache-3d5pskqw/wheels/83/b1/d9/119ef7c144b44d591ec0a9a140465133c23ea95d2a161184ba -#68 16.78 Successfully built moviepy -#68 16.98 Installing collected packages: pytz, pydub, websockets, urllib3, tzdata, typing-extensions, tqdm, tomlkit, sniffio, six, shellingham, semantic-version, ruff, pyyaml, python-multipart, pygments, Pillow, packaging, orjson, numpy, mdurl, markupsafe, imageio_ffmpeg, idna, h11, fsspec, filelock, ffmpy, decorator, click, charset-normalizer, certifi, annotated-types, aiofiles, uvicorn, requests, python-dateutil, pydantic-core, proglog, opencv-python, markdown-it-py, jinja2, imageio, httpcore, anyio, starlette, rich, pydantic, pandas, moviepy, huggingface-hub, httpx, typer, safehttpx, gradio-client, fastapi, gradio, gradio_pdf -#68 ... - -#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi -#69 20.60 Building wheels for collected packages: zhconv, pycollada -#69 20.67 Building wheel for zhconv (setup.py): started -#69 21.16 Building wheel for zhconv (setup.py): finished with status 'done' -#69 21.16 Created wheel for zhconv: filename=zhconv-1.4.3-py2.py3-none-any.whl size=208906 sha256=883a6f67a6066853210459ea277a51c97a8e3b2797a8dca1893f8205a8bd457d -#69 21.16 Stored in directory: /tmp/pip-ephem-wheel-cache-208saor6/wheels/05/60/2e/e39305cdeb1fb3b4083913e6f7edc635c0a47f88dacf214dba -#69 21.17 Building wheel for pycollada (setup.py): started -#69 21.52 Building wheel for pycollada (setup.py): finished with status 'done' -#69 21.52 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=3cff043f52fb93e52b3286f2d89d1404fce39c2e80091bae20c5ddcca299f8e7 -#69 21.52 Stored in directory: /tmp/pip-ephem-wheel-cache-208saor6/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 -#69 21.53 Successfully built zhconv pycollada -#69 21.84 Installing collected packages: zhconv, pytz, pydub, zipp, xxhash, wrapt, urllib3, tzdata, typing-extensions, types-pillow, tqdm, svg.path, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, pyyaml, python-multipart, pygments, pyarrow, protobuf, propcache, prometheus-client, pillow, packaging, orjson, opt_einsum, numpy, networkx, mypy-extensions, multidict, mdurl, lz4, lxml, idna, h11, grpcio, fsspec, frozenlist, filelock, dill, colorlog, click, charset-normalizer, chardet, certifi, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, uvicorn, typing-inspect, types-requests, trimesh, shapely, scipy, requests, referencing, python-dateutil, pydantic-core, opentelemetry-proto, multiprocess, ml_dtypes, markdown-it-py, mapbox_earcut, manifold3d, importlib-metadata, httpcore, googleapis-common-protos, embreex, deprecated, anyio, aiosignal, starlette, rich, pydantic, pycollada, pandas, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, jsonschema-specifications, jaxlib, huggingface-hub, httpx, aiohttp, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, jsonschema, jax, fastapi, docarray, transformers, opentelemetry-sdk, datasets, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp -#69 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 66.70 Collecting requests (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 66.74 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#54 67.00 Collecting tenacity!=8.4.0 (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 67.04 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) -#54 67.32 Collecting tqdm (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 67.36 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#54 67.39 Requirement already satisfied: typing-extensions>=4.7 in /usr/local/lib/python3.11/site-packages (from haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (4.12.2) -#54 67.63 Collecting beautifulsoup4 (from bs4->-r /home/user/comps/retrievers/src/requirements.txt (line 1)) -#54 67.67 Downloading beautifulsoup4-4.13.1-py3-none-any.whl.metadata (3.8 kB) -#54 67.92 Collecting cairocffi (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 67.96 Downloading cairocffi-1.7.1-py3-none-any.whl.metadata (3.3 kB) -#54 68.22 Collecting cssselect2 (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 68.26 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -#54 68.50 Collecting defusedxml (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 68.53 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB) -#54 68.55 Requirement already satisfied: pillow in /usr/local/lib/python3.11/site-packages (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) (11.1.0) -#54 68.81 Collecting tinycss2 (from cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 68.85 Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB) -#54 69.16 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 69.20 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) -#54 69.46 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 69.50 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) -#54 69.84 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 69.87 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#54 70.41 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 70.46 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#54 70.65 Collecting pydub<0.26.0,>=0.25.1 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 70.70 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) -#54 70.83 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 70.87 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#54 71.25 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 71.28 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) -#54 71.57 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 71.61 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) -#54 71.74 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 71.78 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#54 72.03 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 72.04 Downloading https://download.pytorch.org/whl/typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#54 72.04 Requirement already satisfied: torch in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (2.6.0+cpu) -#54 72.05 Requirement already satisfied: torchvision>=0.5 in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (0.21.0+cpu) -#54 72.35 Collecting opencv-python-headless (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 72.39 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) -#54 72.73 Collecting scipy (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 72.78 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#54 72.97 Collecting scikit-image (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 73.01 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (14 kB) -#54 73.21 Collecting python-bidi (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 73.27 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#54 73.55 Collecting Shapely (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 73.58 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) -#54 73.74 Collecting pyclipper (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 73.79 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.0 kB) -#54 73.94 Collecting ninja (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 73.97 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.metadata (5.3 kB) -#54 74.24 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/retrievers/src/requirements.txt (line 6)) -#54 74.29 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#54 74.59 Collecting POT<0.10,>=0.9 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 74.68 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) -#54 74.95 Collecting anytree<3.0.0,>=2.12.1 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 74.98 Downloading anytree-2.12.1-py3-none-any.whl.metadata (8.1 kB) -#54 75.22 Collecting beartype<0.19.0,>=0.18.5 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 75.30 Downloading beartype-0.18.5-py3-none-any.whl.metadata (30 kB) -#54 75.58 Collecting gensim<5.0.0,>=4.3.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 75.61 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB) -#54 75.88 Collecting graspologic-native<2.0.0,>=1.2.1 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 75.91 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.6 kB) -#54 76.14 Collecting hyppo<0.5.0,>=0.4.0 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 76.20 Downloading hyppo-0.4.0-py3-none-any.whl.metadata (1.7 kB) -#54 76.37 Collecting joblib<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 76.40 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) -#54 76.78 Collecting matplotlib<4.0.0,>=3.8.4 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 76.84 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB) -#54 77.19 Collecting scikit-learn<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 77.23 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) -#54 77.34 Collecting scipy (from easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 77.38 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB) -#54 77.70 Collecting seaborn<0.14.0,>=0.13.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 77.75 Downloading seaborn-0.13.2-py3-none-any.whl.metadata (5.4 kB) -#54 77.91 Collecting statsmodels<0.15.0,>=0.14.2 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 77.95 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#54 78.19 Collecting umap-learn<0.6.0,>=0.5.6 (from graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 78.25 Downloading umap_learn-0.5.7-py3-none-any.whl.metadata (21 kB) -#54 78.53 Collecting elasticsearch<9.0.0,>=8.13.1 (from elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) -#54 78.56 Downloading elasticsearch-8.17.1-py3-none-any.whl.metadata (8.8 kB) -#54 78.86 Collecting langchain-core<0.4.0,>=0.3.0 (from langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) -#54 78.91 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) -#54 79.47 Collecting aiohttp<3.11,>=3.10 (from langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 79.51 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#54 79.78 Collecting langchain-tests<0.4.0,>=0.3.7 (from langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 79.81 Downloading langchain_tests-0.3.10-py3-none-any.whl.metadata (3.6 kB) -#54 80.06 Collecting pinecone<6.0.0,>=5.4.0 (from langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 ... - -#42 [opea/dataprep:latest 2/8] RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing build-essential default-jre libgl1-mesa-glx libjemalloc-dev libreoffice poppler-utils tesseract-ocr libpq-dev libcairo2 wget -#42 DONE 93.0s - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 80.10 Downloading pinecone-5.4.2-py3-none-any.whl.metadata (19 kB) -#54 ... - -#70 [opea/dataprep:latest 3/8] RUN cd /root && wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ -#70 0.192 --2025-02-03 22:04:48-- https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz -#70 0.201 Resolving proxy-dmz.intel.com (proxy-dmz.intel.com)... 10.7.211.16 -#70 0.203 Connecting to proxy-dmz.intel.com (proxy-dmz.intel.com)|10.7.211.16|:911... connected. -#70 0.427 Proxy request sent, awaiting response... 200 OK -#70 0.503 Length: 41964060 (40M) [application/x-xz] -#70 0.503 Saving to: ‘ffmpeg-git-amd64-static.tar.xz’ -#70 0.503 -#70 0.503 0K .......... .......... .......... .......... .......... 0% 357K 1m55s -#70 0.643 50K .......... .......... .......... .......... .......... 0% 726K 85s -#70 0.712 100K .......... .......... .......... .......... .......... 0% 27.8M 57s -#70 0.714 150K .......... .......... .......... .......... .......... 0% 726K 57s -#70 0.783 200K .......... .......... .......... .......... .......... 0% 67.4M 46s -#70 0.783 250K .......... .......... .......... .......... .......... 0% 85.9M 38s -#70 0.784 300K .......... .......... .......... .......... .......... 0% 752K 40s -#70 0.851 350K .......... .......... .......... .......... .......... 0% 26.3M 35s -#70 0.852 400K .......... .......... .......... .......... .......... 1% 65.3M 32s -#70 0.853 450K .......... .......... .......... .......... .......... 1% 52.3M 28s -#70 0.854 500K .......... .......... .......... .......... .......... 1% 106M 26s -#70 0.855 550K .......... .......... .......... .......... .......... 1% 77.6M 24s -#70 0.855 600K .......... .......... .......... .......... .......... 1% 57.1M 22s -#70 0.856 650K .......... .......... .......... .......... .......... 1% 67.6M 20s -#70 0.857 700K .......... .......... .......... .......... .......... 1% 780K 22s -#70 0.921 750K .......... .......... .......... .......... .......... 1% 58.9M 21s -#70 0.922 800K .......... .......... .......... .......... .......... 2% 28.0M 20s -#70 0.923 850K .......... .......... .......... .......... .......... 2% 52.5M 19s -#70 0.924 900K .......... .......... .......... .......... .......... 2% 189M 18s -#70 0.925 950K .......... .......... .......... .......... .......... 2% 40.4M 17s -#70 0.926 1000K .......... .......... .......... .......... .......... 2% 108M 16s -#70 0.926 1050K .......... .......... .......... .......... .......... 2% 76.3M 15s -#70 0.927 1100K .......... .......... .......... .......... .......... 2% 49.1M 15s -#70 0.928 1150K .......... .......... .......... .......... .......... 2% 144M 14s -#70 0.928 1200K .......... .......... .......... .......... .......... 3% 46.5M 14s -#70 0.929 1250K .......... .......... .......... .......... .......... 3% 113M 13s -#70 0.930 1300K .......... .......... .......... .......... .......... 3% 110M 13s -#70 0.930 1350K .......... .......... .......... .......... .......... 3% 44.0M 12s -#70 0.931 1400K .......... .......... .......... .......... .......... 3% 852K 13s -#70 0.990 1450K .......... .......... .......... .......... .......... 3% 87.5M 13s -#70 0.991 1500K .......... .......... .......... .......... .......... 3% 43.5M 12s -#70 0.992 1550K .......... .......... .......... .......... .......... 3% 79.9M 12s -#70 0.992 1600K .......... .......... .......... .......... .......... 4% 260M 12s -#70 0.992 1650K .......... .......... .......... .......... .......... 4% 43.6M 11s -#70 0.994 1700K .......... .......... .......... .......... .......... 4% 81.5M 11s -#70 0.994 1750K .......... .......... .......... .......... .......... 4% 53.3M 11s -#70 0.995 1800K .......... .......... .......... .......... .......... 4% 66.2M 10s -#70 0.996 1850K .......... .......... .......... .......... .......... 4% 155M 10s -#70 0.996 1900K .......... .......... .......... .......... .......... 4% 48.0M 10s -#70 0.997 1950K .......... .......... .......... .......... .......... 4% 83.1M 10s -#70 0.998 2000K .......... .......... .......... .......... .......... 5% 61.8M 9s -#70 0.999 2050K .......... .......... .......... .......... .......... 5% 57.8M 9s -#70 0.999 2100K .......... .......... .......... .......... .......... 5% 146M 9s -#70 1.000 2150K .......... .......... .......... .......... .......... 5% 50.5M 9s -#70 1.001 2200K .......... .......... .......... .......... .......... 5% 157M 9s -#70 1.001 2250K .......... .......... .......... .......... .......... 5% 321M 8s -#70 1.001 2300K .......... .......... .......... .......... .......... 5% 163M 8s -#70 1.001 2350K .......... .......... .......... .......... .......... 5% 45.4M 8s -#70 1.002 2400K .......... .......... .......... .......... .......... 5% 158M 8s -#70 1.003 2450K .......... .......... .......... .......... .......... 6% 283M 8s -#70 1.003 2500K .......... .......... .......... .......... .......... 6% 156M 8s -#70 1.003 2550K .......... .......... .......... .......... .......... 6% 51.2M 7s -#70 1.004 2600K .......... .......... .......... .......... .......... 6% 117M 7s -#70 1.005 2650K .......... .......... .......... .......... .......... 6% 332M 7s -#70 1.005 2700K .......... .......... .......... .......... .......... 6% 911K 8s -#70 1.060 2750K .......... .......... .......... .......... .......... 6% 45.8M 8s -#70 1.061 2800K .......... .......... .......... .......... .......... 6% 304M 7s -#70 1.061 2850K .......... .......... .......... .......... .......... 7% 257M 7s -#70 1.061 2900K .......... .......... .......... .......... .......... 7% 158M 7s -#70 1.061 2950K .......... .......... .......... .......... .......... 7% 41.9M 7s -#70 1.063 3000K .......... .......... .......... .......... .......... 7% 311M 7s -#70 1.063 3050K .......... .......... .......... .......... .......... 7% 77.6M 7s -#70 1.063 3100K .......... .......... .......... .......... .......... 7% 27.4M 7s -#70 1.065 3150K .......... .......... .......... .......... .......... 7% 319M 7s -#70 1.065 3200K .......... .......... .......... .......... .......... 7% 271M 7s -#70 1.065 3250K .......... .......... .......... .......... .......... 8% 113M 6s -#70 1.066 3300K .......... .......... .......... .......... .......... 8% 46.4M 6s -#70 1.067 3350K .......... .......... .......... .......... .......... 8% 225M 6s -#70 1.067 3400K .......... .......... .......... .......... .......... 8% 292M 6s -#70 1.067 3450K .......... .......... .......... .......... .......... 8% 117M 6s -#70 1.068 3500K .......... .......... .......... .......... .......... 8% 49.1M 6s -#70 1.069 3550K .......... .......... .......... .......... .......... 8% 230M 6s -#70 1.069 3600K .......... .......... .......... .......... .......... 8% 262M 6s -#70 1.069 3650K .......... .......... .......... .......... .......... 9% 129M 6s -#70 1.070 3700K .......... .......... .......... .......... .......... 9% 48.6M 6s -#70 1.071 3750K .......... .......... .......... .......... .......... 9% 177M 6s -#70 1.071 3800K .......... .......... .......... .......... .......... 9% 302M 5s -#70 1.071 3850K .......... .......... .......... .......... .......... 9% 130M 5s -#70 1.071 3900K .......... .......... .......... .......... .......... 9% 61.1M 5s -#70 1.072 3950K .......... .......... .......... .......... .......... 9% 103M 5s -#70 1.073 4000K .......... .......... .......... .......... .......... 9% 308M 5s -#70 1.073 4050K .......... .......... .......... .......... .......... 10% 135M 5s -#70 1.073 4100K .......... .......... .......... .......... .......... 10% 59.2M 5s -#70 1.074 4150K .......... .......... .......... .......... .......... 10% 116M 5s -#70 1.074 4200K .......... .......... .......... .......... .......... 10% 247M 5s -#70 1.075 4250K .......... .......... .......... .......... .......... 10% 214M 5s -#70 1.075 4300K .......... .......... .......... .......... .......... 10% 226M 5s -#70 1.075 4350K .......... .......... .......... .......... .......... 10% 73.5M 5s -#70 1.076 4400K .......... .......... .......... .......... .......... 10% 90.1M 5s -#70 1.076 4450K .......... .......... .......... .......... .......... 10% 263M 5s -#70 1.076 4500K .......... .......... .......... .......... .......... 11% 243M 5s -#70 1.077 4550K .......... .......... .......... .......... .......... 11% 189M 5s -#70 1.077 4600K .......... .......... .......... .......... .......... 11% 81.1M 4s -#70 1.077 4650K .......... .......... .......... .......... .......... 11% 93.8M 4s -#70 1.078 4700K .......... .......... .......... .......... .......... 11% 213M 4s -#70 1.078 4750K .......... .......... .......... .......... .......... 11% 205M 4s -#70 1.078 4800K .......... .......... .......... .......... .......... 11% 207M 4s -#70 1.079 4850K .......... .......... .......... .......... .......... 11% 71.2M 4s -#70 1.079 4900K .......... .......... .......... .......... .......... 12% 101M 4s -#70 1.080 4950K .......... .......... .......... .......... .......... 12% 190M 4s -#70 1.080 5000K .......... .......... .......... .......... .......... 12% 331M 4s -#70 1.080 5050K .......... .......... .......... .......... .......... 12% 165M 4s -#70 1.081 5100K .......... .......... .......... .......... .......... 12% 95.4M 4s -#70 1.081 5150K .......... .......... .......... .......... .......... 12% 71.9M 4s -#70 1.082 5200K .......... .......... .......... .......... .......... 12% 178M 4s -#70 1.082 5250K .......... .......... .......... .......... .......... 12% 332M 4s -#70 1.082 5300K .......... .......... .......... .......... .......... 13% 271M 4s -#70 1.082 5350K .......... .......... .......... .......... .......... 13% 109M 4s -#70 1.083 5400K .......... .......... .......... .......... .......... 13% 60.5M 4s -#70 1.084 5450K .......... .......... .......... .......... .......... 13% 1.07M 4s -#70 1.129 5500K .......... .......... .......... .......... .......... 13% 49.0M 4s -#70 1.130 5550K .......... .......... .......... .......... .......... 13% 224M 4s -#70 1.131 5600K .......... .......... .......... .......... .......... 13% 256M 4s -#70 1.131 5650K .......... .......... .......... .......... .......... 13% 68.2M 4s -#70 1.131 5700K .......... .......... .......... .......... .......... 14% 262M 4s -#70 1.132 5750K .......... .......... .......... .......... .......... 14% 97.6M 4s -#70 1.132 5800K .......... .......... .......... .......... .......... 14% 217M 4s -#70 1.132 5850K .......... .......... .......... .......... .......... 14% 271M 4s -#70 1.133 5900K .......... .......... .......... .......... .......... 14% 63.9M 4s -#70 1.133 5950K .......... .......... .......... .......... .......... 14% 256M 4s -#70 1.134 6000K .......... .......... .......... .......... .......... 14% 115M 4s -#70 1.134 6050K .......... .......... .......... .......... .......... 14% 175M 4s -#70 1.134 6100K .......... .......... .......... .......... .......... 15% 213M 4s -#70 1.134 6150K .......... .......... .......... .......... .......... 15% 74.7M 4s -#70 1.135 6200K .......... .......... .......... .......... .......... 15% 159M 4s -#70 1.135 6250K .......... .......... .......... .......... .......... 15% 125M 3s -#70 1.136 6300K .......... .......... .......... .......... .......... 15% 183M 3s -#70 1.136 6350K .......... .......... .......... .......... .......... 15% 262M 3s -#70 1.136 6400K .......... .......... .......... .......... .......... 15% 74.9M 3s -#70 1.137 6450K .......... .......... .......... .......... .......... 15% 148M 3s -#70 1.137 6500K .......... .......... .......... .......... .......... 15% 119M 3s -#70 1.138 6550K .......... .......... .......... .......... .......... 16% 201M 3s -#70 1.138 6600K .......... .......... .......... .......... .......... 16% 268M 3s -#70 1.138 6650K .......... .......... .......... .......... .......... 16% 81.4M 3s -#70 1.139 6700K .......... .......... .......... .......... .......... 16% 136M 3s -#70 1.139 6750K .......... .......... .......... .......... .......... 16% 162M 3s -#70 1.139 6800K .......... .......... .......... .......... .......... 16% 149M 3s -#70 1.140 6850K .......... .......... .......... .......... .......... 16% 220M 3s -#70 1.140 6900K .......... .......... .......... .......... .......... 16% 97.5M 3s -#70 1.140 6950K .......... .......... .......... .......... .......... 17% 94.5M 3s -#70 1.141 7000K .......... .......... .......... .......... .......... 17% 194M 3s -#70 1.141 7050K .......... .......... .......... .......... .......... 17% 263M 3s -#70 1.141 7100K .......... .......... .......... .......... .......... 17% 285M 3s -#70 1.142 7150K .......... .......... .......... .......... .......... 17% 339M 3s -#70 1.142 7200K .......... .......... .......... .......... .......... 17% 91.8M 3s -#70 1.142 7250K .......... .......... .......... .......... .......... 17% 117M 3s -#70 1.143 7300K .......... .......... .......... .......... .......... 17% 188M 3s -#70 1.143 7350K .......... .......... .......... .......... .......... 18% 175M 3s -#70 1.143 7400K .......... .......... .......... .......... .......... 18% 323M 3s -#70 1.143 7450K .......... .......... .......... .......... .......... 18% 276M 3s -#70 1.143 7500K .......... .......... .......... .......... .......... 18% 84.3M 3s -#70 1.144 7550K .......... .......... .......... .......... .......... 18% 179M 3s -#70 1.144 7600K .......... .......... .......... .......... .......... 18% 163M 3s -#70 1.145 7650K .......... .......... .......... .......... .......... 18% 183M 3s -#70 1.145 7700K .......... .......... .......... .......... .......... 18% 189M 3s -#70 1.145 7750K .......... .......... .......... .......... .......... 19% 291M 3s -#70 1.145 7800K .......... .......... .......... .......... .......... 19% 95.8M 3s -#70 1.146 7850K .......... .......... .......... .......... .......... 19% 263M 3s -#70 1.146 7900K .......... .......... .......... .......... .......... 19% 149M 3s -#70 1.146 7950K .......... .......... .......... .......... .......... 19% 165M 3s -#70 1.147 8000K .......... .......... .......... .......... .......... 19% 159M 3s -#70 1.147 8050K .......... .......... .......... .......... .......... 19% 302M 3s -#70 1.147 8100K .......... .......... .......... .......... .......... 19% 140M 3s -#70 1.147 8150K .......... .......... .......... .......... .......... 20% 157M 3s -#70 1.148 8200K .......... .......... .......... .......... .......... 20% 113M 3s -#70 1.148 8250K .......... .......... .......... .......... .......... 20% 273M 3s -#70 1.148 8300K .......... .......... .......... .......... .......... 20% 189M 3s -#70 1.149 8350K .......... .......... .......... .......... .......... 20% 188M 3s -#70 1.149 8400K .......... .......... .......... .......... .......... 20% 131M 2s -#70 1.149 8450K .......... .......... .......... .......... .......... 20% 129M 2s -#70 1.150 8500K .......... .......... .......... .......... .......... 20% 144M 2s -#70 1.150 8550K .......... .......... .......... .......... .......... 20% 251M 2s -#70 1.150 8600K .......... .......... .......... .......... .......... 21% 151M 2s -#70 1.151 8650K .......... .......... .......... .......... .......... 21% 193M 2s -#70 1.151 8700K .......... .......... .......... .......... .......... 21% 247M 2s -#70 1.151 8750K .......... .......... .......... .......... .......... 21% 318M 2s -#70 1.151 8800K .......... .......... .......... .......... .......... 21% 345M 2s -#70 1.151 8850K .......... .......... .......... .......... .......... 21% 266M 2s -#70 1.151 8900K .......... .......... .......... .......... .......... 21% 162M 2s -#70 1.152 8950K .......... .......... .......... .......... .......... 21% 161M 2s -#70 1.152 9000K .......... .......... .......... .......... .......... 22% 194M 2s -#70 1.152 9050K .......... .......... .......... .......... .......... 22% 207M 2s -#70 1.153 9100K .......... .......... .......... .......... .......... 22% 141M 2s -#70 1.153 9150K .......... .......... .......... .......... .......... 22% 328M 2s -#70 1.153 9200K .......... .......... .......... .......... .......... 22% 271M 2s -#70 1.153 9250K .......... .......... .......... .......... .......... 22% 326M 2s -#70 1.153 9300K .......... .......... .......... .......... .......... 22% 299M 2s -#70 1.154 9350K .......... .......... .......... .......... .......... 22% 117M 2s -#70 1.154 9400K .......... .......... .......... .......... .......... 23% 311M 2s -#70 1.154 9450K .......... .......... .......... .......... .......... 23% 185M 2s -#70 1.154 9500K .......... .......... .......... .......... .......... 23% 211M 2s -#70 1.155 9550K .......... .......... .......... .......... .......... 23% 259M 2s -#70 1.155 9600K .......... .......... .......... .......... .......... 23% 280M 2s -#70 1.155 9650K .......... .......... .......... .......... .......... 23% 332M 2s -#70 1.155 9700K .......... .......... .......... .......... .......... 23% 149M 2s -#70 1.155 9750K .......... .......... .......... .......... .......... 23% 173M 2s -#70 1.156 9800K .......... .......... .......... .......... .......... 24% 243M 2s -#70 1.156 9850K .......... .......... .......... .......... .......... 24% 236M 2s -#70 1.156 9900K .......... .......... .......... .......... .......... 24% 181M 2s -#70 1.156 9950K .......... .......... .......... .......... .......... 24% 265M 2s -#70 1.157 10000K .......... .......... .......... .......... .......... 24% 308M 2s -#70 1.157 10050K .......... .......... .......... .......... .......... 24% 299M 2s -#70 1.157 10100K .......... .......... .......... .......... .......... 24% 189M 2s -#70 1.157 10150K .......... .......... .......... .......... .......... 24% 128M 2s -#70 1.158 10200K .......... .......... .......... .......... .......... 25% 177M 2s -#70 1.158 10250K .......... .......... .......... .......... .......... 25% 300M 2s -#70 1.158 10300K .......... .......... .......... .......... .......... 25% 220M 2s -#70 1.158 10350K .......... .......... .......... .......... .......... 25% 255M 2s -#70 1.158 10400K .......... .......... .......... .......... .......... 25% 273M 2s -#70 1.159 10450K .......... .......... .......... .......... .......... 25% 287M 2s -#70 1.159 10500K .......... .......... .......... .......... .......... 25% 152M 2s -#70 1.159 10550K .......... .......... .......... .......... .......... 25% 203M 2s -#70 1.159 10600K .......... .......... .......... .......... .......... 25% 177M 2s -#70 1.160 10650K .......... .......... .......... .......... .......... 26% 180M 2s -#70 1.160 10700K .......... .......... .......... .......... .......... 26% 231M 2s -#70 1.160 10750K .......... .......... .......... .......... .......... 26% 262M 2s -#70 1.160 10800K .......... .......... .......... .......... .......... 26% 337M 2s -#70 1.160 10850K .......... .......... .......... .......... .......... 26% 163M 2s -#70 1.161 10900K .......... .......... .......... .......... .......... 26% 308M 2s -#70 1.161 10950K .......... .......... .......... .......... .......... 26% 1.27M 2s -#70 1.199 11000K .......... .......... .......... .......... .......... 26% 238M 2s -#70 1.199 11050K .......... .......... .......... .......... .......... 27% 49.7M 2s -#70 1.200 11100K .......... .......... .......... .......... .......... 27% 140M 2s -#70 1.201 11150K .......... .......... .......... .......... .......... 27% 309M 2s -#70 1.201 11200K .......... .......... .......... .......... .......... 27% 148M 2s -#70 1.201 11250K .......... .......... .......... .......... .......... 27% 289M 2s -#70 1.201 11300K .......... .......... .......... .......... .......... 27% 309M 2s -#70 1.202 11350K .......... .......... .......... .......... .......... 27% 268M 2s -#70 1.202 11400K .......... .......... .......... .......... .......... 27% 336M 2s -#70 1.202 11450K .......... .......... .......... .......... .......... 28% 295M 2s -#70 1.202 11500K .......... .......... .......... .......... .......... 28% 325M 2s -#70 1.202 11550K .......... .......... .......... .......... .......... 28% 213M 2s -#70 1.202 11600K .......... .......... .......... .......... .......... 28% 121M 2s -#70 1.203 11650K .......... .......... .......... .......... .......... 28% 315M 2s -#70 1.203 11700K .......... .......... .......... .......... .......... 28% 238M 2s -#70 1.203 11750K .......... .......... .......... .......... .......... 28% 317M 2s -#70 1.203 11800K .......... .......... .......... .......... .......... 28% 300M 2s -#70 1.203 11850K .......... .......... .......... .......... .......... 29% 243M 2s -#70 1.204 11900K .......... .......... .......... .......... .......... 29% 308M 2s -#70 1.204 11950K .......... .......... .......... .......... .......... 29% 301M 2s -#70 1.204 12000K .......... .......... .......... .......... .......... 29% 345M 2s -#70 1.204 12050K .......... .......... .......... .......... .......... 29% 285M 2s -#70 1.204 12100K .......... .......... .......... .......... .......... 29% 104M 2s -#70 1.205 12150K .......... .......... .......... .......... .......... 29% 243M 2s -#70 1.205 12200K .......... .......... .......... .......... .......... 29% 251M 2s -#70 1.205 12250K .......... .......... .......... .......... .......... 30% 271M 2s -#70 1.205 12300K .......... .......... .......... .......... .......... 30% 302M 2s -#70 1.206 12350K .......... .......... .......... .......... .......... 30% 247M 2s -#70 1.206 12400K .......... .......... .......... .......... .......... 30% 324M 2s -#70 1.206 12450K .......... .......... .......... .......... .......... 30% 299M 2s -#70 1.206 12500K .......... .......... .......... .......... .......... 30% 341M 2s -#70 1.206 12550K .......... .......... .......... .......... .......... 30% 204M 2s -#70 1.206 12600K .......... .......... .......... .......... .......... 30% 108M 2s -#70 1.207 12650K .......... .......... .......... .......... .......... 30% 290M 2s -#70 1.207 12700K .......... .......... .......... .......... .......... 31% 151M 2s -#70 1.207 12750K .......... .......... .......... .......... .......... 31% 306M 2s -#70 1.208 12800K .......... .......... .......... .......... .......... 31% 289M 2s -#70 1.208 12850K .......... .......... .......... .......... .......... 31% 242M 2s -#70 1.208 12900K .......... .......... .......... .......... .......... 31% 332M 2s -#70 1.208 12950K .......... .......... .......... .......... .......... 31% 296M 2s -#70 1.208 13000K .......... .......... .......... .......... .......... 31% 328M 2s -#70 1.208 13050K .......... .......... .......... .......... .......... 31% 331M 2s -#70 1.209 13100K .......... .......... .......... .......... .......... 32% 91.3M 1s -#70 1.209 13150K .......... .......... .......... .......... .......... 32% 342M 1s -#70 1.209 13200K .......... .......... .......... .......... .......... 32% 148M 1s -#70 1.210 13250K .......... .......... .......... .......... .......... 32% 322M 1s -#70 1.210 13300K .......... .......... .......... .......... .......... 32% 319M 1s -#70 1.210 13350K .......... .......... .......... .......... .......... 32% 233M 1s -#70 1.210 13400K .......... .......... .......... .......... .......... 32% 306M 1s -#70 1.210 13450K .......... .......... .......... .......... .......... 32% 7.40M 1s -#70 1.217 13500K .......... .......... .......... .......... .......... 33% 283M 1s -#70 1.217 13550K .......... .......... .......... .......... .......... 33% 279M 1s -#70 1.217 13600K .......... .......... .......... .......... .......... 33% 271M 1s -#70 1.217 13650K .......... .......... .......... .......... .......... 33% 333M 1s -#70 1.217 13700K .......... .......... .......... .......... .......... 33% 285M 1s -#70 1.218 13750K .......... .......... .......... .......... .......... 33% 328M 1s -#70 1.218 13800K .......... .......... .......... .......... .......... 33% 346M 1s -#70 1.218 13850K .......... .......... .......... .......... .......... 33% 277M 1s -#70 1.218 13900K .......... .......... .......... .......... .......... 34% 343M 1s -#70 1.218 13950K .......... .......... .......... .......... .......... 34% 23.8M 1s -#70 1.220 14000K .......... .......... .......... .......... .......... 34% 267M 1s -#70 1.220 14050K .......... .......... .......... .......... .......... 34% 287M 1s -#70 1.221 14100K .......... .......... .......... .......... .......... 34% 253M 1s -#70 1.221 14150K .......... .......... .......... .......... .......... 34% 339M 1s -#70 1.221 14200K .......... .......... .......... .......... .......... 34% 288M 1s -#70 1.221 14250K .......... .......... .......... .......... .......... 34% 344M 1s -#70 1.221 14300K .......... .......... .......... .......... .......... 35% 347M 1s -#70 1.221 14350K .......... .......... .......... .......... .......... 35% 295M 1s -#70 1.222 14400K .......... .......... .......... .......... .......... 35% 331M 1s -#70 1.222 14450K .......... .......... .......... .......... .......... 35% 129M 1s -#70 1.222 14500K .......... .......... .......... .......... .......... 35% 314M 1s -#70 1.222 14550K .......... .......... .......... .......... .......... 35% 303M 1s -#70 1.222 14600K .......... .......... .......... .......... .......... 35% 265M 1s -#70 1.223 14650K .......... .......... .......... .......... .......... 35% 332M 1s -#70 1.223 14700K .......... .......... .......... .......... .......... 35% 278M 1s -#70 1.223 14750K .......... .......... .......... .......... .......... 36% 320M 1s -#70 1.223 14800K .......... .......... .......... .......... .......... 36% 338M 1s -#70 1.223 14850K .......... .......... .......... .......... .......... 36% 296M 1s -#70 1.223 14900K .......... .......... .......... .......... .......... 36% 336M 1s -#70 1.224 14950K .......... .......... .......... .......... .......... 36% 138M 1s -#70 1.224 15000K .......... .......... .......... .......... .......... 36% 313M 1s -#70 1.224 15050K .......... .......... .......... .......... .......... 36% 264M 1s -#70 1.224 15100K .......... .......... .......... .......... .......... 36% 232M 1s -#70 1.224 15150K .......... .......... .......... .......... .......... 37% 312M 1s -#70 1.225 15200K .......... .......... .......... .......... .......... 37% 275M 1s -#70 1.225 15250K .......... .......... .......... .......... .......... 37% 339M 1s -#70 1.225 15300K .......... .......... .......... .......... .......... 37% 356M 1s -#70 1.225 15350K .......... .......... .......... .......... .......... 37% 298M 1s -#70 1.225 15400K .......... .......... .......... .......... .......... 37% 318M 1s -#70 1.225 15450K .......... .......... .......... .......... .......... 37% 126M 1s -#70 1.226 15500K .......... .......... .......... .......... .......... 37% 335M 1s -#70 1.226 15550K .......... .......... .......... .......... .......... 38% 295M 1s -#70 1.226 15600K .......... .......... .......... .......... .......... 38% 271M 1s -#70 1.226 15650K .......... .......... .......... .......... .......... 38% 303M 1s -#70 1.226 15700K .......... .......... .......... .......... .......... 38% 255M 1s -#70 1.227 15750K .......... .......... .......... .......... .......... 38% 329M 1s -#70 1.227 15800K .......... .......... .......... .......... .......... 38% 346M 1s -#70 1.227 15850K .......... .......... .......... .......... .......... 38% 295M 1s -#70 1.227 15900K .......... .......... .......... .......... .......... 38% 324M 1s -#70 1.227 15950K .......... .......... .......... .......... .......... 39% 113M 1s -#70 1.228 16000K .......... .......... .......... .......... .......... 39% 294M 1s -#70 1.228 16050K .......... .......... .......... .......... .......... 39% 161M 1s -#70 1.228 16100K .......... .......... .......... .......... .......... 39% 271M 1s -#70 1.228 16150K .......... .......... .......... .......... .......... 39% 327M 1s -#70 1.228 16200K .......... .......... .......... .......... .......... 39% 265M 1s -#70 1.229 16250K .......... .......... .......... .......... .......... 39% 313M 1s -#70 1.229 16300K .......... .......... .......... .......... .......... 39% 329M 1s -#70 1.229 16350K .......... .......... .......... .......... .......... 40% 263M 1s -#70 1.229 16400K .......... .......... .......... .......... .......... 40% 145M 1s -#70 1.229 16450K .......... .......... .......... .......... .......... 40% 286M 1s -#70 1.230 16500K .......... .......... .......... .......... .......... 40% 326M 1s -#70 1.230 16550K .......... .......... .......... .......... .......... 40% 150M 1s -#70 1.230 16600K .......... .......... .......... .......... .......... 40% 255M 1s -#70 1.230 16650K .......... .......... .......... .......... .......... 40% 314M 1s -#70 1.230 16700K .......... .......... .......... .......... .......... 40% 284M 1s -#70 1.231 16750K .......... .......... .......... .......... .......... 40% 332M 1s -#70 1.231 16800K .......... .......... .......... .......... .......... 41% 328M 1s -#70 1.231 16850K .......... .......... .......... .......... .......... 41% 290M 1s -#70 1.231 16900K .......... .......... .......... .......... .......... 41% 328M 1s -#70 1.231 16950K .......... .......... .......... .......... .......... 41% 283M 1s -#70 1.231 17000K .......... .......... .......... .......... .......... 41% 318M 1s -#70 1.232 17050K .......... .......... .......... .......... .......... 41% 121M 1s -#70 1.232 17100K .......... .......... .......... .......... .......... 41% 278M 1s -#70 1.232 17150K .......... .......... .......... .......... .......... 41% 338M 1s -#70 1.232 17200K .......... .......... .......... .......... .......... 42% 250M 1s -#70 1.233 17250K .......... .......... .......... .......... .......... 42% 315M 1s -#70 1.233 17300K .......... .......... .......... .......... .......... 42% 323M 1s -#70 1.233 17350K .......... .......... .......... .......... .......... 42% 275M 1s -#70 1.233 17400K .......... .......... .......... .......... .......... 42% 298M 1s -#70 1.233 17450K .......... .......... .......... .......... .......... 42% 270M 1s -#70 1.233 17500K .......... .......... .......... .......... .......... 42% 158M 1s -#70 1.234 17550K .......... .......... .......... .......... .......... 42% 205M 1s -#70 1.234 17600K .......... .......... .......... .......... .......... 43% 254M 1s -#70 1.234 17650K .......... .......... .......... .......... .......... 43% 314M 1s -#70 1.234 17700K .......... .......... .......... .......... .......... 43% 267M 1s -#70 1.234 17750K .......... .......... .......... .......... .......... 43% 341M 1s -#70 1.235 17800K .......... .......... .......... .......... .......... 43% 352M 1s -#70 1.235 17850K .......... .......... .......... .......... .......... 43% 281M 1s -#70 1.235 17900K .......... .......... .......... .......... .......... 43% 186M 1s -#70 1.235 17950K .......... .......... .......... .......... .......... 43% 274M 1s -#70 1.235 18000K .......... .......... .......... .......... .......... 44% 235M 1s -#70 1.236 18050K .......... .......... .......... .......... .......... 44% 146M 1s -#70 1.236 18100K .......... .......... .......... .......... .......... 44% 275M 1s -#70 1.236 18150K .......... .......... .......... .......... .......... 44% 295M 1s -#70 1.236 18200K .......... .......... .......... .......... .......... 44% 288M 1s -#70 1.236 18250K .......... .......... .......... .......... .......... 44% 337M 1s -#70 1.237 18300K .......... .......... .......... .......... .......... 44% 340M 1s -#70 1.237 18350K .......... .......... .......... .......... .......... 44% 282M 1s -#70 1.237 18400K .......... .......... .......... .......... .......... 45% 204M 1s -#70 1.237 18450K .......... .......... .......... .......... .......... 45% 274M 1s -#70 1.237 18500K .......... .......... .......... .......... .......... 45% 339M 1s -#70 1.237 18550K .......... .......... .......... .......... .......... 45% 155M 1s -#70 1.238 18600K .......... .......... .......... .......... .......... 45% 266M 1s -#70 1.238 18650K .......... .......... .......... .......... .......... 45% 1005K 1s -#70 1.288 18700K .......... .......... .......... .......... .......... 45% 198M 1s -#70 1.288 18750K .......... .......... .......... .......... .......... 45% 313M 1s -#70 1.288 18800K .......... .......... .......... .......... .......... 45% 301M 1s -#70 1.288 18850K .......... .......... .......... .......... .......... 46% 244M 1s -#70 1.288 18900K .......... .......... .......... .......... .......... 46% 294M 1s -#70 1.289 18950K .......... .......... .......... .......... .......... 46% 188M 1s -#70 1.289 19000K .......... .......... .......... .......... .......... 46% 179M 1s -#70 1.289 19050K .......... .......... .......... .......... .......... 46% 285M 1s -#70 1.289 19100K .......... .......... .......... .......... .......... 46% 265M 1s -#70 1.289 19150K .......... .......... .......... .......... .......... 46% 270M 1s -#70 1.290 19200K .......... .......... .......... .......... .......... 46% 283M 1s -#70 1.290 19250K .......... .......... .......... .......... .......... 47% 306M 1s -#70 1.290 19300K .......... .......... .......... .......... .......... 47% 323M 1s -#70 1.290 19350K .......... .......... .......... .......... .......... 47% 229M 1s -#70 1.290 19400K .......... .......... .......... .......... .......... 47% 58.4M 1s -#70 1.291 19450K .......... .......... .......... .......... .......... 47% 180M 1s -#70 1.291 19500K .......... .......... .......... .......... .......... 47% 117M 1s -#70 1.292 19550K .......... .......... .......... .......... .......... 47% 227M 1s -#70 1.292 19600K .......... .......... .......... .......... .......... 47% 176M 1s -#70 1.292 19650K .......... .......... .......... .......... .......... 48% 312M 1s -#70 1.292 19700K .......... .......... .......... .......... .......... 48% 209M 1s -#70 1.293 19750K .......... .......... .......... .......... .......... 48% 220M 1s -#70 1.293 19800K .......... .......... .......... .......... .......... 48% 276M 1s -#70 1.293 19850K .......... .......... .......... .......... .......... 48% 196M 1s -#70 1.293 19900K .......... .......... .......... .......... .......... 48% 203M 1s -#70 1.294 19950K .......... .......... .......... .......... .......... 48% 127M 1s -#70 1.294 20000K .......... .......... .......... .......... .......... 48% 160M 1s -#70 1.294 20050K .......... .......... .......... .......... .......... 49% 321M 1s -#70 1.294 20100K .......... .......... .......... .......... .......... 49% 233M 1s -#70 1.295 20150K .......... .......... .......... .......... .......... 49% 306M 1s -#70 1.295 20200K .......... .......... .......... .......... .......... 49% 275M 1s -#70 1.295 20250K .......... .......... .......... .......... .......... 49% 303M 1s -#70 1.295 20300K .......... .......... .......... .......... .......... 49% 308M 1s -#70 1.295 20350K .......... .......... .......... .......... .......... 49% 285M 1s -#70 1.295 20400K .......... .......... .......... .......... .......... 49% 74.4M 1s -#70 1.296 20450K .......... .......... .......... .......... .......... 50% 206M 1s -#70 1.296 20500K .......... .......... .......... .......... .......... 50% 229M 1s -#70 1.297 20550K .......... .......... .......... .......... .......... 50% 302M 1s -#70 1.297 20600K .......... .......... .......... .......... .......... 50% 260M 1s -#70 1.297 20650K .......... .......... .......... .......... .......... 50% 231M 1s -#70 1.297 20700K .......... .......... .......... .......... .......... 50% 134M 1s -#70 1.298 20750K .......... .......... .......... .......... .......... 50% 309M 1s -#70 1.298 20800K .......... .......... .......... .......... .......... 50% 220M 1s -#70 1.298 20850K .......... .......... .......... .......... .......... 50% 159M 1s -#70 1.298 20900K .......... .......... .......... .......... .......... 51% 312M 1s -#70 1.298 20950K .......... .......... .......... .......... .......... 51% 137M 1s -#70 1.299 21000K .......... .......... .......... .......... .......... 51% 319M 1s -#70 1.299 21050K .......... .......... .......... .......... .......... 51% 320M 1s -#70 1.299 21100K .......... .......... .......... .......... .......... 51% 260M 1s -#70 1.299 21150K .......... .......... .......... .......... .......... 51% 307M 1s -#70 1.299 21200K .......... .......... .......... .......... .......... 51% 277M 1s -#70 1.300 21250K .......... .......... .......... .......... .......... 51% 279M 1s -#70 1.300 21300K .......... .......... .......... .......... .......... 52% 329M 1s -#70 1.300 21350K .......... .......... .......... .......... .......... 52% 233M 1s -#70 1.300 21400K .......... .......... .......... .......... .......... 52% 149M 1s -#70 1.300 21450K .......... .......... .......... .......... .......... 52% 170M 1s -#70 1.301 21500K .......... .......... .......... .......... .......... 52% 172M 1s -#70 1.301 21550K .......... .......... .......... .......... .......... 52% 140M 1s -#70 1.301 21600K .......... .......... .......... .......... .......... 52% 270M 1s -#70 1.302 21650K .......... .......... .......... .......... .......... 52% 282M 1s -#70 1.302 21700K .......... .......... .......... .......... .......... 53% 208M 1s -#70 1.302 21750K .......... .......... .......... .......... .......... 53% 172M 1s -#70 1.302 21800K .......... .......... .......... .......... .......... 53% 233M 1s -#70 1.302 21850K .......... .......... .......... .......... .......... 53% 126M 1s -#70 1.303 21900K .......... .......... .......... .......... .......... 53% 319M 1s -#70 1.303 21950K .......... .......... .......... .......... .......... 53% 283M 1s -#70 1.303 22000K .......... .......... .......... .......... .......... 53% 322M 1s -#70 1.303 22050K .......... .......... .......... .......... .......... 53% 344M 1s -#70 1.303 22100K .......... .......... .......... .......... .......... 54% 268M 1s -#70 1.304 22150K .......... .......... .......... .......... .......... 54% 329M 1s -#70 1.304 22200K .......... .......... .......... .......... .......... 54% 175M 1s -#70 1.304 22250K .......... .......... .......... .......... .......... 54% 299M 1s -#70 1.304 22300K .......... .......... .......... .......... .......... 54% 145M 1s -#70 1.305 22350K .......... .......... .......... .......... .......... 54% 267M 1s -#70 1.305 22400K .......... .......... .......... .......... .......... 54% 323M 1s -#70 1.305 22450K .......... .......... .......... .......... .......... 54% 186M 1s -#70 1.305 22500K .......... .......... .......... .......... .......... 55% 318M 1s -#70 1.305 22550K .......... .......... .......... .......... .......... 55% 310M 1s -#70 1.305 22600K .......... .......... .......... .......... .......... 55% 285M 1s -#70 1.306 22650K .......... .......... .......... .......... .......... 55% 339M 1s -#70 1.306 22700K .......... .......... .......... .......... .......... 55% 234M 1s -#70 1.306 22750K .......... .......... .......... .......... .......... 55% 295M 1s -#70 1.306 22800K .......... .......... .......... .......... .......... 55% 219M 1s -#70 1.306 22850K .......... .......... .......... .......... .......... 55% 265M 1s -#70 1.307 22900K .......... .......... .......... .......... .......... 56% 326M 1s -#70 1.307 22950K .......... .......... .......... .......... .......... 56% 139M 1s -#70 1.307 23000K .......... .......... .......... .......... .......... 56% 301M 1s -#70 1.307 23050K .......... .......... .......... .......... .......... 56% 306M 1s -#70 1.307 23100K .......... .......... .......... .......... .......... 56% 296M 1s -#70 1.308 23150K .......... .......... .......... .......... .......... 56% 335M 1s -#70 1.308 23200K .......... .......... .......... .......... .......... 56% 178M 1s -#70 1.308 23250K .......... .......... .......... .......... .......... 56% 315M 1s -#70 1.308 23300K .......... .......... .......... .......... .......... 56% 320M 1s -#70 1.308 23350K .......... .......... .......... .......... .......... 57% 265M 1s -#70 1.308 23400K .......... .......... .......... .......... .......... 57% 306M 1s -#70 1.309 23450K .......... .......... .......... .......... .......... 57% 178M 1s -#70 1.309 23500K .......... .......... .......... .......... .......... 57% 287M 1s -#70 1.309 23550K .......... .......... .......... .......... .......... 57% 300M 1s -#70 1.309 23600K .......... .......... .......... .......... .......... 57% 296M 1s -#70 1.309 23650K .......... .......... .......... .......... .......... 57% 353M 1s -#70 1.310 23700K .......... .......... .......... .......... .......... 57% 191M 1s -#70 1.310 23750K .......... .......... .......... .......... .......... 58% 297M 1s -#70 1.310 23800K .......... .......... .......... .......... .......... 58% 161M 1s -#70 1.310 23850K .......... .......... .......... .......... .......... 58% 283M 1s -#70 1.310 23900K .......... .......... .......... .......... .......... 58% 298M 1s -#70 1.311 23950K .......... .......... .......... .......... .......... 58% 191M 1s -#70 1.311 24000K .......... .......... .......... .......... .......... 58% 290M 1s -#70 1.311 24050K .......... .......... .......... .......... .......... 58% 324M 1s -#70 1.311 24100K .......... .......... .......... .......... .......... 58% 262M 1s -#70 1.311 24150K .......... .......... .......... .......... .......... 59% 336M 1s -#70 1.311 24200K .......... .......... .......... .......... .......... 59% 289M 1s -#70 1.312 24250K .......... .......... .......... .......... .......... 59% 297M 1s -#70 1.312 24300K .......... .......... .......... .......... .......... 59% 157M 1s -#70 1.312 24350K .......... .......... .......... .......... .......... 59% 275M 1s -#70 1.312 24400K .......... .......... .......... .......... .......... 59% 319M 1s -#70 1.312 24450K .......... .......... .......... .......... .......... 59% 271M 1s -#70 1.313 24500K .......... .......... .......... .......... .......... 59% 282M 1s -#70 1.313 24550K .......... .......... .......... .......... .......... 60% 333M 1s -#70 1.313 24600K .......... .......... .......... .......... .......... 60% 165M 1s -#70 1.313 24650K .......... .......... .......... .......... .......... 60% 303M 1s -#70 1.313 24700K .......... .......... .......... .......... .......... 60% 280M 1s -#70 1.314 24750K .......... .......... .......... .......... .......... 60% 308M 1s -#70 1.314 24800K .......... .......... .......... .......... .......... 60% 898K 1s -#70 1.369 24850K .......... .......... .......... .......... .......... 60% 117M 1s -#70 1.370 24900K .......... .......... .......... .......... .......... 60% 278M 1s -#70 1.370 24950K .......... .......... .......... .......... .......... 61% 277M 1s -#70 1.370 25000K .......... .......... .......... .......... .......... 61% 309M 1s -#70 1.370 25050K .......... .......... .......... .......... .......... 61% 301M 1s -#70 1.370 25100K .......... .......... .......... .......... .......... 61% 266M 1s -#70 1.371 25150K .......... .......... .......... .......... .......... 61% 331M 1s -#70 1.371 25200K .......... .......... .......... .......... .......... 61% 254M 1s -#70 1.371 25250K .......... .......... .......... .......... .......... 61% 250M 1s -#70 1.371 25300K .......... .......... .......... .......... .......... 61% 331M 1s -#70 1.371 25350K .......... .......... .......... .......... .......... 61% 207M 1s -#70 1.372 25400K .......... .......... .......... .......... .......... 62% 302M 1s -#70 1.372 25450K .......... .......... .......... .......... .......... 62% 265M 1s -#70 1.372 25500K .......... .......... .......... .......... .......... 62% 303M 1s -#70 1.372 25550K .......... .......... .......... .......... .......... 62% 331M 1s -#70 1.372 25600K .......... .......... .......... .......... .......... 62% 266M 1s -#70 1.372 25650K .......... .......... .......... .......... .......... 62% 353M 1s -#70 1.373 25700K .......... .......... .......... .......... .......... 62% 91.4M 1s -#70 1.373 25750K .......... .......... .......... .......... .......... 62% 306M 1s -#70 1.373 25800K .......... .......... .......... .......... .......... 63% 326M 1s -#70 1.373 25850K .......... .......... .......... .......... .......... 63% 270M 1s -#70 1.374 25900K .......... .......... .......... .......... .......... 63% 272M 1s -#70 1.374 25950K .......... .......... .......... .......... .......... 63% 263M 1s -#70 1.374 26000K .......... .......... .......... .......... .......... 63% 302M 0s -#70 1.374 26050K .......... .......... .......... .......... .......... 63% 316M 0s -#70 1.374 26100K .......... .......... .......... .......... .......... 63% 295M 0s -#70 1.374 26150K .......... .......... .......... .......... .......... 63% 345M 0s -#70 1.375 26200K .......... .......... .......... .......... .......... 64% 133M 0s -#70 1.375 26250K .......... .......... .......... .......... .......... 64% 223M 0s -#70 1.375 26300K .......... .......... .......... .......... .......... 64% 315M 0s -#70 1.375 26350K .......... .......... .......... .......... .......... 64% 288M 0s -#70 1.375 26400K .......... .......... .......... .......... .......... 64% 138M 0s -#70 1.376 26450K .......... .......... .......... .......... .......... 64% 278M 0s -#70 1.376 26500K .......... .......... .......... .......... .......... 64% 292M 0s -#70 1.376 26550K .......... .......... .......... .......... .......... 64% 314M 0s -#70 1.376 26600K .......... .......... .......... .......... .......... 65% 282M 0s -#70 1.376 26650K .......... .......... .......... .......... .......... 65% 322M 0s -#70 1.377 26700K .......... .......... .......... .......... .......... 65% 269M 0s -#70 1.377 26750K .......... .......... .......... .......... .......... 65% 309M 0s -#70 1.377 26800K .......... .......... .......... .......... .......... 65% 338M 0s -#70 1.377 26850K .......... .......... .......... .......... .......... 65% 200M 0s -#70 1.377 26900K .......... .......... .......... .......... .......... 65% 148M 0s -#70 1.378 26950K .......... .......... .......... .......... .......... 65% 280M 0s -#70 1.378 27000K .......... .......... .......... .......... .......... 66% 332M 0s -#70 1.378 27050K .......... .......... .......... .......... .......... 66% 322M 0s -#70 1.378 27100K .......... .......... .......... .......... .......... 66% 268M 0s -#70 1.378 27150K .......... .......... .......... .......... .......... 66% 334M 0s -#70 1.379 27200K .......... .......... .......... .......... .......... 66% 262M 0s -#70 1.379 27250K .......... .......... .......... .......... .......... 66% 253M 0s -#70 1.379 27300K .......... .......... .......... .......... .......... 66% 330M 0s -#70 1.379 27350K .......... .......... .......... .......... .......... 66% 201M 0s -#70 1.379 27400K .......... .......... .......... .......... .......... 66% 153M 0s -#70 1.380 27450K .......... .......... .......... .......... .......... 67% 266M 0s -#70 1.380 27500K .......... .......... .......... .......... .......... 67% 302M 0s -#70 1.380 27550K .......... .......... .......... .......... .......... 67% 268M 0s -#70 1.380 27600K .......... .......... .......... .......... .......... 67% 296M 0s -#70 1.380 27650K .......... .......... .......... .......... .......... 67% 340M 0s -#70 1.380 27700K .......... .......... .......... .......... .......... 67% 279M 0s -#70 1.381 27750K .......... .......... .......... .......... .......... 67% 317M 0s -#70 1.381 27800K .......... .......... .......... .......... .......... 67% 342M 0s -#70 1.381 27850K .......... .......... .......... .......... .......... 68% 259M 0s -#70 1.381 27900K .......... .......... .......... .......... .......... 68% 110M 0s -#70 1.382 27950K .......... .......... .......... .......... .......... 68% 288M 0s -#70 1.382 28000K .......... .......... .......... .......... .......... 68% 321M 0s -#70 1.382 28050K .......... .......... .......... .......... .......... 68% 165M 0s -#70 1.382 28100K .......... .......... .......... .......... .......... 68% 280M 0s -#70 1.382 28150K .......... .......... .......... .......... .......... 68% 327M 0s -#70 1.382 28200K .......... .......... .......... .......... .......... 68% 275M 0s -#70 1.383 28250K .......... .......... .......... .......... .......... 69% 339M 0s -#70 1.383 28300K .......... .......... .......... .......... .......... 69% 2.89M 0s -#70 1.400 28350K .......... .......... .......... .......... .......... 69% 215M 0s -#70 1.400 28400K .......... .......... .......... .......... .......... 69% 297M 0s -#70 1.400 28450K .......... .......... .......... .......... .......... 69% 280M 0s -#70 1.400 28500K .......... .......... .......... .......... .......... 69% 297M 0s -#70 1.400 28550K .......... .......... .......... .......... .......... 69% 281M 0s -#70 1.401 28600K .......... .......... .......... .......... .......... 69% 277M 0s -#70 1.401 28650K .......... .......... .......... .......... .......... 70% 339M 0s -#70 1.401 28700K .......... .......... .......... .......... .......... 70% 284M 0s -#70 1.401 28750K .......... .......... .......... .......... .......... 70% 325M 0s -#70 1.401 28800K .......... .......... .......... .......... .......... 70% 212M 0s -#70 1.401 28850K .......... .......... .......... .......... .......... 70% 237M 0s -#70 1.402 28900K .......... .......... .......... .......... .......... 70% 295M 0s -#70 1.402 28950K .......... .......... .......... .......... .......... 70% 288M 0s -#70 1.402 29000K .......... .......... .......... .......... .......... 70% 305M 0s -#70 1.402 29050K .......... .......... .......... .......... .......... 71% 327M 0s -#70 1.402 29100K .......... .......... .......... .......... .......... 71% 295M 0s -#70 1.402 29150K .......... .......... .......... .......... .......... 71% 25.4M 0s -#70 1.404 29200K .......... .......... .......... .......... .......... 71% 180M 0s -#70 1.405 29250K .......... .......... .......... .......... .......... 71% 242M 0s -#70 1.405 29300K .......... .......... .......... .......... .......... 71% 304M 0s -#70 1.405 29350K .......... .......... .......... .......... .......... 71% 259M 0s -#70 1.405 29400K .......... .......... .......... .......... .......... 71% 278M 0s -#70 1.405 29450K .......... .......... .......... .......... .......... 71% 254M 0s -#70 1.406 29500K .......... .......... .......... .......... .......... 72% 305M 0s -#70 1.406 29550K .......... .......... .......... .......... .......... 72% 303M 0s -#70 1.406 29600K .......... .......... .......... .......... .......... 72% 278M 0s -#70 1.406 29650K .......... .......... .......... .......... .......... 72% 331M 0s -#70 1.406 29700K .......... .......... .......... .......... .......... 72% 124M 0s -#70 1.407 29750K .......... .......... .......... .......... .......... 72% 321M 0s -#70 1.407 29800K .......... .......... .......... .......... .......... 72% 313M 0s -#70 1.407 29850K .......... .......... .......... .......... .......... 72% 262M 0s -#70 1.407 29900K .......... .......... .......... .......... .......... 73% 232M 0s -#70 1.407 29950K .......... .......... .......... .......... .......... 73% 268M 0s -#70 1.408 30000K .......... .......... .......... .......... .......... 73% 314M 0s -#70 1.408 30050K .......... .......... .......... .......... .......... 73% 274M 0s -#70 1.408 30100K .......... .......... .......... .......... .......... 73% 281M 0s -#70 1.408 30150K .......... .......... .......... .......... .......... 73% 342M 0s -#70 1.408 30200K .......... .......... .......... .......... .......... 73% 185M 0s -#70 1.408 30250K .......... .......... .......... .......... .......... 73% 324M 0s -#70 1.409 30300K .......... .......... .......... .......... .......... 74% 247M 0s -#70 1.409 30350K .......... .......... .......... .......... .......... 74% 275M 0s -#70 1.409 30400K .......... .......... .......... .......... .......... 74% 227M 0s -#70 1.409 30450K .......... .......... .......... .......... .......... 74% 258M 0s -#70 1.409 30500K .......... .......... .......... .......... .......... 74% 303M 0s -#70 1.410 30550K .......... .......... .......... .......... .......... 74% 329M 0s -#70 1.410 30600K .......... .......... .......... .......... .......... 74% 280M 0s -#70 1.410 30650K .......... .......... .......... .......... .......... 74% 345M 0s -#70 1.410 30700K .......... .......... .......... .......... .......... 75% 179M 0s -#70 1.410 30750K .......... .......... .......... .......... .......... 75% 306M 0s -#70 1.410 30800K .......... .......... .......... .......... .......... 75% 230M 0s -#70 1.411 30850K .......... .......... .......... .......... .......... 75% 273M 0s -#70 1.411 30900K .......... .......... .......... .......... .......... 75% 140M 0s -#70 1.411 30950K .......... .......... .......... .......... .......... 75% 283M 0s -#70 1.411 31000K .......... .......... .......... .......... .......... 75% 320M 0s -#70 1.411 31050K .......... .......... .......... .......... .......... 75% 329M 0s -#70 1.412 31100K .......... .......... .......... .......... .......... 76% 269M 0s -#70 1.412 31150K .......... .......... .......... .......... .......... 76% 336M 0s -#70 1.412 31200K .......... .......... .......... .......... .......... 76% 253M 0s -#70 1.412 31250K .......... .......... .......... .......... .......... 76% 283M 0s -#70 1.412 31300K .......... .......... .......... .......... .......... 76% 308M 0s -#70 1.412 31350K .......... .......... .......... .......... .......... 76% 240M 0s -#70 1.413 31400K .......... .......... .......... .......... .......... 76% 134M 0s -#70 1.413 31450K .......... .......... .......... .......... .......... 76% 270M 0s -#70 1.413 31500K .......... .......... .......... .......... .......... 76% 319M 0s -#70 1.413 31550K .......... .......... .......... .......... .......... 77% 323M 0s -#70 1.414 31600K .......... .......... .......... .......... .......... 77% 285M 0s -#70 1.414 31650K .......... .......... .......... .......... .......... 77% 308M 0s -#70 1.414 31700K .......... .......... .......... .......... .......... 77% 224M 0s -#70 1.414 31750K .......... .......... .......... .......... .......... 77% 299M 0s -#70 1.414 31800K .......... .......... .......... .......... .......... 77% 344M 0s -#70 1.414 31850K .......... .......... .......... .......... .......... 77% 198M 0s -#70 1.415 31900K .......... .......... .......... .......... .......... 77% 171M 0s -#70 1.415 31950K .......... .......... .......... .......... .......... 78% 262M 0s -#70 1.415 32000K .......... .......... .......... .......... .......... 78% 310M 0s -#70 1.415 32050K .......... .......... .......... .......... .......... 78% 339M 0s -#70 1.415 32100K .......... .......... .......... .......... .......... 78% 283M 0s -#70 1.416 32150K .......... .......... .......... .......... .......... 78% 317M 0s -#70 1.416 32200K .......... .......... .......... .......... .......... 78% 275M 0s -#70 1.416 32250K .......... .......... .......... .......... .......... 78% 280M 0s -#70 1.416 32300K .......... .......... .......... .......... .......... 78% 337M 0s -#70 1.416 32350K .......... .......... .......... .......... .......... 79% 156M 0s -#70 1.417 32400K .......... .......... .......... .......... .......... 79% 210M 0s -#70 1.417 32450K .......... .......... .......... .......... .......... 79% 290M 0s -#70 1.417 32500K .......... .......... .......... .......... .......... 79% 1.08M 0s -#70 1.462 32550K .......... .......... .......... .......... .......... 79% 290M 0s -#70 1.462 32600K .......... .......... .......... .......... .......... 79% 28.7M 0s -#70 1.464 32650K .......... .......... .......... .......... .......... 79% 257M 0s -#70 1.464 32700K .......... .......... .......... .......... .......... 79% 274M 0s -#70 1.464 32750K .......... .......... .......... .......... .......... 80% 311M 0s -#70 1.465 32800K .......... .......... .......... .......... .......... 80% 195M 0s -#70 1.465 32850K .......... .......... .......... .......... .......... 80% 287M 0s -#70 1.465 32900K .......... .......... .......... .......... .......... 80% 336M 0s -#70 1.465 32950K .......... .......... .......... .......... .......... 80% 301M 0s -#70 1.465 33000K .......... .......... .......... .......... .......... 80% 323M 0s -#70 1.465 33050K .......... .......... .......... .......... .......... 80% 341M 0s -#70 1.466 33100K .......... .......... .......... .......... .......... 80% 202M 0s -#70 1.466 33150K .......... .......... .......... .......... .......... 81% 288M 0s -#70 1.466 33200K .......... .......... .......... .......... .......... 81% 264M 0s -#70 1.466 33250K .......... .......... .......... .......... .......... 81% 316M 0s -#70 1.466 33300K .......... .......... .......... .......... .......... 81% 348M 0s -#70 1.466 33350K .......... .......... .......... .......... .......... 81% 289M 0s -#70 1.467 33400K .......... .......... .......... .......... .......... 81% 336M 0s -#70 1.467 33450K .......... .......... .......... .......... .......... 81% 298M 0s -#70 1.467 33500K .......... .......... .......... .......... .......... 81% 326M 0s -#70 1.467 33550K .......... .......... .......... .......... .......... 81% 159M 0s -#70 1.467 33600K .......... .......... .......... .......... .......... 82% 196M 0s -#70 1.468 33650K .......... .......... .......... .......... .......... 82% 274M 0s -#70 1.468 33700K .......... .......... .......... .......... .......... 82% 252M 0s -#70 1.468 33750K .......... .......... .......... .......... .......... 82% 298M 0s -#70 1.468 33800K .......... .......... .......... .......... .......... 82% 342M 0s -#70 1.468 33850K .......... .......... .......... .......... .......... 82% 292M 0s -#70 1.468 33900K .......... .......... .......... .......... .......... 82% 339M 0s -#70 1.469 33950K .......... .......... .......... .......... .......... 82% 299M 0s -#70 1.469 34000K .......... .......... .......... .......... .......... 83% 332M 0s -#70 1.469 34050K .......... .......... .......... .......... .......... 83% 174M 0s -#70 1.469 34100K .......... .......... .......... .......... .......... 83% 164M 0s -#70 1.469 34150K .......... .......... .......... .......... .......... 83% 304M 0s -#70 1.470 34200K .......... .......... .......... .......... .......... 83% 294M 0s -#70 1.470 34250K .......... .......... .......... .......... .......... 83% 293M 0s -#70 1.470 34300K .......... .......... .......... .......... .......... 83% 323M 0s -#70 1.470 34350K .......... .......... .......... .......... .......... 83% 297M 0s -#70 1.470 34400K .......... .......... .......... .......... .......... 84% 339M 0s -#70 1.470 34450K .......... .......... .......... .......... .......... 84% 302M 0s -#70 1.471 34500K .......... .......... .......... .......... .......... 84% 180M 0s -#70 1.471 34550K .......... .......... .......... .......... .......... 84% 317M 0s -#70 1.471 34600K .......... .......... .......... .......... .......... 84% 207M 0s -#70 1.471 34650K .......... .......... .......... .......... .......... 84% 334M 0s -#70 1.471 34700K .......... .......... .......... .......... .......... 84% 103M 0s -#70 1.472 34750K .......... .......... .......... .......... .......... 84% 301M 0s -#70 1.472 34800K .......... .......... .......... .......... .......... 85% 335M 0s -#70 1.472 34850K .......... .......... .......... .......... .......... 85% 297M 0s -#70 1.472 34900K .......... .......... .......... .......... .......... 85% 111M 0s -#70 1.473 34950K .......... .......... .......... .......... .......... 85% 259M 0s -#70 1.473 35000K .......... .......... .......... .......... .......... 85% 331M 0s -#70 1.473 35050K .......... .......... .......... .......... .......... 85% 338M 0s -#70 1.473 35100K .......... .......... .......... .......... .......... 85% 112M 0s -#70 1.474 35150K .......... .......... .......... .......... .......... 85% 221M 0s -#70 1.474 35200K .......... .......... .......... .......... .......... 86% 262M 0s -#70 1.474 35250K .......... .......... .......... .......... .......... 86% 316M 0s -#70 1.474 35300K .......... .......... .......... .......... .......... 86% 338M 0s -#70 1.474 35350K .......... .......... .......... .......... .......... 86% 102M 0s -#70 1.475 35400K .......... .......... .......... .......... .......... 86% 290M 0s -#70 1.475 35450K .......... .......... .......... .......... .......... 86% 285M 0s -#70 1.475 35500K .......... .......... .......... .......... .......... 86% 339M 0s -#70 1.475 35550K .......... .......... .......... .......... .......... 86% 106M 0s -#70 1.476 35600K .......... .......... .......... .......... .......... 86% 265M 0s -#70 1.476 35650K .......... .......... .......... .......... .......... 87% 346M 0s -#70 1.476 35700K .......... .......... .......... .......... .......... 87% 297M 0s -#70 1.476 35750K .......... .......... .......... .......... .......... 87% 346M 0s -#70 1.476 35800K .......... .......... .......... .......... .......... 87% 246M 0s -#70 1.477 35850K .......... .......... .......... .......... .......... 87% 242M 0s -#70 1.477 35900K .......... .......... .......... .......... .......... 87% 317M 0s -#70 1.477 35950K .......... .......... .......... .......... .......... 87% 301M 0s -#70 1.477 36000K .......... .......... .......... .......... .......... 87% 342M 0s -#70 1.477 36050K .......... .......... .......... .......... .......... 88% 126M 0s -#70 1.478 36100K .......... .......... .......... .......... .......... 88% 272M 0s -#70 1.478 36150K .......... .......... .......... .......... .......... 88% 318M 0s -#70 1.478 36200K .......... .......... .......... .......... .......... 88% 283M 0s -#70 1.478 36250K .......... .......... .......... .......... .......... 88% 315M 0s -#70 1.478 36300K .......... .......... .......... .......... .......... 88% 330M 0s -#70 1.479 36350K .......... .......... .......... .......... .......... 88% 273M 0s -#70 1.479 36400K .......... .......... .......... .......... .......... 88% 298M 0s -#70 1.479 36450K .......... .......... .......... .......... .......... 89% 289M 0s -#70 1.479 36500K .......... .......... .......... .......... .......... 89% 3.36M 0s -#70 1.494 36550K .......... .......... .......... .......... .......... 89% 290M 0s -#70 1.494 36600K .......... .......... .......... .......... .......... 89% 203M 0s -#70 1.494 36650K .......... .......... .......... .......... .......... 89% 297M 0s -#70 1.494 36700K .......... .......... .......... .......... .......... 89% 103M 0s -#70 1.495 36750K .......... .......... .......... .......... .......... 89% 297M 0s -#70 1.495 36800K .......... .......... .......... .......... .......... 89% 310M 0s -#70 1.495 36850K .......... .......... .......... .......... .......... 90% 271M 0s -#70 1.495 36900K .......... .......... .......... .......... .......... 90% 306M 0s -#70 1.495 36950K .......... .......... .......... .......... .......... 90% 265M 0s -#70 1.495 37000K .......... .......... .......... .......... .......... 90% 309M 0s -#70 1.496 37050K .......... .......... .......... .......... .......... 90% 256M 0s -#70 1.496 37100K .......... .......... .......... .......... .......... 90% 153M 0s -#70 1.496 37150K .......... .......... .......... .......... .......... 90% 193M 0s -#70 1.496 37200K .......... .......... .......... .......... .......... 90% 292M 0s -#70 1.497 37250K .......... .......... .......... .......... .......... 91% 300M 0s -#70 1.497 37300K .......... .......... .......... .......... .......... 91% 317M 0s -#70 1.497 37350K .......... .......... .......... .......... .......... 91% 270M 0s -#70 1.497 37400K .......... .......... .......... .......... .......... 91% 324M 0s -#70 1.497 37450K .......... .......... .......... .......... .......... 91% 285M 0s -#70 1.497 37500K .......... .......... .......... .......... .......... 91% 339M 0s -#70 1.498 37550K .......... .......... .......... .......... .......... 91% 310M 0s -#70 1.498 37600K .......... .......... .......... .......... .......... 91% 105M 0s -#70 1.498 37650K .......... .......... .......... .......... .......... 91% 256M 0s -#70 1.498 37700K .......... .......... .......... .......... .......... 92% 286M 0s -#70 1.499 37750K .......... .......... .......... .......... .......... 92% 331M 0s -#70 1.499 37800K .......... .......... .......... .......... .......... 92% 324M 0s -#70 1.499 37850K .......... .......... .......... .......... .......... 92% 274M 0s -#70 1.499 37900K .......... .......... .......... .......... .......... 92% 197M 0s -#70 1.499 37950K .......... .......... .......... .......... .......... 92% 272M 0s -#70 1.499 38000K .......... .......... .......... .......... .......... 92% 314M 0s -#70 1.500 38050K .......... .......... .......... .......... .......... 92% 315M 0s -#70 1.500 38100K .......... .......... .......... .......... .......... 93% 145M 0s -#70 1.500 38150K .......... .......... .......... .......... .......... 93% 336M 0s -#70 1.500 38200K .......... .......... .......... .......... .......... 93% 200M 0s -#70 1.500 38250K .......... .......... .......... .......... .......... 93% 321M 0s -#70 1.501 38300K .......... .......... .......... .......... .......... 93% 328M 0s -#70 1.501 38350K .......... .......... .......... .......... .......... 93% 283M 0s -#70 1.501 38400K .......... .......... .......... .......... .......... 93% 252M 0s -#70 1.501 38450K .......... .......... .......... .......... .......... 93% 257M 0s -#70 1.501 38500K .......... .......... .......... .......... .......... 94% 310M 0s -#70 1.501 38550K .......... .......... .......... .......... .......... 94% 319M 0s -#70 1.502 38600K .......... .......... .......... .......... .......... 94% 187M 0s -#70 1.502 38650K .......... .......... .......... .......... .......... 94% 175M 0s -#70 1.502 38700K .......... .......... .......... .......... .......... 94% 268M 0s -#70 1.502 38750K .......... .......... .......... .......... .......... 94% 328M 0s -#70 1.503 38800K .......... .......... .......... .......... .......... 94% 327M 0s -#70 1.503 38850K .......... .......... .......... .......... .......... 94% 293M 0s -#70 1.503 38900K .......... .......... .......... .......... .......... 95% 283M 0s -#70 1.503 38950K .......... .......... .......... .......... .......... 95% 281M 0s -#70 1.503 39000K .......... .......... .......... .......... .......... 95% 322M 0s -#70 1.503 39050K .......... .......... .......... .......... .......... 95% 335M 0s -#70 1.503 39100K .......... .......... .......... .......... .......... 95% 137M 0s -#70 1.504 39150K .......... .......... .......... .......... .......... 95% 142M 0s -#70 1.504 39200K .......... .......... .......... .......... .......... 95% 296M 0s -#70 1.504 39250K .......... .......... .......... .......... .......... 95% 334M 0s -#70 1.504 39300K .......... .......... .......... .......... .......... 96% 105M 0s -#70 1.505 39350K .......... .......... .......... .......... .......... 96% 282M 0s -#70 1.505 39400K .......... .......... .......... .......... .......... 96% 304M 0s -#70 1.505 39450K .......... .......... .......... .......... .......... 96% 287M 0s -#70 1.505 39500K .......... .......... .......... .......... .......... 96% 113M 0s -#70 1.506 39550K .......... .......... .......... .......... .......... 96% 217M 0s -#70 1.506 39600K .......... .......... .......... .......... .......... 96% 294M 0s -#70 1.506 39650K .......... .......... .......... .......... .......... 96% 352M 0s -#70 1.506 39700K .......... .......... .......... .......... .......... 96% 140M 0s -#70 1.507 39750K .......... .......... .......... .......... .......... 97% 287M 0s -#70 1.507 39800K .......... .......... .......... .......... .......... 97% 329M 0s -#70 1.507 39850K .......... .......... .......... .......... .......... 97% 296M 0s -#70 1.507 39900K .......... .......... .......... .......... .......... 97% 163M 0s -#70 1.508 39950K .......... .......... .......... .......... .......... 97% 150M 0s -#70 1.508 40000K .......... .......... .......... .......... .......... 97% 335M 0s -#70 1.508 40050K .......... .......... .......... .......... .......... 97% 1.10M 0s -#70 1.553 40100K .......... .......... .......... .......... .......... 97% 235M 0s -#70 1.553 40150K .......... .......... .......... .......... .......... 98% 300M 0s -#70 1.553 40200K .......... .......... .......... .......... .......... 98% 264M 0s -#70 1.553 40250K .......... .......... .......... .......... .......... 98% 299M 0s -#70 1.553 40300K .......... .......... .......... .......... .......... 98% 306M 0s -#70 1.553 40350K .......... .......... .......... .......... .......... 98% 263M 0s -#70 1.554 40400K .......... .......... .......... .......... .......... 98% 312M 0s -#70 1.554 40450K .......... .......... .......... .......... .......... 98% 228M 0s -#70 1.554 40500K .......... .......... .......... .......... .......... 98% 319M 0s -#70 1.554 40550K .......... .......... .......... .......... .......... 99% 314M 0s -#70 1.554 40600K .......... .......... .......... .......... .......... 99% 189M 0s -#70 1.554 40650K .......... .......... .......... .......... .......... 99% 298M 0s -#70 1.555 40700K .......... .......... .......... .......... .......... 99% 273M 0s -#70 1.555 40750K .......... .......... .......... .......... .......... 99% 66.1M 0s -#70 1.556 40800K .......... .......... .......... .......... .......... 99% 206M 0s -#70 1.556 40850K .......... .......... .......... .......... .......... 99% 169M 0s -#70 1.556 40900K .......... .......... .......... .......... .......... 99% 226M 0s -#70 1.556 40950K .......... .......... .......... 100% 276M=1.1s -#70 1.556 -#70 1.556 2025-02-03 22:04:50 (38.0 MB/s) - ‘ffmpeg-git-amd64-static.tar.xz’ saved [41964060/41964060] -#70 1.556 -#70 1.562 ffmpeg-git-20240629-amd64-static/GPLv3.txt -#70 1.562 ffmpeg-git-20240629-amd64-static/manpages/ -#70 1.562 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-all.txt -#70 1.582 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-scaler.txt -#70 1.582 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-resampler.txt -#70 1.582 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-filters.txt -#70 1.583 ffmpeg-git-20240629-amd64-static/manpages/ffprobe.txt -#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-devices.txt -#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-utils.txt -#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-protocols.txt -#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-codecs.txt -#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-bitstream-filters.txt -#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg.txt -#70 1.584 ffmpeg-git-20240629-amd64-static/manpages/ffmpeg-formats.txt -#70 1.585 ffmpeg-git-20240629-amd64-static/ffprobe -#70 2.975 ffmpeg-git-20240629-amd64-static/qt-faststart -#70 2.978 ffmpeg-git-20240629-amd64-static/model/ -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_v0.6.1.json -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/ -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020.model -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005 -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015 -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016.model -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.model -#70 2.978 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011.model -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008 -#70 2.979 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010 -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018 -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002.model -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012.model -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003.model -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019 -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014.model -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018.model -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.json -#70 2.980 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1.json -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/ -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008.model -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018 -#70 2.981 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002 -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002.model -#70 2.982 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.json -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014 -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017.model -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019 -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009.model -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013 -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007.model -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016.model -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010 -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016 -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl.model -#70 2.983 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3.json -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_v0.6.1neg.json -#70 2.984 ffmpeg-git-20240629-amd64-static/model/000-PLEASE-README.TXT -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_float_4k_v0.6.1.json -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/ -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008.model -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012 -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002.model -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007.model -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011.model -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019 -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017.model -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017 -#70 2.984 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008 -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004.model -#70 2.985 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.json -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006 -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001.model -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016.model -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.model -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015 -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003.model -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011 -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016 -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003 -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014.model -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018.model -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001 -#70 2.986 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002 -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012.model -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.json -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1neg.pkl -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_b_v0.6.3.json -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/ -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003 -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015.model -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001.model -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012 -#70 2.987 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019.model -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017 -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0012.model -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0003.model -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009.model -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016 -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008.model -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0015 -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006 -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0009 -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004.model -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0017.model -#70 2.988 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.json -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0008 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0001 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0004 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0014.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0002 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0007 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0020 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010 -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0011.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0016.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0010.model -#70 2.989 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0006.model -#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0019 -#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0013 -#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0018 -#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_b_v0.6.3/vmaf_float_b_v0.6.3.pkl.0005.model -#70 2.990 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.json -#70 2.990 ffmpeg-git-20240629-amd64-static/model/other_models/ -#70 2.990 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl.model -#70 2.990 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl -#70 2.992 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v2.pkl -#70 2.993 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.json -#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl -#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl -#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/niqe_v0.1.pkl -#70 2.994 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl.model -#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl.model -#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl -#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl -#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl -#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl -#70 2.995 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv4.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_v1.json -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv1.pkl -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.0.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/vmaf_v0.6.1mfz.json -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv1.pkl.model -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3.pkl -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl -#70 2.996 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_libsvmnusvr_currentbest.pkl -#70 2.997 ffmpeg-git-20240629-amd64-static/model/other_models/nflx_vmaff_rf_v1.pkl -#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv2.pkl.model -#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv2.pkl -#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/model_V8a.model -#70 2.998 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.pkl.model -#70 2.999 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl.model -#70 2.999 ffmpeg-git-20240629-amd64-static/model/other_models/nflxall_vmafv3a.pkl.model -#70 2.999 ffmpeg-git-20240629-amd64-static/model/other_models/nflxtrain_norm_type_none.json -#70 2.999 ffmpeg-git-20240629-amd64-static/model/vmaf_float_v0.6.1.pkl.model -#70 2.999 ffmpeg-git-20240629-amd64-static/readme.txt -#70 2.999 ffmpeg-git-20240629-amd64-static/ffmpeg -#70 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 80.56 Collecting SQLAlchemy<3,>=1.4 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 80.60 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) -#54 80.89 Collecting dataclasses-json<0.7,>=0.5.7 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 80.92 Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) -#54 81.28 Collecting httpx-sse<0.5.0,>=0.4.0 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 81.32 Downloading httpx_sse-0.4.0-py3-none-any.whl.metadata (9.0 kB) -#54 81.66 Collecting langchain<0.4.0,>=0.3.16 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 81.69 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) -#54 82.03 Collecting langsmith<0.4,>=0.1.125 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 82.06 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) -#54 82.30 Collecting pydantic-settings<3.0.0,>=2.4.0 (from langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 82.34 Downloading pydantic_settings-2.7.1-py3-none-any.whl.metadata (3.5 kB) -#54 82.62 Collecting huggingface-hub>=0.23.0 (from langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) -#54 82.66 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#54 82.95 Collecting tokenizers>=0.19.1 (from langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) -#54 82.99 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) -#54 83.27 Collecting transformers>=4.39.0 (from langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) -#54 83.32 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) -#54 83.74 Collecting pymilvus<3.0.0,>=2.5.0 (from langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) -#54 83.78 Downloading pymilvus-2.5.4-py3-none-any.whl.metadata (5.7 kB) -#54 83.94 Collecting deprecated>=1.2.9.3 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 83.98 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#54 84.22 Collecting dirtyjson<2.0.0,>=1.0.8 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 84.26 Downloading dirtyjson-1.0.8-py3-none-any.whl.metadata (11 kB) -#54 84.48 Collecting filetype<2.0.0,>=1.2.0 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 84.53 Downloading filetype-1.2.0-py2.py3-none-any.whl.metadata (6.5 kB) -#54 84.54 Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.11/site-packages (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) (2025.2.0) -#54 84.65 Collecting httpx (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 84.69 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#54 84.79 Collecting nest-asyncio<2.0.0,>=1.5.8 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 84.82 Downloading nest_asyncio-1.6.0-py3-none-any.whl.metadata (2.8 kB) -#54 85.07 Collecting nltk>3.8.1 (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 85.10 Downloading nltk-3.9.1-py3-none-any.whl.metadata (2.9 kB) -#54 85.37 Collecting wrapt (from llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 85.39 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#54 85.72 Collecting llama-index-utils-huggingface<0.4.0,>=0.3.0 (from llama-index-embeddings-text-embeddings-inference->-r /home/user/comps/retrievers/src/requirements.txt (line 17)) -#54 85.75 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl.metadata (697 bytes) -#54 86.11 Collecting text-generation<0.8.0,>=0.7.0 (from llama-index-llms-text-generation-inference->-r /home/user/comps/retrievers/src/requirements.txt (line 20)) -#54 86.14 Downloading text_generation-0.7.0-py3-none-any.whl.metadata (8.5 kB) -#54 86.49 Collecting pytz (from neo4j->-r /home/user/comps/retrievers/src/requirements.txt (line 22)) -#54 86.51 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) -#54 86.66 Collecting urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19 (from opensearch-py->-r /home/user/comps/retrievers/src/requirements.txt (line 24)) -#54 86.72 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#54 87.03 Collecting certifi>=2024.07.04 (from opensearch-py->-r /home/user/comps/retrievers/src/requirements.txt (line 24)) -#54 87.06 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#54 87.30 Collecting Events (from opensearch-py->-r /home/user/comps/retrievers/src/requirements.txt (line 24)) -#54 87.32 Downloading Events-0.5-py3-none-any.whl.metadata (3.9 kB) -#54 87.63 Collecting click>=8.1 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 87.68 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#54 87.79 Collecting geopy>=2.4.0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 87.82 Downloading geopy-2.4.1-py3-none-any.whl.metadata (6.8 kB) -#54 87.97 Collecting h3>=4 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 88.00 Downloading h3-4.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) -#54 88.43 Collecting sqlglot==10.6.1 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 88.47 Downloading sqlglot-10.6.1-py3-none-any.whl.metadata (14 kB) -#54 88.80 Collecting pyarrow<19.0.0,>=10.0.0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 88.84 Downloading pyarrow-18.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) -#54 89.40 Collecting python-sat>=0.1.8.dev0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 89.44 Downloading python_sat-1.8.dev14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.metadata (1.5 kB) -#54 89.47 INFO: pip is looking at multiple versions of pathway to determine which version is compatible with other requirements. This could take a while. -#54 89.47 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 89.51 Downloading pathway-0.16.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 89.55 Collecting pyarrow>=10.0.0 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 89.59 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.3 kB) -#54 89.59 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 89.63 Downloading pathway-0.16.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 89.73 Downloading pathway-0.16.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 89.82 Downloading pathway-0.16.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 89.90 Downloading pathway-0.16.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.00 Downloading pathway-0.15.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.08 Downloading pathway-0.15.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.15 INFO: pip is still looking at multiple versions of pathway to determine which version is compatible with other requirements. This could take a while. -#54 90.18 Downloading pathway-0.15.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.24 Collecting h3<4,>=3.7.6 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 90.29 Downloading h3-3.7.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#54 90.30 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 90.33 Downloading pathway-0.15.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.39 Downloading pathway-0.15.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.45 Downloading pathway-0.14.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.51 Downloading pathway-0.14.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.54 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. -#54 90.57 Downloading pathway-0.14.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.64 Downloading pathway-0.14.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.74 Downloading pathway-0.13.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.82 Downloading pathway-0.13.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.88 Downloading pathway-0.13.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 90.97 Downloading pathway-0.12.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 91.04 Downloading pathway-0.11.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (38 kB) -#54 91.13 Downloading pathway-0.11.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (38 kB) -#54 91.37 Collecting numba>=0.56 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 91.41 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB) -#54 91.41 Collecting pathway (from -r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 91.45 Downloading pathway-0.11.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (38 kB) -#54 91.52 Downloading pathway-0.10.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (37 kB) -#54 91.58 Downloading pathway-0.10.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (37 kB) -#54 91.66 Downloading pathway-0.9.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (37 kB) -#54 91.74 Downloading pathway-0.8.6-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (32 kB) -#54 91.82 Downloading pathway-0.8.5-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB) -#54 91.90 Downloading pathway-0.8.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#54 91.98 Downloading pathway-0.8.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#54 92.10 Downloading pathway-0.8.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#54 92.16 Downloading pathway-0.8.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#54 92.24 Downloading pathway-0.8.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) -#54 92.35 Downloading pathway-0.7.10-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) -#54 92.45 Downloading pathway-0.7.9-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 92.53 Downloading pathway-0.7.8-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 92.58 Downloading pathway-0.7.7-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 92.63 Downloading pathway-0.7.6-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 92.68 Downloading pathway-0.7.5-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 92.75 Downloading pathway-0.7.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 92.83 Downloading pathway-0.7.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 92.93 Downloading pathway-0.7.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 93.02 Downloading pathway-0.7.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 93.08 Downloading pathway-0.7.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) -#54 93.15 Downloading pathway-0.6.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB) -#54 93.20 Downloading pathway-0.5.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB) -#54 93.27 Downloading pathway-0.5.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) -#54 93.35 Downloading pathway-0.5.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) -#54 93.41 Downloading pathway-0.5.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) -#54 93.46 Downloading pathway-0.4.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) -#54 93.53 Downloading pathway-0.4.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) -#54 93.59 Downloading pathway-0.3.4-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) -#54 93.65 Downloading pathway-0.3.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (30 kB) -#54 93.98 Collecting diskcache>=5.2.1 (from pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 94.02 Downloading diskcache-5.6.3-py3-none-any.whl.metadata (20 kB) -#54 ... - -#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt -#68 35.59 Successfully installed Pillow-10.3.0 aiofiles-23.2.1 annotated-types-0.7.0 anyio-4.8.0 certifi-2025.1.31 charset-normalizer-3.4.1 click-8.1.8 decorator-4.4.2 fastapi-0.115.8 ffmpy-0.5.0 filelock-3.17.0 fsspec-2025.2.0 gradio-5.5.0 gradio-client-1.4.2 gradio_pdf-0.0.19 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface-hub-0.28.1 idna-3.10 imageio-2.37.0 imageio_ffmpeg-0.6.0 jinja2-3.1.5 markdown-it-py-3.0.0 markupsafe-2.1.5 mdurl-0.1.2 moviepy-1.0.3 numpy-1.26.4 opencv-python-4.10.0.82 orjson-3.10.15 packaging-24.2 pandas-2.2.3 proglog-0.1.10 pydantic-2.10.6 pydantic-core-2.27.2 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 python-multipart-0.0.12 pytz-2025.1 pyyaml-6.0.2 requests-2.32.3 rich-13.9.4 ruff-0.9.4 safehttpx-0.1.6 semantic-version-2.10.0 shellingham-1.5.4 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 tomlkit-0.12.0 tqdm-4.67.1 typer-0.15.1 typing-extensions-4.12.2 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 websockets-12.0 -#68 35.59 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#68 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 94.30 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/retrievers/src/requirements.txt (line 27)) -#54 94.34 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#54 94.46 Collecting annotated-types>=0.6.0 (from pydantic->-r /home/user/comps/retrievers/src/requirements.txt (line 30)) -#54 94.50 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#54 95.28 Collecting pydantic-core==2.27.2 (from pydantic->-r /home/user/comps/retrievers/src/requirements.txt (line 30)) -#54 95.31 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#54 95.44 Collecting packaging>=21.3 (from pytesseract->-r /home/user/comps/retrievers/src/requirements.txt (line 32)) -#54 95.47 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#54 95.73 Collecting lxml>=3.1.0 (from python-docx->-r /home/user/comps/retrievers/src/requirements.txt (line 33)) -#54 95.77 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#54 95.94 Collecting XlsxWriter>=0.5.7 (from python-pptx->-r /home/user/comps/retrievers/src/requirements.txt (line 35)) -#54 95.98 Downloading XlsxWriter-3.2.2-py3-none-any.whl.metadata (2.8 kB) -#54 96.25 Collecting qdrant-client>=1.10.0 (from qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 96.29 Downloading qdrant_client-1.13.2-py3-none-any.whl.metadata (10 kB) -#54 97.02 Collecting regex>=2022.1.18 (from tiktoken->-r /home/user/comps/retrievers/src/requirements.txt (line 40)) -#54 97.06 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#54 97.34 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/retrievers/src/requirements.txt (line 41)) -#54 97.38 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#54 ... - -#68 [opea/multimodalqna-ui:latest 7/8] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/gradio/requirements.txt -#68 DONE 49.1s - -#70 [opea/dataprep:latest 3/8] RUN cd /root && wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && mkdir ffmpeg-git-amd64-static && tar -xvf ffmpeg-git-amd64-static.tar.xz -C ffmpeg-git-amd64-static --strip-components 1 && export PATH=/root/ffmpeg-git-amd64-static:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && cp /root/ffmpeg-git-amd64-static/ffmpeg /usr/local/bin/ -#70 DONE 17.4s - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 97.65 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 97.70 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#54 97.99 Collecting aiosignal>=1.1.2 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 98.03 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#54 98.13 Collecting attrs>=17.3.0 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 98.16 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#54 98.31 Collecting frozenlist>=1.1.1 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 98.34 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#54 98.75 Collecting multidict<7.0,>=4.5 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 98.81 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#54 ... - -#71 [opea/multimodalqna-ui:latest 8/8] WORKDIR /home/user/gradio -#71 DONE 1.5s - -#72 [opea/multimodalqna-ui:latest] exporting to image -#72 exporting layers -#72 ... - -#73 [opea/dataprep:latest 4/8] RUN useradd -m -s /bin/bash user && mkdir -p /home/user && chown -R user /home/user/ -#73 DONE 1.6s - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 99.16 Collecting yarl<2.0,>=1.12.0 (from aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 99.21 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#54 ... - -#74 [opea/dataprep:latest 5/8] COPY comps /home/user/comps -#74 DONE 0.4s - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 99.55 Collecting six (from anytree<3.0.0,>=2.12.1->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 99.59 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#54 99.76 Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses-json<0.7,>=0.5.7->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 99.81 Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) -#54 100.1 Collecting elastic-transport<9,>=8.15.1 (from elasticsearch<9.0.0,>=8.13.1->elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) -#54 100.1 Downloading elastic_transport-8.17.0-py3-none-any.whl.metadata (3.6 kB) -#54 100.8 Collecting simsimd>=3 (from elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) -#54 100.9 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (66 kB) -#54 101.1 Collecting smart-open>=1.8.1 (from gensim<5.0.0,>=4.3.2->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 101.1 Downloading smart_open-7.1.0-py3-none-any.whl.metadata (24 kB) -#54 101.2 Collecting anyio (from httpx->llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 101.3 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#54 101.4 Collecting httpcore==1.* (from httpx->llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 101.4 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#54 101.5 Collecting idna (from httpx->llama-index-core->-r /home/user/comps/retrievers/src/requirements.txt (line 15)) -#54 101.6 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#54 101.6 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from huggingface-hub>=0.23.0->langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) (3.17.0) -#54 101.9 Collecting autograd>=1.3 (from hyppo<0.5.0,>=0.4.0->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 101.9 Downloading autograd-1.7.0-py3-none-any.whl.metadata (7.5 kB) -#54 102.2 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 102.2 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) -#54 102.5 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 102.6 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) -#54 102.7 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 102.7 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) -#54 103.0 Collecting langchain-text-splitters<0.4.0,>=0.3.3 (from langchain<0.4.0,>=0.3.16->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 103.0 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) -#54 103.2 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.0->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) -#54 103.3 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) -#54 103.5 Collecting pytest<9,>=7 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 103.5 Downloading pytest-8.3.4-py3-none-any.whl.metadata (7.5 kB) -#54 ... - -#72 [opea/multimodalqna-ui:latest] exporting to image -#72 exporting layers 4.6s done -#72 writing image sha256:06306deb1d8f40962011b7b0d5682d6dedc13481ebea18ccca6ce417d165a1b0 0.0s done -#72 naming to docker.io/opea/multimodalqna-ui:latest 0.0s done -#72 DONE 4.7s - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 103.6 Collecting pytest-asyncio<1,>=0.20 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 103.7 Downloading pytest_asyncio-0.25.3-py3-none-any.whl.metadata (3.9 kB) -#54 103.9 Collecting pytest-socket<1,>=0.6.0 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 103.9 Downloading pytest_socket-0.7.0-py3-none-any.whl.metadata (6.7 kB) -#54 104.2 Collecting syrupy<5,>=4 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 104.2 Downloading syrupy-4.8.1-py3-none-any.whl.metadata (36 kB) -#54 104.6 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.125->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 104.6 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) -#54 104.9 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.125->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 105.0 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) -#54 105.2 Collecting contourpy>=1.0.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 105.2 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.4 kB) -#54 105.3 Collecting cycler>=0.10 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 105.3 Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB) -#54 105.6 Collecting fonttools>=4.22.0 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 105.6 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (101 kB) -#54 105.9 Collecting kiwisolver>=1.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 105.9 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) -#54 106.1 Collecting pyparsing>=2.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 106.1 Downloading pyparsing-3.2.1-py3-none-any.whl.metadata (5.0 kB) -#54 106.3 Collecting llvmlite<0.45,>=0.44.0dev0 (from numba>=0.56->pathway->-r /home/user/comps/retrievers/src/requirements.txt (line 25)) -#54 106.4 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.8 kB) -#54 106.5 Collecting distro<2,>=1.7.0 (from openai>=1.1.0->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 106.5 Downloading distro-1.9.0-py3-none-any.whl.metadata (6.8 kB) -#54 106.8 Collecting jiter<1,>=0.4.0 (from openai>=1.1.0->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 106.8 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) -#54 107.1 Collecting sniffio (from openai>=1.1.0->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 107.2 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#54 107.5 Collecting tzdata>=2022.7 (from pandas->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 107.5 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) -#54 107.8 Collecting pinecone-plugin-inference<4.0.0,>=2.0.0 (from pinecone<6.0.0,>=5.4.0->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 107.8 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl.metadata (2.2 kB) -#54 108.1 Collecting pinecone-plugin-interface<0.0.8,>=0.0.7 (from pinecone<6.0.0,>=5.4.0->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 108.1 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl.metadata (1.2 kB) -#54 108.5 Collecting python-dotenv>=0.21.0 (from pydantic-settings<3.0.0,>=2.4.0->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 108.5 Downloading python_dotenv-1.0.1-py3-none-any.whl.metadata (23 kB) -#54 108.6 Requirement already satisfied: setuptools>69 in /usr/local/lib/python3.11/site-packages (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) (75.8.0) -#54 109.2 Collecting grpcio<=1.67.1,>=1.49.1 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) -#54 109.3 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#54 109.4 Collecting ujson>=2.0.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) -#54 109.5 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.3 kB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#0 1.580 Requirement already satisfied: pip in /usr/local/lib/python3.11/site-packages (24.0) -#0 1.717 Collecting pip -#0 1.771 Downloading pip-25.0-py3-none-any.whl.metadata (3.7 kB) -#0 1.775 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (65.5.1) -#0 2.050 Collecting setuptools -#0 2.058 Downloading setuptools-75.8.0-py3-none-any.whl.metadata (6.7 kB) -#0 2.116 Downloading pip-25.0-py3-none-any.whl (1.8 MB) -#0 2.207 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 20.8 MB/s eta 0:00:00 -#0 2.216 Downloading setuptools-75.8.0-py3-none-any.whl (1.2 MB) -#0 2.248 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 40.5 MB/s eta 0:00:00 -#0 2.392 Installing collected packages: setuptools, pip -#0 2.392 Attempting uninstall: setuptools -#0 2.395 Found existing installation: setuptools 65.5.1 -#0 2.414 Uninstalling setuptools-65.5.1: -#0 2.469 Successfully uninstalled setuptools-65.5.1 -#0 3.218 Attempting uninstall: pip -#0 3.221 Found existing installation: pip 24.0 -#0 3.280 Uninstalling pip-24.0: -#0 3.458 Successfully uninstalled pip-24.0 -#0 4.700 Successfully installed pip-25.0 setuptools-75.8.0 -#0 4.700 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -#0 5.334 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu -#0 5.801 Collecting torch -#0 5.807 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (26 kB) -#0 6.332 Collecting torchvision -#0 6.339 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (6.1 kB) -#0 6.456 Collecting filelock (from torch) -#0 6.520 Downloading filelock-3.17.0-py3-none-any.whl.metadata (2.9 kB) -#0 6.633 Collecting typing-extensions>=4.10.0 (from torch) -#0 6.640 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) -#0 6.769 Collecting networkx (from torch) -#0 6.779 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) -#0 7.032 Collecting jinja2 (from torch) -#0 7.042 Downloading jinja2-3.1.5-py3-none-any.whl.metadata (2.6 kB) -#0 7.301 Collecting fsspec (from torch) -#0 7.312 Downloading fsspec-2025.2.0-py3-none-any.whl.metadata (11 kB) -#0 7.594 Collecting sympy==1.13.1 (from torch) -#0 7.604 Downloading https://download.pytorch.org/whl/sympy-1.13.1-py3-none-any.whl (6.2 MB) -#0 7.696 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 69.2 MB/s eta 0:00:00 -#0 7.999 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch) -#0 8.005 Downloading https://download.pytorch.org/whl/mpmath-1.3.0-py3-none-any.whl (536 kB) -#0 8.011 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 130.5 MB/s eta 0:00:00 -#0 8.519 Collecting numpy (from torchvision) -#0 8.530 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) -#0 9.073 Collecting pillow!=8.3.*,>=5.3.0 (from torchvision) -#0 9.084 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.1 kB) -#0 9.258 Collecting MarkupSafe>=2.0 (from jinja2->torch) -#0 9.269 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) -#0 9.281 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl (178.7 MB) -#0 9.889 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.7/178.7 MB 295.2 MB/s eta 0:00:00 -#0 9.896 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl (1.8 MB) -#0 9.912 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 130.2 MB/s eta 0:00:00 -#0 9.923 Downloading pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#0 9.976 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 99.1 MB/s eta 0:00:00 -#0 9.981 Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#0 9.992 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#0 10.00 Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB) -#0 10.01 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) -#0 10.03 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) -#0 10.04 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 133.1 MB/s eta 0:00:00 -#0 10.05 Downloading numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) -#75 10.15 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 174.5 MB/s eta 0:00:00 -#75 10.16 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 109.7 Collecting milvus-lite>=2.4.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/retrievers/src/requirements.txt (line 14)) -#54 109.8 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl.metadata (9.2 kB) -#54 110.6 Collecting grpcio-tools>=1.41.0 (from qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 110.6 Downloading grpcio_tools-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 110.9 Collecting portalocker<3.0.0,>=2.7.0 (from qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 110.9 Downloading https://download.pytorch.org/whl/portalocker-2.10.1-py3-none-any.whl (18 kB) -#54 111.1 Collecting charset-normalizer<4,>=2 (from requests->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 111.2 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#54 111.3 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 111.4 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#54 111.5 Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 111.5 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#54 111.7 Collecting threadpoolctl>=3.1.0 (from scikit-learn<2.0.0,>=1.4.2->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 111.7 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) -#54 112.1 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain_community->-r /home/user/comps/retrievers/src/requirements.txt (line 12)) -#54 112.2 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#54 112.5 Collecting patsy>=0.5.6 (from statsmodels<0.15.0,>=0.14.2->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 112.5 Downloading patsy-1.0.1-py2.py3-none-any.whl.metadata (3.3 kB) -#54 112.7 Requirement already satisfied: sympy==1.13.1 in /usr/local/lib/python3.11/site-packages (from torch->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (1.13.1) -#54 112.7 Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.11/site-packages (from sympy==1.13.1->torch->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) (1.3.0) -#54 113.1 Collecting safetensors>=0.4.1 (from transformers>=4.39.0->langchain_huggingface->-r /home/user/comps/retrievers/src/requirements.txt (line 13)) -#54 113.2 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#54 113.5 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 113.5 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) -#54 113.8 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 113.8 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) -#54 114.1 Collecting chardet (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 114.1 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) -#54 114.3 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 114.3 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) -#54 114.6 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 114.7 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) -#54 114.9 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 114.9 Downloading pycollada-0.8.tar.gz (108 kB) -#54 115.1 Preparing metadata (setup.py): started -#54 115.6 Preparing metadata (setup.py): finished with status 'done' -#54 115.8 Collecting xxhash (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 115.8 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) -#54 115.9 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 116.0 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) -#54 116.2 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 116.2 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) -#54 116.5 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 116.5 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#54 116.8 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 116.8 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) -#54 117.1 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 117.1 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) -#54 117.4 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 117.4 Downloading https://download.pytorch.org/whl/mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#54 117.7 Collecting pynndescent>=0.5 (from umap-learn<0.6.0,>=0.5.6->graspologic->-r /home/user/comps/retrievers/src/requirements.txt (line 8)) -#54 117.7 Downloading pynndescent-0.5.13-py3-none-any.whl.metadata (6.8 kB) -#54 118.1 Collecting soupsieve>1.2 (from beautifulsoup4->bs4->-r /home/user/comps/retrievers/src/requirements.txt (line 1)) -#54 118.1 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB) -#54 118.4 Collecting cffi>=1.1.0 (from cairocffi->cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 118.5 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB) -#54 118.7 Collecting webencodings (from cssselect2->cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 118.8 Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB) -#54 118.8 Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.11/site-packages (from jinja2->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) (3.0.2) -#54 119.2 Collecting monotonic>=1.5 (from posthog->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 119.2 Downloading monotonic-1.6-py2.py3-none-any.whl.metadata (1.5 kB) -#54 ... - -#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi -#69 60.23 Successfully installed aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 datasets-3.2.0 deprecated-1.2.18 dill-0.3.8 docarray-0.40.0 embreex-2.17.7.post6 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2024.9.0 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface-hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 multidict-6.1.0 multiprocess-0.70.16 mypy-extensions-1.0.0 networkx-3.4.2 numpy-2.2.2 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pyarrow-19.0.0 pycollada-0.8 pydantic-2.7.2 pydantic-core-2.18.3 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 python-multipart-0.0.20 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scipy-1.15.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 tokenizers-0.21.0 tqdm-4.67.1 transformers-4.48.2 trimesh-4.6.1 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zhconv-1.4.3 zipp-3.21.0 -#69 60.23 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#69 61.31 Looking in indexes: https://download.pytorch.org/whl/cpu -#69 61.68 Collecting torch -#69 61.69 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (26 kB) -#69 62.02 Collecting torchvision -#69 62.02 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl.metadata (6.1 kB) -#69 62.03 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from torch) (3.17.0) -#69 62.03 Requirement already satisfied: typing-extensions>=4.10.0 in /usr/local/lib/python3.11/site-packages (from torch) (4.12.2) -#69 62.03 Requirement already satisfied: networkx in /usr/local/lib/python3.11/site-packages (from torch) (3.4.2) -#69 62.12 Collecting jinja2 (from torch) -#69 62.14 Downloading https://download.pytorch.org/whl/Jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB) -#69 62.14 Requirement already satisfied: fsspec in /usr/local/lib/python3.11/site-packages (from torch) (2024.9.0) -#69 62.39 Collecting sympy==1.13.1 (from torch) -#69 62.40 Downloading https://download.pytorch.org/whl/sympy-1.13.1-py3-none-any.whl (6.2 MB) -#69 62.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 237.4 MB/s eta 0:00:00 -#69 62.72 Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.1->torch) -#69 62.73 Downloading https://download.pytorch.org/whl/mpmath-1.3.0-py3-none-any.whl (536 kB) -#69 62.74 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 287.6 MB/s eta 0:00:00 -#69 62.74 Requirement already satisfied: numpy in /usr/local/lib/python3.11/site-packages (from torchvision) (2.2.2) -#69 62.74 Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /usr/local/lib/python3.11/site-packages (from torchvision) (11.1.0) -#69 63.03 Collecting MarkupSafe>=2.0 (from jinja2->torch) -#69 63.03 Downloading https://download.pytorch.org/whl/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB) -#69 63.06 Downloading https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp311-cp311-linux_x86_64.whl (178.7 MB) -#69 63.71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.7/178.7 MB 273.5 MB/s eta 0:00:00 -#69 63.72 Downloading https://download.pytorch.org/whl/cpu/torchvision-0.21.0%2Bcpu-cp311-cp311-linux_x86_64.whl (1.8 MB) -#69 63.73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 365.8 MB/s eta 0:00:00 -#69 63.73 Downloading https://download.pytorch.org/whl/Jinja2-3.1.4-py3-none-any.whl (133 kB) -#69 64.78 Installing collected packages: mpmath, sympy, MarkupSafe, jinja2, torch, torchvision -#69 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 10.91 Installing collected packages: mpmath, typing-extensions, sympy, pillow, numpy, networkx, MarkupSafe, fsspec, filelock, jinja2, torch, torchvision -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 119.3 Collecting backoff>=1.10.0 (from posthog->haystack-ai==2.3.1->-r /home/user/comps/retrievers/src/requirements.txt (line 9)) -#54 119.4 Downloading backoff-2.2.1-py3-none-any.whl.metadata (14 kB) -#54 119.7 Collecting imageio!=2.35.0,>=2.33 (from scikit-image->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 119.8 Downloading imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB) -#54 120.1 Collecting tifffile>=2022.8.12 (from scikit-image->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 120.1 Downloading tifffile-2025.1.10-py3-none-any.whl.metadata (31 kB) -#54 120.4 Collecting lazy-loader>=0.4 (from scikit-image->easyocr->-r /home/user/comps/retrievers/src/requirements.txt (line 5)) -#54 120.4 Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) -#54 120.6 Collecting pycparser (from cffi>=1.1.0->cairocffi->cairosvg->-r /home/user/comps/retrievers/src/requirements.txt (line 2)) -#54 120.7 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes) -#54 120.8 INFO: pip is looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. -#54 120.8 Collecting grpcio-tools>=1.41.0 (from qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 120.8 Downloading grpcio_tools-1.69.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 120.9 Downloading grpcio_tools-1.68.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 120.9 Downloading grpcio_tools-1.68.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 120.9 Downloading grpcio_tools-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.0 Downloading grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.0 Downloading grpcio_tools-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.0 Downloading grpcio_tools-1.66.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.0 INFO: pip is still looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. -#54 121.1 Downloading grpcio_tools-1.66.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.1 Downloading grpcio_tools-1.65.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.1 Downloading grpcio_tools-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.2 Downloading grpcio_tools-1.65.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.2 Downloading grpcio_tools-1.65.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.2 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. -#54 121.2 Downloading grpcio_tools-1.64.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.3 Downloading grpcio_tools-1.64.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.3 Downloading grpcio_tools-1.64.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.3 Downloading grpcio_tools-1.63.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.4 Downloading grpcio_tools-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#54 121.4 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) -#54 121.6 Collecting h2<5,>=3 (from httpx[http2]>=0.20.0->qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 121.6 Downloading h2-4.2.0-py3-none-any.whl.metadata (5.1 kB) -#54 121.9 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.0->langchain-elasticsearch->-r /home/user/comps/retrievers/src/requirements.txt (line 10)) -#54 121.9 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) -#54 122.2 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 122.3 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#54 122.6 Collecting iniconfig (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 122.6 Downloading iniconfig-2.0.0-py3-none-any.whl.metadata (2.6 kB) -#54 122.7 Collecting pluggy<2,>=1.5 (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 122.7 Downloading pluggy-1.5.0-py3-none-any.whl.metadata (4.8 kB) -#54 123.1 Collecting propcache>=0.2.0 (from yarl<2.0,>=1.12.0->aiohttp<3.11,>=3.10->langchain-pinecone->-r /home/user/comps/retrievers/src/requirements.txt (line 11)) -#54 123.1 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#54 123.3 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 123.4 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) -#54 123.5 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 123.5 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) -#54 123.9 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/retrievers/src/requirements.txt (line 3)) -#54 123.9 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) -#54 124.1 Collecting hyperframe<7,>=6.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 124.1 Downloading hyperframe-6.1.0-py3-none-any.whl.metadata (4.3 kB) -#54 124.2 Collecting hpack<5,>=4.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client>=1.10.0->qdrant-haystack->-r /home/user/comps/retrievers/src/requirements.txt (line 36)) -#54 124.3 Downloading hpack-4.1.0-py3-none-any.whl.metadata (4.6 kB) -#54 124.5 Downloading haystack_ai-2.3.1-py3-none-any.whl (350 kB) -#54 124.8 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl (311 kB) -#54 125.2 Downloading vdms-0.0.21-py3-none-any.whl (4.6 kB) -#54 125.2 Downloading bs4-0.0.2-py2.py3-none-any.whl (1.2 kB) -#54 125.2 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -#54 125.3 Downloading easyocr-1.7.2-py3-none-any.whl (2.9 MB) -#54 126.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 2.6 MB/s eta 0:00:00 -#54 126.6 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#54 126.6 Downloading future-1.0.0-py3-none-any.whl (491 kB) -#54 126.8 Downloading graspologic-3.4.1-py3-none-any.whl (5.2 MB) -#54 128.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/5.2 MB 4.0 MB/s eta 0:00:00 -#54 128.2 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.4 MB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 29.86 Successfully installed MarkupSafe-3.0.2 filelock-3.17.0 fsspec-2025.2.0 jinja2-3.1.5 mpmath-1.3.0 networkx-3.4.2 numpy-2.2.2 pillow-11.1.0 sympy-1.13.1 torch-2.6.0+cpu torchvision-0.21.0+cpu typing-extensions-4.12.2 -#75 29.86 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#75 30.74 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu -#75 31.11 Collecting beautifulsoup4 (from -r /home/user/comps/dataprep/src/requirements.txt (line 1)) -#75 31.16 Downloading beautifulsoup4-4.13.1-py3-none-any.whl.metadata (3.8 kB) -#75 31.27 Collecting cairosvg (from -r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 31.29 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -#75 31.39 Collecting decord (from -r /home/user/comps/dataprep/src/requirements.txt (line 3)) -#75 31.40 Downloading decord-0.6.0-py3-none-manylinux2010_x86_64.whl.metadata (422 bytes) -#75 31.66 Collecting docx2txt (from -r /home/user/comps/dataprep/src/requirements.txt (line 5)) -#75 31.67 Downloading docx2txt-0.8.tar.gz (2.8 kB) -#75 31.67 Preparing metadata (setup.py): started -#75 31.89 Preparing metadata (setup.py): finished with status 'done' -#75 32.16 Collecting easyocr (from -r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 32.17 Downloading easyocr-1.7.2-py3-none-any.whl.metadata (10 kB) -#75 32.42 Collecting einops (from -r /home/user/comps/dataprep/src/requirements.txt (line 7)) -#75 32.42 Downloading einops-0.8.0-py3-none-any.whl.metadata (12 kB) -#75 32.57 Collecting elasticsearch (from -r /home/user/comps/dataprep/src/requirements.txt (line 8)) -#75 32.58 Downloading elasticsearch-8.17.1-py3-none-any.whl.metadata (8.8 kB) -#75 32.87 Collecting fastapi (from -r /home/user/comps/dataprep/src/requirements.txt (line 9)) -#75 32.88 Downloading fastapi-0.115.8-py3-none-any.whl.metadata (27 kB) -#75 33.15 Collecting future (from -r /home/user/comps/dataprep/src/requirements.txt (line 10)) -#75 33.16 Downloading future-1.0.0-py3-none-any.whl.metadata (4.0 kB) -#75 33.27 Collecting graspologic (from -r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 33.28 Downloading graspologic-3.4.1-py3-none-any.whl.metadata (5.8 kB) -#75 33.53 Collecting html2text (from -r /home/user/comps/dataprep/src/requirements.txt (line 12)) -#75 33.53 Downloading html2text-2024.2.26.tar.gz (56 kB) -#75 33.61 Preparing metadata (setup.py): started -#75 33.85 Preparing metadata (setup.py): finished with status 'done' -#75 34.14 Collecting huggingface_hub (from -r /home/user/comps/dataprep/src/requirements.txt (line 13)) -#75 34.15 Downloading huggingface_hub-0.28.1-py3-none-any.whl.metadata (13 kB) -#75 34.31 Collecting ipython (from -r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 34.31 Downloading ipython-8.32.0-py3-none-any.whl.metadata (5.0 kB) -#75 34.51 Collecting langchain (from -r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 34.52 Downloading langchain-0.3.17-py3-none-any.whl.metadata (7.1 kB) -#75 34.78 Collecting langchain-community (from -r /home/user/comps/dataprep/src/requirements.txt (line 16)) -#75 34.79 Downloading langchain_community-0.3.16-py3-none-any.whl.metadata (2.9 kB) -#75 35.04 Collecting langchain-elasticsearch (from -r /home/user/comps/dataprep/src/requirements.txt (line 17)) -#75 35.05 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl.metadata (8.3 kB) -#75 35.33 Collecting langchain-experimental (from -r /home/user/comps/dataprep/src/requirements.txt (line 18)) -#75 35.34 Downloading langchain_experimental-0.3.4-py3-none-any.whl.metadata (1.7 kB) -#75 35.45 Collecting langchain-openai (from -r /home/user/comps/dataprep/src/requirements.txt (line 19)) -#75 35.46 Downloading langchain_openai-0.3.3-py3-none-any.whl.metadata (2.7 kB) -#75 ... - -#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi -#69 79.84 Successfully installed MarkupSafe-2.1.5 jinja2-3.1.4 mpmath-1.3.0 sympy-1.13.1 torch-2.6.0+cpu torchvision-0.21.0+cpu -#69 79.84 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#69 80.64 Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cpu -#69 80.64 Requirement already satisfied: datasets in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 1)) (3.2.0) -#69 80.64 Requirement already satisfied: fastapi in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 3)) (0.115.8) -#69 80.64 Requirement already satisfied: opentelemetry-api in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 4)) (1.29.0) -#69 80.64 Requirement already satisfied: opentelemetry-exporter-otlp in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) -#69 80.64 Requirement already satisfied: opentelemetry-sdk in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 6)) (1.29.0) -#69 80.64 Requirement already satisfied: prometheus-fastapi-instrumentator in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 7)) (7.0.2) -#69 80.64 Requirement already satisfied: pydantic==2.7.2 in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 8)) (2.7.2) -#69 80.64 Requirement already satisfied: pydub in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 9)) (0.25.1) -#69 80.64 Requirement already satisfied: python-multipart in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 10)) (0.0.20) -#69 80.64 Requirement already satisfied: shortuuid in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 11)) (1.0.13) -#69 80.64 Requirement already satisfied: transformers in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 12)) (4.48.2) -#69 80.64 Requirement already satisfied: uvicorn in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 13)) (0.34.0) -#69 80.65 Requirement already satisfied: zhconv in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 14)) (1.4.3) -#69 80.65 Requirement already satisfied: docarray[full] in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/asr/src/requirements.txt (line 2)) (0.40.0) -#69 80.65 Requirement already satisfied: annotated-types>=0.4.0 in /usr/local/lib/python3.11/site-packages (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) (0.7.0) -#69 80.65 Requirement already satisfied: pydantic-core==2.18.3 in /usr/local/lib/python3.11/site-packages (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) (2.18.3) -#69 80.65 Requirement already satisfied: typing-extensions>=4.6.1 in /usr/local/lib/python3.11/site-packages (from pydantic==2.7.2->-r /home/user/comps/asr/src/requirements.txt (line 8)) (4.12.2) -#69 80.67 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.17.0) -#69 80.67 Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.2.2) -#69 80.67 Requirement already satisfied: pyarrow>=15.0.0 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (19.0.0) -#69 80.67 Requirement already satisfied: dill<0.3.9,>=0.3.0 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.3.8) -#69 80.67 Requirement already satisfied: pandas in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.2.3) -#69 80.67 Requirement already satisfied: requests>=2.32.2 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.32.3) -#69 80.67 Requirement already satisfied: tqdm>=4.66.3 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (4.67.1) -#69 80.67 Requirement already satisfied: xxhash in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.5.0) -#69 80.67 Requirement already satisfied: multiprocess<0.70.17 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.70.16) -#69 80.67 Requirement already satisfied: fsspec<=2024.9.0,>=2023.1.0 in /usr/local/lib/python3.11/site-packages (from fsspec[http]<=2024.9.0,>=2023.1.0->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2024.9.0) -#69 80.67 Requirement already satisfied: aiohttp in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.11.11) -#69 80.67 Requirement already satisfied: huggingface-hub>=0.23.0 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.28.1) -#69 80.67 Requirement already satisfied: packaging in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (24.2) -#69 80.67 Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.11/site-packages (from datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (6.0.2) -#69 80.68 Requirement already satisfied: av>=10.0.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (14.1.0) -#69 80.68 Requirement already satisfied: jax>=0.4.10 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.5.0) -#69 80.68 Requirement already satisfied: lz4>=1.0.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (4.4.3) -#69 80.68 Requirement already satisfied: orjson>=3.8.2 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.10.15) -#69 80.68 Requirement already satisfied: pillow>=9.3.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (11.1.0) -#69 80.68 Requirement already satisfied: protobuf>=3.20.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (5.29.3) -#69 80.68 Requirement already satisfied: rich>=13.1.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (13.9.4) -#69 80.68 Requirement already satisfied: trimesh>=3.17.1 in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (4.6.1) -#69 80.68 Requirement already satisfied: types-pillow>=9.3.0.1 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (10.2.0.20240822) -#69 80.69 Requirement already satisfied: types-requests>=2.28.11.6 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.32.0.20241016) -#69 80.69 Requirement already satisfied: typing-inspect>=0.8.0 in /usr/local/lib/python3.11/site-packages (from docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.9.0) -#69 80.69 Requirement already satisfied: starlette<0.46.0,>=0.40.0 in /usr/local/lib/python3.11/site-packages (from fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) (0.45.3) -#69 80.69 Requirement already satisfied: deprecated>=1.2.6 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (1.2.18) -#69 80.69 Requirement already satisfied: importlib-metadata<=8.5.0,>=6.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (8.5.0) -#69 80.70 Requirement already satisfied: opentelemetry-exporter-otlp-proto-grpc==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) -#69 80.70 Requirement already satisfied: opentelemetry-exporter-otlp-proto-http==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) -#69 80.70 Requirement already satisfied: googleapis-common-protos~=1.52 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.66.0) -#69 80.70 Requirement already satisfied: grpcio<2.0.0,>=1.63.2 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.70.0) -#69 80.70 Requirement already satisfied: opentelemetry-exporter-otlp-proto-common==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) -#69 80.70 Requirement already satisfied: opentelemetry-proto==1.29.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp->-r /home/user/comps/asr/src/requirements.txt (line 5)) (1.29.0) -#69 80.71 Requirement already satisfied: opentelemetry-semantic-conventions==0.50b0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-sdk->-r /home/user/comps/asr/src/requirements.txt (line 6)) (0.50b0) -#69 80.72 Requirement already satisfied: prometheus-client<1.0.0,>=0.8.0 in /usr/local/lib/python3.11/site-packages (from prometheus-fastapi-instrumentator->-r /home/user/comps/asr/src/requirements.txt (line 7)) (0.21.1) -#69 80.77 Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.11/site-packages (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) (2024.11.6) -#69 80.77 Requirement already satisfied: tokenizers<0.22,>=0.21 in /usr/local/lib/python3.11/site-packages (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) (0.21.0) -#69 80.77 Requirement already satisfied: safetensors>=0.4.1 in /usr/local/lib/python3.11/site-packages (from transformers->-r /home/user/comps/asr/src/requirements.txt (line 12)) (0.5.2) -#69 80.77 Requirement already satisfied: click>=7.0 in /usr/local/lib/python3.11/site-packages (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) (8.1.8) -#69 80.77 Requirement already satisfied: h11>=0.8 in /usr/local/lib/python3.11/site-packages (from uvicorn->-r /home/user/comps/asr/src/requirements.txt (line 13)) (0.14.0) -#69 80.78 Requirement already satisfied: wrapt<2,>=1.10 in /usr/local/lib/python3.11/site-packages (from deprecated>=1.2.6->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (1.17.2) -#69 80.80 Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.4.4) -#69 80.81 Requirement already satisfied: aiosignal>=1.1.2 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.3.2) -#69 80.81 Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (25.1.0) -#69 80.81 Requirement already satisfied: frozenlist>=1.1.1 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.5.0) -#69 80.81 Requirement already satisfied: multidict<7.0,>=4.5 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (6.1.0) -#69 80.81 Requirement already satisfied: propcache>=0.2.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (0.2.1) -#69 80.81 Requirement already satisfied: yarl<2.0,>=1.17.0 in /usr/local/lib/python3.11/site-packages (from aiohttp->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.18.3) -#69 80.83 Requirement already satisfied: zipp>=3.20 in /usr/local/lib/python3.11/site-packages (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api->-r /home/user/comps/asr/src/requirements.txt (line 4)) (3.21.0) -#69 80.83 Requirement already satisfied: jaxlib<=0.5.0,>=0.5.0 in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.5.0) -#69 80.83 Requirement already satisfied: ml_dtypes>=0.4.0 in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.5.1) -#69 80.83 Requirement already satisfied: opt_einsum in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.4.0) -#69 80.83 Requirement already satisfied: scipy>=1.11.1 in /usr/local/lib/python3.11/site-packages (from jax>=0.4.10->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.15.1) -#69 80.87 Requirement already satisfied: python-dateutil>=2.8.2 in /usr/local/lib/python3.11/site-packages (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.9.0.post0) -#69 80.87 Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.11/site-packages (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2025.1) -#69 80.87 Requirement already satisfied: tzdata>=2022.7 in /usr/local/lib/python3.11/site-packages (from pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2025.1) -#69 80.89 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.4.1) -#69 80.89 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (3.10) -#69 80.89 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2.3.0) -#69 80.89 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/site-packages (from requests>=2.32.2->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (2025.1.31) -#69 80.89 Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.11/site-packages (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.0.0) -#69 80.89 Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /usr/local/lib/python3.11/site-packages (from rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.19.1) -#69 80.90 Requirement already satisfied: anyio<5,>=3.6.2 in /usr/local/lib/python3.11/site-packages (from starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) (4.8.0) -#69 80.92 Requirement already satisfied: colorlog in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (6.9.0) -#69 80.92 Requirement already satisfied: manifold3d>=2.3.0 in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.0.1) -#69 80.92 Requirement already satisfied: chardet in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (5.2.0) -#69 80.92 Requirement already satisfied: lxml in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (5.3.0) -#69 80.92 Requirement already satisfied: jsonschema in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (4.23.0) -#69 80.92 Requirement already satisfied: networkx in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (3.4.2) -#69 80.92 Requirement already satisfied: svg.path in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (6.3) -#69 80.92 Requirement already satisfied: pycollada in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.8) -#69 80.92 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (75.8.0) -#69 80.93 Requirement already satisfied: shapely in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.0.7) -#69 80.93 Requirement already satisfied: rtree in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.3.0) -#69 80.93 Requirement already satisfied: httpx in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.28.1) -#69 80.93 Requirement already satisfied: embreex in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2.17.7.post6) -#69 80.93 Requirement already satisfied: xatlas in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.0.9) -#69 80.93 Requirement already satisfied: vhacdx in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.0.8.post1) -#69 80.93 Requirement already satisfied: mapbox_earcut>=1.0.2 in /usr/local/lib/python3.11/site-packages (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.0.3) -#69 80.94 Requirement already satisfied: mypy-extensions>=0.3.0 in /usr/local/lib/python3.11/site-packages (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.0.0) -#69 80.96 Requirement already satisfied: sniffio>=1.1 in /usr/local/lib/python3.11/site-packages (from anyio<5,>=3.6.2->starlette<0.46.0,>=0.40.0->fastapi->-r /home/user/comps/asr/src/requirements.txt (line 3)) (1.3.1) -#69 81.01 Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.11/site-packages (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.1.2) -#69 81.03 Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.11/site-packages (from python-dateutil>=2.8.2->pandas->datasets->-r /home/user/comps/asr/src/requirements.txt (line 1)) (1.17.0) -#69 81.08 Requirement already satisfied: httpcore==1.* in /usr/local/lib/python3.11/site-packages (from httpx->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (1.0.7) -#69 81.09 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /usr/local/lib/python3.11/site-packages (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (2024.10.1) -#69 81.09 Requirement already satisfied: referencing>=0.28.4 in /usr/local/lib/python3.11/site-packages (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.36.2) -#69 81.09 Requirement already satisfied: rpds-py>=0.7.1 in /usr/local/lib/python3.11/site-packages (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/asr/src/requirements.txt (line 2)) (0.22.3) -#69 81.26 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#69 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 148.5 Successfully installed MarkupSafe-3.0.2 accelerate-0.33.0 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 datasets-3.2.0 deprecated-1.2.18 diffusers-0.31.0 dill-0.3.8 docarray-0.40.0 embreex-2.17.7.post6 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2024.9.0 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jinja2-3.1.5 joblib-1.4.2 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 langchain-core-0.3.33 langsmith-0.3.4 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 mpmath-1.3.0 multidict-6.1.0 multiprocess-0.70.16 mypy-extensions-1.0.0 networkx-3.4.2 numpy-1.26.4 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 optimum-1.24.0 optimum-habana-1.15.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 psutil-6.1.1 pyarrow-19.0.0 pycollada-0.8 pydantic-2.7.2 pydantic-core-2.18.3 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scikit-learn-1.6.1 scipy-1.15.1 sentence-transformers-3.2.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 sympy-1.13.1 tenacity-9.0.0 threadpoolctl-3.5.0 tokenizers-0.20.3 torch-2.6.0 tqdm-4.67.1 transformers-4.45.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 -#58 148.5 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#58 ... - -#44 [opea/embedding-multimodal-bridgetower:latest 5/6] RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r /home/user/comps/third_parties/bridgetower/src/requirements.txt -#44 144.0 Successfully installed MarkupSafe-3.0.2 SQLAlchemy-2.0.37 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 async-timeout-4.0.3 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 deprecated-1.2.18 docarray-0.40.0 embreex-2.17.7.post6 exceptiongroup-1.2.2 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2025.2.0 googleapis-common-protos-1.66.0 greenlet-3.1.1 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jinja2-3.1.5 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 langchain-0.3.17 langchain-core-0.3.33 langchain-text-splitters-0.3.5 langsmith-0.3.4 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 mpmath-1.3.0 multidict-6.1.0 mypy-extensions-1.0.0 networkx-3.4.2 numpy-1.26.4 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pycollada-0.8 pydantic-2.8.2 pydantic-core-2.20.1 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scipy-1.15.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 sympy-1.13.1 tenacity-9.0.0 tokenizers-0.21.0 torch-2.6.0 torchvision-0.21.0 tqdm-4.67.1 transformers-4.48.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 -#44 144.0 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#44 DONE 150.1s - -#37 [opea/lvm:latest 4/5] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/requirements.txt -#37 147.0 Successfully installed MarkupSafe-3.0.2 accelerate-0.33.0 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 av-14.1.0 certifi-2025.1.31 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 datasets-3.2.0 deprecated-1.2.18 diffusers-0.31.0 dill-0.3.8 docarray-0.40.0 embreex-2.17.7.post6 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2024.9.0 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jax-0.5.0 jaxlib-0.5.0 jinja2-3.1.5 joblib-1.4.2 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 langchain-core-0.3.33 langsmith-0.3.4 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 mdurl-0.1.2 ml_dtypes-0.5.1 mpmath-1.3.0 multidict-6.1.0 multiprocess-0.70.16 mypy-extensions-1.0.0 networkx-3.4.2 numpy-1.26.4 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 opt_einsum-3.4.0 optimum-1.24.0 optimum-habana-1.15.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pillow-11.1.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 psutil-6.1.1 pyarrow-19.0.0 pycollada-0.8 pydantic-2.7.2 pydantic-core-2.18.3 pydub-0.25.1 pygments-2.19.1 python-dateutil-2.9.0.post0 pytz-2025.1 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scikit-learn-1.6.1 scipy-1.15.1 sentence-transformers-3.2.1 shapely-2.0.7 shortuuid-1.0.13 six-1.17.0 sniffio-1.3.1 starlette-0.45.3 svg.path-6.3 sympy-1.13.1 tenacity-9.0.0 threadpoolctl-3.5.0 tokenizers-0.20.3 torch-2.6.0 tqdm-4.67.1 transformers-4.45.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.1 urllib3-2.3.0 uvicorn-0.34.0 vhacdx-0.0.8.post1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zipp-3.21.0 zstandard-0.23.0 -#37 147.0 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#37 DONE 154.6s - -#69 [opea/whisper:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt && if [ "cpu" = "cpu" ]; then pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu ; pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu -r /home/user/comps/asr/src/requirements.txt ; else pip install --no-cache-dir -r /home/user/comps/asr/src/requirements.txt ; fi -#69 DONE 88.7s - -#76 [opea/lvm:latest 5/5] WORKDIR /home/user/comps/lvms/src -#76 DONE 0.0s - -#77 [opea/embedding-multimodal-bridgetower:latest 6/6] WORKDIR /home/user/comps/third_parties/bridgetower/src/ -#77 DONE 0.0s - -#78 [opea/whisper:latest 6/6] WORKDIR /home/user/comps/asr/src/integrations/dependency/whisper -#78 DONE 0.0s - -#79 [opea/whisper:latest] exporting to image -#79 exporting layers -#79 ... - -#58 [opea/lvm-llava:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/user/comps/lvms/src/integrations/dependency/llava/requirements.txt -#58 DONE 149.7s - -#80 [opea/lvm-llava:latest 6/6] WORKDIR /home/user/comps/lvms/src/integrations/dependency/llava -#80 DONE 0.0s - -#81 [opea/lvm-llava:latest] exporting to image -#81 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 35.56 Collecting langchain-pinecone (from -r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 35.59 Downloading langchain_pinecone-0.2.2-py3-none-any.whl.metadata (1.6 kB) -#75 35.84 Collecting langchain-text-splitters (from -r /home/user/comps/dataprep/src/requirements.txt (line 21)) -#75 35.85 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl.metadata (2.3 kB) -#75 35.95 Collecting langchain_huggingface (from -r /home/user/comps/dataprep/src/requirements.txt (line 22)) -#75 35.96 Downloading langchain_huggingface-0.1.2-py3-none-any.whl.metadata (1.3 kB) -#75 36.20 Collecting langchain_milvus (from -r /home/user/comps/dataprep/src/requirements.txt (line 23)) -#75 36.21 Downloading langchain_milvus-0.1.8-py3-none-any.whl.metadata (1.9 kB) -#75 36.53 Collecting llama-index (from -r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 36.54 Downloading llama_index-0.12.15-py3-none-any.whl.metadata (12 kB) -#75 36.83 Collecting llama-index-core (from -r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 36.84 Downloading llama_index_core-0.12.15-py3-none-any.whl.metadata (2.5 kB) -#75 36.95 Collecting llama-index-embeddings-text-embeddings-inference (from -r /home/user/comps/dataprep/src/requirements.txt (line 26)) -#75 36.96 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl.metadata (803 bytes) -#75 37.21 Collecting llama-index-graph-stores-neo4j (from -r /home/user/comps/dataprep/src/requirements.txt (line 27)) -#75 37.22 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl.metadata (694 bytes) -#75 37.48 Collecting llama-index-llms-openai (from -r /home/user/comps/dataprep/src/requirements.txt (line 28)) -#75 37.49 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl.metadata (3.3 kB) -#75 37.74 Collecting llama-index-llms-openai-like (from -r /home/user/comps/dataprep/src/requirements.txt (line 29)) -#75 37.75 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl.metadata (751 bytes) -#75 38.00 Collecting markdown (from -r /home/user/comps/dataprep/src/requirements.txt (line 30)) -#75 38.01 Downloading Markdown-3.7-py3-none-any.whl.metadata (7.0 kB) -#75 38.28 Collecting moviepy (from -r /home/user/comps/dataprep/src/requirements.txt (line 31)) -#75 38.29 Downloading moviepy-2.1.2-py3-none-any.whl.metadata (6.9 kB) -#75 38.54 Collecting neo4j (from -r /home/user/comps/dataprep/src/requirements.txt (line 32)) -#75 38.56 Downloading neo4j-5.27.0-py3-none-any.whl.metadata (5.9 kB) -#75 38.56 Requirement already satisfied: numpy in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/dataprep/src/requirements.txt (line 33)) (2.2.2) -#75 38.71 Collecting openai (from -r /home/user/comps/dataprep/src/requirements.txt (line 34)) -#75 38.72 Downloading openai-1.61.0-py3-none-any.whl.metadata (27 kB) -#75 38.95 Collecting openai-whisper (from -r /home/user/comps/dataprep/src/requirements.txt (line 35)) -#75 38.96 Downloading openai-whisper-20240930.tar.gz (800 kB) -#75 38.99 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 800.5/800.5 kB 89.0 MB/s eta 0:00:00 -#75 39.02 Installing build dependencies: started -#75 41.46 Installing build dependencies: finished with status 'done' -#75 41.46 Getting requirements to build wheel: started -#75 41.71 Getting requirements to build wheel: finished with status 'done' -#75 41.74 Preparing metadata (pyproject.toml): started -#75 41.94 Preparing metadata (pyproject.toml): finished with status 'done' -#75 42.10 Collecting opencv-python (from -r /home/user/comps/dataprep/src/requirements.txt (line 36)) -#75 42.11 Downloading opencv_python-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) -#75 42.37 Collecting opensearch-py (from -r /home/user/comps/dataprep/src/requirements.txt (line 37)) -#75 42.38 Downloading opensearch_py-2.8.0-py3-none-any.whl.metadata (6.9 kB) -#75 42.62 Collecting pandas (from -r /home/user/comps/dataprep/src/requirements.txt (line 38)) -#75 42.63 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB) -#75 42.92 Collecting pgvector==0.2.5 (from -r /home/user/comps/dataprep/src/requirements.txt (line 39)) -#75 42.93 Downloading pgvector-0.2.5-py2.py3-none-any.whl.metadata (9.9 kB) -#75 42.94 Requirement already satisfied: Pillow in /usr/local/lib/python3.11/site-packages (from -r /home/user/comps/dataprep/src/requirements.txt (line 40)) (11.1.0) -#75 43.18 Collecting pinecone-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 41)) -#75 43.19 Downloading pinecone_client-5.0.1-py3-none-any.whl.metadata (19 kB) -#75 43.30 Collecting prometheus-fastapi-instrumentator (from -r /home/user/comps/dataprep/src/requirements.txt (line 42)) -#75 43.31 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl.metadata (13 kB) -#75 43.56 Collecting psycopg2 (from -r /home/user/comps/dataprep/src/requirements.txt (line 43)) -#75 43.58 Downloading psycopg2-2.9.10.tar.gz (385 kB) -#75 43.64 Preparing metadata (setup.py): started -#75 43.88 Preparing metadata (setup.py): finished with status 'done' -#75 44.29 Collecting pymupdf (from -r /home/user/comps/dataprep/src/requirements.txt (line 44)) -#75 44.30 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (3.4 kB) -#75 44.40 Collecting pyspark (from -r /home/user/comps/dataprep/src/requirements.txt (line 45)) -#75 44.40 Downloading pyspark-3.5.4.tar.gz (317.3 MB) -#75 45.10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 317.3/317.3 MB 535.6 MB/s eta 0:00:00 -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 136.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.4/38.4 MB 4.6 MB/s eta 0:00:00 -#54 136.6 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl (45 kB) -#54 136.6 Downloading langchain_pinecone-0.2.2-py3-none-any.whl (11 kB) -#54 136.7 Downloading langchain_community-0.3.16-py3-none-any.whl (2.5 MB) -#54 137.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 5.5 MB/s eta 0:00:00 -#54 137.2 Downloading langchain_huggingface-0.1.2-py3-none-any.whl (21 kB) -#54 137.2 Downloading langchain_milvus-0.1.8-py3-none-any.whl (27 kB) -#54 137.2 Downloading llama_index_core-0.12.15-py3-none-any.whl (1.6 MB) -#54 137.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 5.5 MB/s eta 0:00:00 -#54 137.6 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl (6.2 kB) -#54 137.6 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl (3.1 kB) -#54 137.6 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl (14 kB) -#54 137.7 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl (3.1 kB) -#54 137.7 Downloading llama_index_llms_text_generation_inference-0.3.1-py3-none-any.whl (6.5 kB) -#54 137.7 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl (17 kB) -#54 137.8 Downloading neo4j-5.27.0-py3-none-any.whl (301 kB) -#54 137.8 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) -#54 140.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 6.4 MB/s eta 0:00:00 -#54 140.7 Downloading opensearch_py-2.8.0-py3-none-any.whl (353 kB) -#54 140.8 Downloading pathway-0.3.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB) -#54 142.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.0/14.0 MB 7.7 MB/s eta 0:00:00 -#54 142.7 Downloading sqlglot-10.6.1-py3-none-any.whl (223 kB) -#54 142.7 Downloading pgvector-0.3.6-py3-none-any.whl (24 kB) -#54 142.8 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#54 142.8 Downloading psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#54 143.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 9.0 MB/s eta 0:00:00 -#54 143.2 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) -#54 143.3 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#54 143.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 7.0 MB/s eta 0:00:00 -#54 143.6 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (20.0 MB) -#54 146.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 20.0/20.0 MB 7.2 MB/s eta 0:00:00 -#54 146.4 Downloading pytesseract-0.3.13-py3-none-any.whl (14 kB) -#54 146.4 Downloading python_docx-1.1.2-py3-none-any.whl (244 kB) -#54 146.5 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) -#54 146.6 Downloading python_pptx-1.0.2-py3-none-any.whl (472 kB) -#54 146.7 Downloading qdrant_haystack-7.0.0-py3-none-any.whl (23 kB) -#54 146.7 Downloading redis-5.2.1-py3-none-any.whl (261 kB) -#54 146.8 Downloading sentence_transformers-3.4.1-py3-none-any.whl (275 kB) -#54 146.9 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#54 146.9 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) -#54 147.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 7.2 MB/s eta 0:00:00 -#54 147.1 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#54 147.2 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#54 147.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 7.2 MB/s eta 0:00:00 -#54 147.4 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#54 147.4 Downloading anytree-2.12.1-py3-none-any.whl (44 kB) -#54 147.4 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 49.30 Preparing metadata (setup.py): started -#75 49.56 Preparing metadata (setup.py): finished with status 'done' -#75 49.80 Collecting pytesseract (from -r /home/user/comps/dataprep/src/requirements.txt (line 46)) -#75 49.81 Downloading pytesseract-0.3.13-py3-none-any.whl.metadata (11 kB) -#75 50.11 Collecting python-bidi (from -r /home/user/comps/dataprep/src/requirements.txt (line 47)) -#75 50.12 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#75 50.22 Collecting python-docx (from -r /home/user/comps/dataprep/src/requirements.txt (line 48)) -#75 50.23 Downloading python_docx-1.1.2-py3-none-any.whl.metadata (2.0 kB) -#75 50.50 Collecting python-pptx (from -r /home/user/comps/dataprep/src/requirements.txt (line 49)) -#75 50.50 Downloading python_pptx-1.0.2-py3-none-any.whl.metadata (2.5 kB) -#75 50.80 Collecting qdrant-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 50.81 Downloading qdrant_client-1.13.2-py3-none-any.whl.metadata (10 kB) -#75 51.07 Collecting redis (from -r /home/user/comps/dataprep/src/requirements.txt (line 51)) -#75 51.08 Downloading redis-5.2.1-py3-none-any.whl.metadata (9.1 kB) -#75 51.46 Collecting scipy (from -r /home/user/comps/dataprep/src/requirements.txt (line 52)) -#75 51.47 Downloading scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#75 51.64 Collecting sentence_transformers (from -r /home/user/comps/dataprep/src/requirements.txt (line 53)) -#75 51.65 Downloading sentence_transformers-3.4.1-py3-none-any.whl.metadata (10 kB) -#75 51.90 Collecting shortuuid (from -r /home/user/comps/dataprep/src/requirements.txt (line 54)) -#75 51.91 Downloading shortuuid-1.0.13-py3-none-any.whl.metadata (5.8 kB) -#75 52.18 Collecting tiktoken (from -r /home/user/comps/dataprep/src/requirements.txt (line 55)) -#75 52.19 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#75 52.48 Collecting tqdm (from -r /home/user/comps/dataprep/src/requirements.txt (line 56)) -#75 52.49 Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) -#75 52.73 Collecting typing (from -r /home/user/comps/dataprep/src/requirements.txt (line 57)) -#75 52.74 Downloading typing-3.7.4.3.tar.gz (78 kB) -#75 52.75 Preparing metadata (setup.py): started -#75 52.92 Preparing metadata (setup.py): finished with status 'done' -#75 53.18 Collecting tzlocal (from -r /home/user/comps/dataprep/src/requirements.txt (line 58)) -#75 53.19 Downloading tzlocal-5.2-py3-none-any.whl.metadata (7.8 kB) -#75 53.48 Collecting uvicorn (from -r /home/user/comps/dataprep/src/requirements.txt (line 60)) -#75 53.49 Downloading uvicorn-0.34.0-py3-none-any.whl.metadata (6.5 kB) -#75 ... - -#82 [opea/lvm:latest] exporting to image -#82 ... - -#83 [opea/embedding-multimodal-bridgetower:latest] exporting to image -#83 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 53.77 Collecting vdms (from -r /home/user/comps/dataprep/src/requirements.txt (line 61)) -#75 53.78 Downloading vdms-0.0.21-py3-none-any.whl.metadata (600 bytes) -#75 54.02 Collecting webvtt-py (from -r /home/user/comps/dataprep/src/requirements.txt (line 62)) -#75 54.04 Downloading webvtt_py-0.5.1-py3-none-any.whl.metadata (3.4 kB) -#75 54.36 Collecting docarray[full] (from -r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 54.37 Downloading docarray-0.40.0-py3-none-any.whl.metadata (36 kB) -#75 54.63 Collecting unstructured[all-docs] (from -r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 54.64 Downloading unstructured-0.16.17-py3-none-any.whl.metadata (24 kB) -#75 54.93 Collecting soupsieve>1.2 (from beautifulsoup4->-r /home/user/comps/dataprep/src/requirements.txt (line 1)) -#75 54.93 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB) -#75 54.94 Requirement already satisfied: typing-extensions>=4.0.0 in /usr/local/lib/python3.11/site-packages (from beautifulsoup4->-r /home/user/comps/dataprep/src/requirements.txt (line 1)) (4.12.2) -#75 55.22 Collecting cairocffi (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 55.23 Downloading cairocffi-1.7.1-py3-none-any.whl.metadata (3.3 kB) -#75 55.33 Collecting cssselect2 (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 55.34 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -#75 55.59 Collecting defusedxml (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 55.60 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB) -#75 55.75 Collecting tinycss2 (from cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 55.76 Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB) -#75 55.91 Collecting av>=10.0.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 55.92 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB) -#75 ... - -#79 [opea/whisper:latest] exporting to image -#79 exporting layers 12.4s done -#79 writing image sha256:7c0fbbf152d679f6cd5e6722baf2f2dc6ee06b3a412ec6b88b40ddfd93a7093b done -#79 naming to docker.io/opea/whisper:latest done -#79 DONE 12.4s - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 56.18 Collecting jax>=0.4.10 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 56.19 Downloading jax-0.5.0-py3-none-any.whl.metadata (22 kB) -#75 56.35 Collecting lz4>=1.0.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 56.36 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#75 56.74 Collecting orjson>=3.8.2 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 56.75 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB) -#75 57.01 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 57.02 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#75 57.36 Collecting pydantic>=1.10.8 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 57.37 Downloading pydantic-2.10.6-py3-none-any.whl.metadata (30 kB) -#75 57.64 Collecting pydub<0.26.0,>=0.25.1 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 57.65 Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB) -#75 57.94 Collecting rich>=13.1.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 57.95 Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB) -#75 58.31 Collecting trimesh>=3.17.1 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 58.32 Downloading trimesh-4.6.1-py3-none-any.whl.metadata (18 kB) -#75 58.60 Collecting types-pillow>=9.3.0.1 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 58.61 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl.metadata (1.8 kB) -#75 58.88 Collecting types-requests>=2.28.11.6 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 58.89 Downloading types_requests-2.32.0.20241016-py3-none-any.whl.metadata (1.9 kB) -#75 59.15 Collecting typing-inspect>=0.8.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 59.16 Downloading https://download.pytorch.org/whl/typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#75 59.16 Requirement already satisfied: torch in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (2.6.0+cpu) -#75 59.16 Requirement already satisfied: torchvision>=0.5 in /usr/local/lib/python3.11/site-packages (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (0.21.0+cpu) -#75 59.50 Collecting opencv-python-headless (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 59.51 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB) -#75 59.82 Collecting scikit-image (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 59.83 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (14 kB) -#75 59.97 Collecting PyYAML (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 59.97 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) -#75 60.16 Collecting Shapely (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 60.17 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB) -#75 60.46 Collecting pyclipper (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 60.48 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.0 kB) -#75 60.62 Collecting ninja (from easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 60.63 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.metadata (5.3 kB) -#75 60.90 Collecting elastic-transport<9,>=8.15.1 (from elasticsearch->-r /home/user/comps/dataprep/src/requirements.txt (line 8)) -#75 60.92 Downloading elastic_transport-8.17.0-py3-none-any.whl.metadata (3.6 kB) -#75 61.19 Collecting starlette<0.46.0,>=0.40.0 (from fastapi->-r /home/user/comps/dataprep/src/requirements.txt (line 9)) -#75 61.20 Downloading starlette-0.45.3-py3-none-any.whl.metadata (6.3 kB) -#75 61.37 Collecting POT<0.10,>=0.9 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 61.38 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB) -#75 61.50 Collecting anytree<3.0.0,>=2.12.1 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 61.50 Downloading anytree-2.12.1-py3-none-any.whl.metadata (8.1 kB) -#75 61.60 Collecting beartype<0.19.0,>=0.18.5 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 61.61 Downloading beartype-0.18.5-py3-none-any.whl.metadata (30 kB) -#75 61.76 Collecting gensim<5.0.0,>=4.3.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 61.77 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB) -#75 62.06 Collecting graspologic-native<2.0.0,>=1.2.1 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 62.07 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.6 kB) -#75 62.16 Collecting hyppo<0.5.0,>=0.4.0 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 62.17 Downloading hyppo-0.4.0-py3-none-any.whl.metadata (1.7 kB) -#75 62.42 Collecting joblib<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 62.43 Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 152.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 8.2 MB/s eta 0:00:00 -#54 152.3 Downloading beartype-0.18.5-py3-none-any.whl (917 kB) -#54 152.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 917.8/917.8 kB 8.7 MB/s eta 0:00:00 -#54 152.4 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#54 152.5 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#54 152.5 Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) -#54 152.5 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#54 152.6 Downloading dirtyjson-1.0.8-py3-none-any.whl (25 kB) -#54 152.6 Downloading diskcache-5.6.3-py3-none-any.whl (45 kB) -#54 152.6 Downloading elasticsearch-8.17.1-py3-none-any.whl (653 kB) -#54 152.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 654.0/654.0 kB 8.4 MB/s eta 0:00:00 -#54 152.8 Downloading filetype-1.2.0-py2.py3-none-any.whl (19 kB) -#54 152.8 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.7 MB) -#54 157.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 26.7/26.7 MB 5.9 MB/s eta 0:00:00 -#54 157.3 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365 kB) -#54 157.4 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#54 157.5 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#54 157.5 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#54 157.5 Downloading httpx_sse-0.4.0-py3-none-any.whl (7.8 kB) -#54 157.6 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#54 157.7 Downloading hyppo-0.4.0-py3-none-any.whl (146 kB) -#54 157.7 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) -#54 158.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 5.7 MB/s eta 0:00:00 -#54 158.1 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) -#54 158.2 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) -#54 158.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 6.3 MB/s eta 0:00:00 -#54 158.4 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) -#54 158.5 Downloading langchain_tests-0.3.10-py3-none-any.whl (37 kB) -#54 158.5 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) -#54 158.6 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl (2.9 kB) -#54 158.7 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) -#54 159.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 5.3 MB/s eta 0:00:00 -#54 159.6 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#54 159.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 6.1 MB/s eta 0:00:00 -#54 159.9 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB) -#54 161.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.6/8.6 MB 6.7 MB/s eta 0:00:00 -#54 161.2 Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB) -#54 161.2 Downloading nltk-3.9.1-py3-none-any.whl (1.5 MB) -#54 161.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 6.5 MB/s eta 0:00:00 -#54 161.5 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB) -#54 162.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/3.8 MB 6.5 MB/s eta 0:00:00 -#54 162.1 Downloading openai-1.61.0-py3-none-any.whl (460 kB) -#54 162.2 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#54 162.3 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#54 162.3 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 62.80 Collecting matplotlib<4.0.0,>=3.8.4 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 62.81 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB) -#75 62.82 Requirement already satisfied: networkx<4,>=3 in /usr/local/lib/python3.11/site-packages (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) (3.4.2) -#75 63.35 Collecting numpy (from -r /home/user/comps/dataprep/src/requirements.txt (line 33)) -#75 63.36 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) -#75 63.55 Collecting scikit-learn<2.0.0,>=1.4.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 63.56 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB) -#75 63.58 Collecting scipy (from -r /home/user/comps/dataprep/src/requirements.txt (line 52)) -#75 63.59 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB) -#75 63.87 Collecting seaborn<0.14.0,>=0.13.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 63.88 Downloading seaborn-0.13.2-py3-none-any.whl.metadata (5.4 kB) -#75 64.17 Collecting statsmodels<0.15.0,>=0.14.2 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 64.18 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#75 64.44 Collecting umap-learn<0.6.0,>=0.5.6 (from graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 64.45 Downloading umap_learn-0.5.7-py3-none-any.whl.metadata (21 kB) -#75 64.48 Requirement already satisfied: filelock in /usr/local/lib/python3.11/site-packages (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) (3.17.0) -#75 64.48 Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.11/site-packages (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) (2025.2.0) -#75 64.74 Collecting packaging>=20.9 (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) -#75 64.75 Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB) -#75 65.02 Collecting requests (from huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) -#75 65.03 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) -#75 65.14 Collecting decorator (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 65.15 Downloading decorator-5.1.1-py3-none-any.whl.metadata (4.0 kB) -#75 65.42 Collecting jedi>=0.16 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 65.42 Downloading jedi-0.19.2-py2.py3-none-any.whl.metadata (22 kB) -#75 65.53 Collecting matplotlib-inline (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 65.54 Downloading matplotlib_inline-0.1.7-py3-none-any.whl.metadata (3.9 kB) -#75 65.67 Collecting pexpect>4.3 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 65.68 Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB) -#75 65.82 Collecting prompt_toolkit<3.1.0,>=3.0.41 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 65.82 Downloading prompt_toolkit-3.0.50-py3-none-any.whl.metadata (6.6 kB) -#75 66.07 Collecting pygments>=2.4.0 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 66.08 Downloading pygments-2.19.1-py3-none-any.whl.metadata (2.5 kB) -#75 66.17 Collecting stack_data (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 66.18 Downloading stack_data-0.6.3-py3-none-any.whl.metadata (18 kB) -#75 66.30 Collecting traitlets>=5.13.0 (from ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 66.31 Downloading traitlets-5.14.3-py3-none-any.whl.metadata (10 kB) -#75 66.73 Collecting SQLAlchemy<3,>=1.4 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 66.74 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB) -#75 67.29 Collecting aiohttp<4.0.0,>=3.8.3 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 67.29 Downloading aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#75 67.56 Collecting langchain-core<0.4.0,>=0.3.33 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 67.57 Downloading langchain_core-0.3.33-py3-none-any.whl.metadata (6.3 kB) -#75 67.88 Collecting langsmith<0.4,>=0.1.17 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 67.89 Downloading langsmith-0.3.4-py3-none-any.whl.metadata (14 kB) -#75 68.04 Collecting tenacity!=8.4.0,<10,>=8.1.0 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 68.05 Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB) -#75 68.33 Collecting dataclasses-json<0.7,>=0.5.7 (from langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) -#75 68.34 Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) -#75 68.60 Collecting httpx-sse<0.5.0,>=0.4.0 (from langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) -#75 68.61 Downloading httpx_sse-0.4.0-py3-none-any.whl.metadata (9.0 kB) -#75 68.97 Collecting pydantic-settings<3.0.0,>=2.4.0 (from langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) -#75 68.98 Downloading pydantic_settings-2.7.1-py3-none-any.whl.metadata (3.5 kB) -#75 69.07 Collecting aiohttp<4.0.0,>=3.8.3 (from langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 69.08 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) -#75 69.35 Collecting langchain-tests<0.4.0,>=0.3.7 (from langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 69.36 Downloading langchain_tests-0.3.10-py3-none-any.whl.metadata (3.6 kB) -#75 69.49 Collecting pinecone<6.0.0,>=5.4.0 (from langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 69.50 Downloading pinecone-5.4.2-py3-none-any.whl.metadata (19 kB) -#75 69.88 Collecting tokenizers>=0.19.1 (from langchain_huggingface->-r /home/user/comps/dataprep/src/requirements.txt (line 22)) -#75 69.89 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) -#75 70.03 Collecting transformers>=4.39.0 (from langchain_huggingface->-r /home/user/comps/dataprep/src/requirements.txt (line 22)) -#75 70.04 Downloading transformers-4.48.2-py3-none-any.whl.metadata (44 kB) -#75 70.57 Collecting pymilvus<3.0.0,>=2.5.0 (from langchain_milvus->-r /home/user/comps/dataprep/src/requirements.txt (line 23)) -#75 70.58 Downloading pymilvus-2.5.4-py3-none-any.whl.metadata (5.7 kB) -#75 70.81 Collecting llama-index-agent-openai<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 70.82 Downloading llama_index_agent_openai-0.4.3-py3-none-any.whl.metadata (727 bytes) -#75 71.05 Collecting llama-index-cli<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 71.06 Downloading llama_index_cli-0.4.0-py3-none-any.whl.metadata (1.5 kB) -#75 71.33 Collecting llama-index-embeddings-openai<0.4.0,>=0.3.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 71.34 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl.metadata (684 bytes) -#75 71.58 Collecting llama-index-indices-managed-llama-cloud>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 71.59 Downloading llama_index_indices_managed_llama_cloud-0.6.4-py3-none-any.whl.metadata (3.6 kB) -#75 71.84 Collecting llama-index-multi-modal-llms-openai<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 71.85 Downloading llama_index_multi_modal_llms_openai-0.4.3-py3-none-any.whl.metadata (726 bytes) -#75 72.07 Collecting llama-index-program-openai<0.4.0,>=0.3.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 72.08 Downloading llama_index_program_openai-0.3.1-py3-none-any.whl.metadata (764 bytes) -#75 72.31 Collecting llama-index-question-gen-openai<0.4.0,>=0.3.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 72.32 Downloading llama_index_question_gen_openai-0.3.0-py3-none-any.whl.metadata (783 bytes) -#75 72.58 Collecting llama-index-readers-file<0.5.0,>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 72.59 Downloading llama_index_readers_file-0.4.4-py3-none-any.whl.metadata (5.4 kB) -#75 ... - -#83 [opea/embedding-multimodal-bridgetower:latest] exporting to image -#83 exporting layers 29.4s done -#83 writing image sha256:08f8bce4d6cd732c2bb137735f561df87262207b27c0feff75c89079c8a524ef done -#83 naming to docker.io/opea/embedding-multimodal-bridgetower:latest done -#83 DONE 29.4s - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 72.83 Collecting llama-index-readers-llama-parse>=0.4.0 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 72.84 Downloading llama_index_readers_llama_parse-0.4.0-py3-none-any.whl.metadata (3.6 kB) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 164.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 6.9 MB/s eta 0:00:00 -#54 164.3 Downloading pinecone-5.4.2-py3-none-any.whl (427 kB) -#54 164.4 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (897 kB) -#54 164.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 897.5/897.5 kB 8.1 MB/s eta 0:00:00 -#54 164.5 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#54 164.6 Downloading pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) -#54 170.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 7.4 MB/s eta 0:00:00 -#54 170.3 Downloading pydantic_settings-2.7.1-py3-none-any.whl (29 kB) -#54 170.3 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) -#54 170.4 Downloading pymilvus-2.5.4-py3-none-any.whl (222 kB) -#54 170.4 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#54 170.5 Downloading python_sat-1.8.dev14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.7 MB) -#54 170.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.7/2.7 MB 7.1 MB/s eta 0:00:00 -#54 170.9 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) -#54 171.0 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#54 171.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 8.5 MB/s eta 0:00:00 -#54 171.1 Downloading qdrant_client-1.13.2-py3-none-any.whl (306 kB) -#54 171.2 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) -#54 171.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 7.6 MB/s eta 0:00:00 -#54 171.4 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#54 171.4 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#54 171.5 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 73.10 Collecting nltk>3.8.1 (from llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 73.11 Downloading nltk-3.9.1-py3-none-any.whl.metadata (2.9 kB) -#75 73.42 Collecting deprecated>=1.2.9.3 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 73.43 Downloading Deprecated-1.2.18-py2.py3-none-any.whl.metadata (5.7 kB) -#75 73.68 Collecting dirtyjson<2.0.0,>=1.0.8 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 73.69 Downloading dirtyjson-1.0.8-py3-none-any.whl.metadata (11 kB) -#75 73.79 Collecting filetype<2.0.0,>=1.2.0 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 73.79 Downloading filetype-1.2.0-py2.py3-none-any.whl.metadata (6.5 kB) -#75 74.05 Collecting httpx (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 74.06 Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB) -#75 74.31 Collecting nest-asyncio<2.0.0,>=1.5.8 (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 74.32 Downloading nest_asyncio-1.6.0-py3-none-any.whl.metadata (2.8 kB) -#75 74.71 Collecting wrapt (from llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 74.72 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB) -#75 74.83 Collecting llama-index-utils-huggingface<0.4.0,>=0.3.0 (from llama-index-embeddings-text-embeddings-inference->-r /home/user/comps/dataprep/src/requirements.txt (line 26)) -#75 74.85 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl.metadata (697 bytes) -#75 75.20 Collecting imageio<3.0,>=2.5 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) -#75 75.21 Downloading imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB) -#75 ... - -#81 [opea/lvm-llava:latest] exporting to image -#81 exporting layers 31.2s done -#81 writing image sha256:f4a23efadd37712906aae1d282e3735346df8a4af1fe1d86e7d9fa38deb2c93b done -#81 naming to docker.io/opea/lvm-llava:latest done -#81 DONE 31.2s - -#82 [opea/lvm:latest] exporting to image -#82 exporting layers 31.8s done -#82 writing image sha256:78bf8372d2bf0539da86c5c61ed1d27fc547199717f45a7f606b3b0d3090b048 done -#82 naming to docker.io/opea/lvm:latest done -#82 DONE 31.8s - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 75.48 Collecting imageio_ffmpeg>=0.2.0 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) -#75 75.49 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) -#75 75.72 Collecting proglog<=1.0.0 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) -#75 75.73 Downloading proglog-0.1.10-py3-none-any.whl.metadata (639 bytes) -#75 75.83 Collecting python-dotenv>=0.10 (from moviepy->-r /home/user/comps/dataprep/src/requirements.txt (line 31)) -#75 75.84 Downloading python_dotenv-1.0.1-py3-none-any.whl.metadata (23 kB) -#75 76.21 Collecting Pillow (from -r /home/user/comps/dataprep/src/requirements.txt (line 40)) -#75 76.22 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB) -#75 76.35 Collecting pytz (from neo4j->-r /home/user/comps/dataprep/src/requirements.txt (line 32)) -#75 76.36 Downloading pytz-2025.1-py2.py3-none-any.whl.metadata (22 kB) -#75 76.62 Collecting anyio<5,>=3.5.0 (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) -#75 76.62 Downloading anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB) -#75 76.72 Collecting distro<2,>=1.7.0 (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) -#75 76.73 Downloading distro-1.9.0-py3-none-any.whl.metadata (6.8 kB) -#75 77.04 Collecting jiter<1,>=0.4.0 (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) -#75 77.05 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) -#75 77.30 Collecting sniffio (from openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) -#75 77.31 Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB) -#75 77.67 Collecting numba (from openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) -#75 77.68 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB) -#75 77.79 Collecting more-itertools (from openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) -#75 77.80 Downloading more_itertools-10.6.0-py3-none-any.whl.metadata (37 kB) -#75 78.07 Collecting triton>=2.0.0 (from openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) -#75 78.08 Downloading https://download.pytorch.org/whl/triton-3.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (1.4 kB) -#75 78.42 Collecting urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19 (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) -#75 78.43 Downloading urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB) -#75 78.55 Collecting python-dateutil (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) -#75 78.55 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) -#75 78.83 Collecting certifi>=2024.07.04 (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) -#75 78.83 Downloading certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB) -#75 79.06 Collecting Events (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) -#75 79.07 Downloading Events-0.5-py3-none-any.whl.metadata (3.9 kB) -#75 79.21 Collecting tzdata>=2022.7 (from pandas->-r /home/user/comps/dataprep/src/requirements.txt (line 38)) -#75 79.22 Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB) -#75 79.50 Collecting pinecone-plugin-inference<2.0.0,>=1.0.3 (from pinecone-client->-r /home/user/comps/dataprep/src/requirements.txt (line 41)) -#75 79.51 Downloading pinecone_plugin_inference-1.1.0-py3-none-any.whl.metadata (2.2 kB) -#75 79.61 Collecting pinecone-plugin-interface<0.0.8,>=0.0.7 (from pinecone-client->-r /home/user/comps/dataprep/src/requirements.txt (line 41)) -#75 79.61 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl.metadata (1.2 kB) -#75 79.91 Collecting prometheus-client<1.0.0,>=0.8.0 (from prometheus-fastapi-instrumentator->-r /home/user/comps/dataprep/src/requirements.txt (line 42)) -#75 79.92 Downloading prometheus_client-0.21.1-py3-none-any.whl.metadata (1.8 kB) -#75 80.22 Collecting py4j==0.10.9.7 (from pyspark->-r /home/user/comps/dataprep/src/requirements.txt (line 45)) -#75 80.23 Downloading py4j-0.10.9.7-py2.py3-none-any.whl.metadata (1.5 kB) -#75 80.61 Collecting lxml>=3.1.0 (from python-docx->-r /home/user/comps/dataprep/src/requirements.txt (line 48)) -#75 80.62 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#75 80.76 Collecting XlsxWriter>=0.5.7 (from python-pptx->-r /home/user/comps/dataprep/src/requirements.txt (line 49)) -#75 80.77 Downloading XlsxWriter-3.2.2-py3-none-any.whl.metadata (2.8 kB) -#75 81.53 Collecting grpcio>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 81.53 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#75 82.23 Collecting grpcio-tools>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 82.24 Downloading grpcio_tools-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 82.51 Collecting portalocker<3.0.0,>=2.7.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 82.52 Downloading https://download.pytorch.org/whl/portalocker-2.10.1-py3-none-any.whl (18 kB) -#75 83.18 Collecting regex>=2022.1.18 (from tiktoken->-r /home/user/comps/dataprep/src/requirements.txt (line 55)) -#75 83.19 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) -#75 83.49 Collecting chardet (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 83.50 Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 173.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 7.6 MB/s eta 0:00:00 -#54 173.3 Downloading seaborn-0.13.2-py3-none-any.whl (294 kB) -#54 173.4 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB) -#54 173.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 8.2 MB/s eta 0:00:00 -#54 173.8 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#54 173.8 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB) -#54 175.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/10.8 MB 8.0 MB/s eta 0:00:00 -#54 175.2 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) -#54 175.2 Downloading text_generation-0.7.0-py3-none-any.whl (12 kB) -#54 175.3 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#54 175.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 7.3 MB/s eta 0:00:00 -#54 175.7 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#54 175.8 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) -#54 177.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 7.8 MB/s eta 0:00:00 -#54 177.1 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) -#54 177.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 8.0 MB/s eta 0:00:00 -#54 177.2 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) -#54 177.2 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#54 177.3 Downloading umap_learn-0.5.7-py3-none-any.whl (88 kB) -#54 177.3 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#54 177.4 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) -#54 177.4 Downloading XlsxWriter-3.2.2-py3-none-any.whl (165 kB) -#54 177.4 Downloading beautifulsoup4-4.13.1-py3-none-any.whl (185 kB) -#54 177.5 Downloading cairocffi-1.7.1-py3-none-any.whl (75 kB) -#54 177.5 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -#54 177.6 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB) -#54 177.6 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#54 177.7 Downloading Events-0.5-py3-none-any.whl (6.8 kB) -#54 177.7 Downloading haystack_experimental-0.5.0-py3-none-any.whl (95 kB) -#54 177.7 Downloading lazy_imports-0.4.0-py3-none-any.whl (12 kB) -#54 177.8 Downloading more_itertools-10.6.0-py3-none-any.whl (63 kB) -#54 177.8 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (422 kB) -#54 177.9 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.0 MB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 83.74 Collecting python-magic (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 83.75 Downloading python_magic-0.4.27-py2.py3-none-any.whl.metadata (5.8 kB) -#75 84.01 Collecting emoji (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 84.02 Downloading emoji-2.14.1-py3-none-any.whl.metadata (5.7 kB) -#75 84.24 Collecting python-iso639 (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 84.25 Downloading python_iso639-2025.1.28-py3-none-any.whl.metadata (13 kB) -#75 84.48 Collecting langdetect (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 84.50 Downloading langdetect-1.0.9.tar.gz (981 kB) -#75 84.52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 981.5/981.5 kB 89.3 MB/s eta 0:00:00 -#75 84.57 Preparing metadata (setup.py): started -#75 84.74 Preparing metadata (setup.py): finished with status 'done' -#75 85.61 Collecting rapidfuzz (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 85.61 Downloading rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB) -#75 85.89 Collecting backoff (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 85.90 Downloading backoff-2.2.1-py3-none-any.whl.metadata (14 kB) -#75 86.13 Collecting unstructured-client (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 86.14 Downloading unstructured_client-0.29.0-py3-none-any.whl.metadata (20 kB) -#75 86.46 Collecting psutil (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 86.47 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) -#75 86.70 Collecting python-oxmsg (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 86.70 Downloading python_oxmsg-0.0.2-py3-none-any.whl.metadata (5.0 kB) -#75 86.98 Collecting html5lib (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 86.99 Downloading html5lib-1.1-py2.py3-none-any.whl.metadata (16 kB) -#75 87.25 Collecting unstructured.pytesseract>=0.3.12 (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 87.26 Downloading unstructured.pytesseract-0.3.13-py3-none-any.whl.metadata (11 kB) -#75 87.52 Collecting unstructured-inference>=0.8.6 (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 87.53 Downloading unstructured_inference-0.8.7-py3-none-any.whl.metadata (5.3 kB) -#75 87.79 Collecting google-cloud-vision (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 87.79 Downloading google_cloud_vision-3.9.0-py2.py3-none-any.whl.metadata (5.3 kB) -#75 88.02 Collecting effdet (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 88.03 Downloading effdet-0.4.1-py3-none-any.whl.metadata (33 kB) -#75 88.28 Collecting openpyxl (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 88.29 Downloading openpyxl-3.1.5-py2.py3-none-any.whl.metadata (2.5 kB) -#75 88.59 Collecting pi-heif (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 88.60 Downloading pi_heif-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) -#75 88.82 Collecting pypdf (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 88.84 Downloading pypdf-5.2.0-py3-none-any.whl.metadata (7.2 kB) -#75 89.08 Collecting pdf2image (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 89.08 Downloading pdf2image-1.17.0-py3-none-any.whl.metadata (6.2 kB) -#75 89.62 Collecting pikepdf (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 89.63 Downloading pikepdf-9.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB) -#75 89.81 Collecting onnx (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 89.82 Downloading onnx-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (16 kB) -#75 90.07 Collecting xlrd (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 90.08 Downloading xlrd-2.0.1-py2.py3-none-any.whl.metadata (3.4 kB) -#75 90.32 Collecting pypandoc (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 90.33 Downloading pypandoc-1.15-py3-none-any.whl.metadata (16 kB) -#75 90.56 Collecting pdfminer.six (from unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 90.57 Downloading pdfminer.six-20240706-py3-none-any.whl.metadata (4.1 kB) -#75 90.83 Collecting click>=7.0 (from uvicorn->-r /home/user/comps/dataprep/src/requirements.txt (line 60)) -#75 90.83 Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) -#75 90.93 Collecting h11>=0.8 (from uvicorn->-r /home/user/comps/dataprep/src/requirements.txt (line 60)) -#75 90.94 Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB) -#75 90.96 Collecting protobuf>=3.20.0 (from docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 90.97 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl.metadata (540 bytes) -#75 91.08 Collecting aiohappyeyeballs>=2.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 91.09 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl.metadata (6.1 kB) -#75 91.33 Collecting aiosignal>=1.1.2 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 91.34 Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) -#75 91.44 Collecting attrs>=17.3.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 91.45 Downloading attrs-25.1.0-py3-none-any.whl.metadata (10 kB) -#75 91.75 Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 91.76 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB) -#75 92.24 Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 92.25 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB) -#75 92.74 Collecting yarl<2.0,>=1.12.0 (from aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 92.75 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (69 kB) -#75 92.87 Collecting idna>=2.8 (from anyio<5,>=3.5.0->openai->-r /home/user/comps/dataprep/src/requirements.txt (line 34)) -#75 92.88 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) -#75 93.13 Collecting six (from anytree<3.0.0,>=2.12.1->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 93.14 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) -#75 93.45 Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses-json<0.7,>=0.5.7->langchain-community->-r /home/user/comps/dataprep/src/requirements.txt (line 16)) -#75 93.46 Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) -#75 94.18 Collecting simsimd>=3 (from elasticsearch[vectorstore-mmr]<9.0.0,>=8.13.1->langchain-elasticsearch->-r /home/user/comps/dataprep/src/requirements.txt (line 17)) -#75 94.19 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (66 kB) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 183.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.0/50.0 MB 8.5 MB/s eta 0:00:00 -#54 183.8 Downloading posthog-3.11.0-py2.py3-none-any.whl (72 kB) -#54 183.8 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (969 kB) -#54 183.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 969.6/969.6 kB 11.8 MB/s eta 0:00:00 -#54 183.9 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286 kB) -#54 184.0 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.8 MB) -#54 185.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.8/14.8 MB 8.0 MB/s eta 0:00:00 -#54 185.9 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) -#54 186.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 9.5 MB/s eta 0:00:00 -#54 186.2 Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB) -#54 186.2 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#54 186.2 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#54 186.2 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#54 186.3 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#54 186.3 Downloading autograd-1.7.0-py3-none-any.whl (52 kB) -#54 186.3 Downloading backoff-2.2.1-py3-none-any.whl (15 kB) -#54 186.3 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB) -#54 186.4 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#54 186.4 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326 kB) -#54 186.5 Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB) -#54 186.5 Downloading distro-1.9.0-py3-none-any.whl (20 kB) -#54 186.5 Downloading elastic_transport-8.17.0-py3-none-any.whl (64 kB) -#54 186.6 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB) -#54 187.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.9/4.9 MB 9.7 MB/s eta 0:00:00 -#54 187.1 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) -#54 187.2 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (602 kB) -#54 187.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 602.4/602.4 kB 11.2 MB/s eta 0:00:00 -#54 187.3 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#54 187.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 9.9 MB/s eta 0:00:00 -#54 187.9 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB) -#54 188.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/2.8 MB 10.5 MB/s eta 0:00:00 -#54 188.2 Downloading idna-3.10-py3-none-any.whl (70 kB) -#54 188.2 Downloading imageio-2.37.0-py3-none-any.whl (315 kB) -#54 188.3 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 94.51 Collecting smart-open>=1.8.1 (from gensim<5.0.0,>=4.3.2->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 94.52 Downloading smart_open-7.1.0-py3-none-any.whl.metadata (24 kB) -#75 94.56 INFO: pip is looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. -#75 94.56 Collecting grpcio-tools>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 94.57 Downloading grpcio_tools-1.69.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.58 Downloading grpcio_tools-1.68.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.59 Downloading grpcio_tools-1.68.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.60 Downloading grpcio_tools-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.62 Downloading grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.63 Downloading grpcio_tools-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.64 Downloading grpcio_tools-1.66.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.64 INFO: pip is still looking at multiple versions of grpcio-tools to determine which version is compatible with other requirements. This could take a while. -#75 94.65 Downloading grpcio_tools-1.66.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.66 Downloading grpcio_tools-1.65.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.67 Downloading grpcio_tools-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.68 Downloading grpcio_tools-1.65.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.70 Downloading grpcio_tools-1.65.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.71 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. -#75 94.72 Downloading grpcio_tools-1.64.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.73 Downloading grpcio_tools-1.64.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.74 Downloading grpcio_tools-1.64.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.75 Downloading grpcio_tools-1.63.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.77 Downloading grpcio_tools-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) -#75 94.78 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) -#75 94.81 Requirement already satisfied: setuptools in /usr/local/lib/python3.11/site-packages (from grpcio-tools>=1.41.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) (75.8.0) -#75 95.09 Collecting httpcore==1.* (from httpx->llama-index-core->-r /home/user/comps/dataprep/src/requirements.txt (line 25)) -#75 95.09 Downloading httpcore-1.0.7-py3-none-any.whl.metadata (21 kB) -#75 95.39 Collecting h2<5,>=3 (from httpx[http2]>=0.20.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 95.39 Downloading h2-4.2.0-py3-none-any.whl.metadata (5.1 kB) -#75 95.68 Collecting autograd>=1.3 (from hyppo<0.5.0,>=0.4.0->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 95.69 Downloading autograd-1.7.0-py3-none-any.whl.metadata (7.5 kB) -#75 96.01 Collecting jaxlib<=0.5.0,>=0.5.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 96.02 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl.metadata (978 bytes) -#75 96.13 Collecting ml_dtypes>=0.4.0 (from jax>=0.4.10->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 96.14 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) -#75 96.24 Collecting opt_einsum (from jax>=0.4.10->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 96.25 Downloading opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) -#75 96.54 Collecting parso<0.9.0,>=0.8.4 (from jedi>=0.16->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 96.55 Downloading parso-0.8.4-py2.py3-none-any.whl.metadata (7.7 kB) -#75 96.82 Collecting jsonpatch<2.0,>=1.33 (from langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 96.83 Downloading jsonpatch-1.33-py2.py3-none-any.whl.metadata (3.0 kB) -#75 97.15 Collecting pytest<9,>=7 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 97.16 Downloading pytest-8.3.4-py3-none-any.whl.metadata (7.5 kB) -#75 97.27 Collecting pytest-asyncio<1,>=0.20 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 97.28 Downloading pytest_asyncio-0.25.3-py3-none-any.whl.metadata (3.9 kB) -#75 97.54 Collecting pytest-socket<1,>=0.6.0 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 97.55 Downloading pytest_socket-0.7.0-py3-none-any.whl.metadata (6.7 kB) -#75 97.81 Collecting syrupy<5,>=4 (from langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 97.82 Downloading syrupy-4.8.1-py3-none-any.whl.metadata (36 kB) -#75 98.12 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 98.13 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) -#75 98.56 Collecting zstandard<0.24.0,>=0.23.0 (from langsmith<0.4,>=0.1.17->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 98.56 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) -#75 98.89 Collecting llama-cloud<0.2.0,>=0.1.8 (from llama-index-indices-managed-llama-cloud>=0.4.0->llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 98.90 Downloading llama_cloud-0.1.11-py3-none-any.whl.metadata (912 bytes) -#75 99.18 Collecting striprtf<0.0.27,>=0.0.26 (from llama-index-readers-file<0.5.0,>=0.4.0->llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 99.19 Downloading striprtf-0.0.26-py3-none-any.whl.metadata (2.1 kB) -#75 99.45 Collecting llama-parse>=0.5.0 (from llama-index-readers-llama-parse>=0.4.0->llama-index->-r /home/user/comps/dataprep/src/requirements.txt (line 24)) -#75 99.46 Downloading llama_parse-0.5.20-py3-none-any.whl.metadata (6.9 kB) -#75 99.66 Collecting contourpy>=1.0.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 99.66 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.4 kB) -#75 99.95 Collecting cycler>=0.10 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 99.96 Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 199.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 8.9 MB/s eta 0:00:00 -#54 199.8 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345 kB) -#54 199.9 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) -#54 199.9 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB) -#54 200.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 11.3 MB/s eta 0:00:00 -#54 200.0 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) -#54 200.1 Downloading lazy_loader-0.4-py3-none-any.whl (12 kB) -#54 200.1 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB) -#54 204.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.4/42.4 MB 10.7 MB/s eta 0:00:00 -#54 204.1 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) -#54 204.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 12.3 MB/s eta 0:00:00 -#54 204.2 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) -#54 204.2 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#54 204.3 Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) -#54 204.3 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl (45.2 MB) -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 100.2 Collecting fonttools>=4.22.0 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 100.2 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (101 kB) -#75 100.5 Collecting kiwisolver>=1.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 100.5 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.2 kB) -#75 100.7 Collecting pyparsing>=2.3.1 (from matplotlib<4.0.0,>=3.8.4->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 100.7 Downloading pyparsing-3.2.1-py3-none-any.whl.metadata (5.0 kB) -#75 100.9 Collecting llvmlite<0.45,>=0.44.0dev0 (from numba->openai-whisper->-r /home/user/comps/dataprep/src/requirements.txt (line 35)) -#75 100.9 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.8 kB) -#75 101.2 Collecting ptyprocess>=0.5 (from pexpect>4.3->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 101.2 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB) -#75 101.2 INFO: pip is looking at multiple versions of pinecone to determine which version is compatible with other requirements. This could take a while. -#75 101.2 Collecting pinecone<6.0.0,>=5.4.0 (from langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 101.2 Downloading pinecone-5.4.1-py3-none-any.whl.metadata (19 kB) -#75 101.2 Downloading pinecone-5.4.0-py3-none-any.whl.metadata (19 kB) -#75 101.2 Collecting pinecone-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 41)) -#75 101.3 Downloading pinecone_client-5.0.0-py3-none-any.whl.metadata (19 kB) -#75 101.3 Collecting pinecone-plugin-inference==1.0.2 (from pinecone-client->-r /home/user/comps/dataprep/src/requirements.txt (line 41)) -#75 101.3 Downloading pinecone_plugin_inference-1.0.2-py3-none-any.whl.metadata (2.2 kB) -#75 101.3 Collecting pinecone-client (from -r /home/user/comps/dataprep/src/requirements.txt (line 41)) -#75 101.3 Downloading pinecone_client-4.1.2-py3-none-any.whl.metadata (16 kB) -#75 101.3 Collecting pinecone-plugin-inference<4.0.0,>=2.0.0 (from pinecone<6.0.0,>=5.4.0->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 101.3 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl.metadata (2.2 kB) -#75 102.3 Collecting wcwidth (from prompt_toolkit<3.1.0,>=3.0.41->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 102.3 Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB) -#75 102.4 Collecting annotated-types>=0.6.0 (from pydantic>=1.10.8->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 102.5 Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB) -#75 103.2 Collecting pydantic-core==2.27.2 (from pydantic>=1.10.8->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 103.2 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) -#75 103.2 Collecting grpcio>=1.41.0 (from qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 103.3 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.9 kB) -#75 103.4 Collecting ujson>=2.0.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/dataprep/src/requirements.txt (line 23)) -#75 103.4 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.3 kB) -#75 103.7 Collecting milvus-lite>=2.4.0 (from pymilvus<3.0.0,>=2.5.0->langchain_milvus->-r /home/user/comps/dataprep/src/requirements.txt (line 23)) -#75 103.7 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl.metadata (9.2 kB) -#75 104.1 Collecting charset-normalizer<4,>=2 (from requests->huggingface_hub->-r /home/user/comps/dataprep/src/requirements.txt (line 13)) -#75 104.1 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) -#75 104.4 Collecting markdown-it-py>=2.2.0 (from rich>=13.1.0->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 104.4 Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) -#75 104.7 Collecting threadpoolctl>=3.1.0 (from scikit-learn<2.0.0,>=1.4.2->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 104.7 Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) -#75 105.3 Collecting greenlet!=0.4.17 (from SQLAlchemy<3,>=1.4->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 105.3 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) -#75 105.6 Collecting patsy>=0.5.6 (from statsmodels<0.15.0,>=0.14.2->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 105.6 Downloading patsy-1.0.1-py2.py3-none-any.whl.metadata (3.3 kB) -#75 105.7 Requirement already satisfied: jinja2 in /usr/local/lib/python3.11/site-packages (from torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (3.1.5) -#75 105.7 Requirement already satisfied: sympy==1.13.1 in /usr/local/lib/python3.11/site-packages (from torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (1.13.1) -#75 105.7 Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.11/site-packages (from sympy==1.13.1->torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (1.3.0) -#75 106.2 Collecting safetensors>=0.4.1 (from transformers>=4.39.0->langchain_huggingface->-r /home/user/comps/dataprep/src/requirements.txt (line 22)) -#75 106.2 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) -#75 106.3 Collecting colorlog (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 106.3 Downloading colorlog-6.9.0-py3-none-any.whl.metadata (10 kB) -#75 106.6 Collecting manifold3d>=2.3.0 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 106.6 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (17 kB) -#75 106.7 Collecting jsonschema (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 106.7 Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB) -#75 107.0 Collecting svg.path (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 107.0 Downloading svg.path-6.3-py2.py3-none-any.whl.metadata (13 kB) -#75 107.1 Collecting pycollada (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 107.1 Downloading pycollada-0.8.tar.gz (108 kB) -#75 107.2 Preparing metadata (setup.py): started -#75 107.3 Preparing metadata (setup.py): finished with status 'done' -#75 107.5 Collecting xxhash (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 107.5 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) -#75 107.8 Collecting rtree (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 107.8 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.1 kB) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 207.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.2/45.2 MB 14.8 MB/s eta 0:00:00 -#54 207.4 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) -#54 207.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 13.7 MB/s eta 0:00:00 -#54 207.8 Downloading monotonic-1.6-py2.py3-none-any.whl (8.2 kB) -#54 207.9 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) -#54 207.9 Downloading patsy-1.0.1-py2.py3-none-any.whl (232 kB) -#54 207.9 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl (87 kB) -#54 208.0 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl (6.2 kB) -#54 208.0 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#54 208.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 12.9 MB/s eta 0:00:00 -#54 208.2 Downloading pynndescent-0.5.13-py3-none-any.whl (56 kB) -#54 208.2 Downloading pyparsing-3.2.1-py3-none-any.whl (107 kB) -#54 208.3 Downloading pytest-8.3.4-py3-none-any.whl (343 kB) -#54 208.3 Downloading pytest_asyncio-0.25.3-py3-none-any.whl (19 kB) -#54 208.4 Downloading pytest_socket-0.7.0-py3-none-any.whl (6.8 kB) -#54 208.4 Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB) -#54 208.5 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) -#54 208.5 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) -#54 208.6 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (632 kB) -#54 208.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 632.7/632.7 kB 14.8 MB/s eta 0:00:00 -#54 208.7 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#54 208.7 Downloading smart_open-7.1.0-py3-none-any.whl (61 kB) -#54 208.7 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#54 208.8 Downloading soupsieve-2.6-py3-none-any.whl (36 kB) -#54 208.8 Downloading syrupy-4.8.1-py3-none-any.whl (50 kB) -#54 208.8 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) -#54 208.9 Downloading tifffile-2025.1.10-py3-none-any.whl (227 kB) -#54 208.9 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) -#54 209.0 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53 kB) -#54 209.0 Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB) -#54 209.1 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) -#54 209.1 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) -#54 209.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 14.4 MB/s eta 0:00:00 -#54 209.5 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) -#54 209.6 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) -#54 209.7 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) -#54 211.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 13.1 MB/s eta 0:00:00 -#54 211.1 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) -#54 211.1 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) -#54 211.2 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) -#54 211.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 10.9 MB/s eta 0:00:00 -#54 211.3 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) -#54 211.3 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) -#54 211.4 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) -#54 211.4 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) -#54 211.5 Downloading h2-4.2.0-py3-none-any.whl (60 kB) -#54 211.5 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) -#54 211.6 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) -#54 211.6 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#54 211.6 Downloading pluggy-1.5.0-py3-none-any.whl (20 kB) -#54 211.7 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) -#54 211.7 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) -#54 211.8 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) -#54 211.8 Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) -#54 211.9 Downloading pycparser-2.22-py3-none-any.whl (117 kB) -#54 211.9 Downloading hpack-4.1.0-py3-none-any.whl (34 kB) -#54 212.0 Downloading hyperframe-6.1.0-py3-none-any.whl (13 kB) -#54 213.7 Building wheels for collected packages: docx2txt, pycollada -#54 213.7 Building wheel for docx2txt (setup.py): started -#54 213.9 Building wheel for docx2txt (setup.py): finished with status 'done' -#54 213.9 Created wheel for docx2txt: filename=docx2txt-0.8-py3-none-any.whl size=3990 sha256=650c7b54617b5a7495539d917a4cc8e53ee0cace05cce6b22aefab493f387431 -#54 213.9 Stored in directory: /tmp/pip-ephem-wheel-cache-z0c847cd/wheels/0f/0e/7a/3094a4ceefe657bff7e12dd9592a9d5b6487ef4338ace0afa6 -#54 213.9 Building wheel for pycollada (setup.py): started -#54 214.1 Building wheel for pycollada (setup.py): finished with status 'done' -#54 214.1 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=15b27e9895476035962f8964d87568676c077b6612a1d38442260e5248a07f29 -#54 214.1 Stored in directory: /tmp/pip-ephem-wheel-cache-z0c847cd/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 -#54 214.2 Successfully built docx2txt pycollada -#54 215.0 Installing collected packages: webencodings, sqlglot, simsimd, pytz, python-bidi, pydub, pyclipper, monotonic, filetype, Events, docx2txt, dirtyjson, zstandard, xxhash, XlsxWriter, wrapt, urllib3, ujson, tzdata, types-pillow, tqdm, tinycss2, threadpoolctl, tenacity, svg.path, soupsieve, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, redis, pyyaml, python-multipart, python-dotenv, pyparsing, pymupdf, pygments, pydantic-core, pycparser, pyarrow, psycopg2-binary, protobuf, propcache, prometheus-client, portalocker, pluggy, pinecone-plugin-interface, packaging, orjson, opt_einsum, numpy, ninja, nest-asyncio, neo4j, mypy-extensions, multidict, more-itertools, mdurl, lz4, lxml, llvmlite, lazy-imports, kiwisolver, jsonpointer, joblib, jiter, iniconfig, idna, hyperframe, httpx-sse, hpack, h11, grpcio, greenlet, graspologic-native, future, frozenlist, fonttools, distro, diskcache, defusedxml, cycler, colorlog, click, charset-normalizer, chardet, certifi, beartype, backoff, av, attrs, annotated-types, aiohappyeyeballs, yarl, xatlas, vhacdx, vdms, uvicorn, typing-inspect, types-requests, trimesh, tifffile, SQLAlchemy, smart-open, Shapely, scipy, requests, referencing, python-sat, python-pptx, python-docx, python-dateutil, pytest, pytesseract, pydantic, pinecone-plugin-inference, pgvector, patsy, opencv-python-headless, numba, nltk, ml_dtypes, milvus-lite, marshmallow, markdown-it-py, mapbox_earcut, manifold3d, lazy-loader, jsonpatch, imageio, httpcore, h2, grpcio-tools, embreex, elastic-transport, deprecated, cssselect2, contourpy, cffi, beautifulsoup4, autograd, anytree, anyio, aiosignal, tiktoken, syrupy, starlette, scikit-learn, scikit-image, rich, requests-toolbelt, pytest-socket, pytest-asyncio, pydantic-settings, pycollada, POT, posthog, pinecone, pandas, opensearch-py, matplotlib, jsonschema-specifications, jaxlib, huggingface-hub, httpx, gensim, elasticsearch, dataclasses-json, cairocffi, bs4, aiohttp, tokenizers, text-generation, statsmodels, seaborn, pynndescent, pymilvus, prometheus-fastapi-instrumentator, pathway, openai, llama-index-core, langsmith, jsonschema, jax, hyppo, fastapi, easyocr, docarray, cairosvg, umap-learn, transformers, qdrant-client, llama-index-utils-huggingface, llama-index-llms-openai, llama_index_graph_stores_neo4j, llama-index-embeddings-openai, langchain-core, sentence_transformers, llama-index-llms-text-generation-inference, llama-index-llms-openai-like, llama-index-embeddings-text-embeddings-inference, langchain-text-splitters, langchain-tests, langchain_milvus, langchain-elasticsearch, graspologic, langchain-pinecone, langchain_huggingface, langchain, langchain_community, haystack-experimental, haystack-ai, qdrant-haystack -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 108.1 Collecting embreex (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 108.1 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (2.9 kB) -#75 108.3 Collecting xatlas (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 108.4 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) -#75 108.6 Collecting vhacdx (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 108.6 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) -#75 108.8 Collecting mapbox_earcut>=1.0.2 (from trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 108.8 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB) -#75 109.1 Collecting mypy-extensions>=0.3.0 (from typing-inspect>=0.8.0->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 109.1 Downloading https://download.pytorch.org/whl/mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#75 109.4 Collecting pynndescent>=0.5 (from umap-learn<0.6.0,>=0.5.6->graspologic->-r /home/user/comps/dataprep/src/requirements.txt (line 11)) -#75 109.4 Downloading pynndescent-0.5.13-py3-none-any.whl.metadata (6.8 kB) -#75 109.7 Collecting python-multipart (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 109.7 Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB) -#75 109.8 Collecting onnxruntime>=1.17.0 (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 109.8 Downloading onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (4.5 kB) -#75 110.1 Collecting timm (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 110.1 Downloading timm-1.0.14-py3-none-any.whl.metadata (50 kB) -#75 110.4 Collecting pypdfium2 (from unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 110.5 Downloading pypdfium2-4.30.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (48 kB) -#75 110.7 Collecting cryptography>=36.0.0 (from pdfminer.six->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 110.7 Downloading cryptography-44.0.0-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.7 kB) -#75 111.2 Collecting cffi>=1.1.0 (from cairocffi->cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 111.2 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB) -#75 111.3 Collecting webencodings (from cssselect2->cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 111.3 Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB) -#75 111.6 Collecting pycocotools>=2.0.2 (from effdet->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 111.6 Downloading pycocotools-2.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB) -#75 111.7 Collecting omegaconf>=2.0 (from effdet->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 111.7 Downloading omegaconf-2.3.0-py3-none-any.whl.metadata (3.9 kB) -#75 112.1 Collecting google-api-core!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1 (from google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 112.1 Downloading google_api_core-2.24.1-py3-none-any.whl.metadata (3.0 kB) -#75 112.4 Collecting google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1 (from google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 112.5 Downloading google_auth-2.38.0-py2.py3-none-any.whl.metadata (4.8 kB) -#75 112.7 Collecting proto-plus<2.0.0dev,>=1.22.3 (from google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 112.7 Downloading proto_plus-1.26.0-py3-none-any.whl.metadata (2.2 kB) -#75 113.1 Collecting et-xmlfile (from openpyxl->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 113.1 Downloading et_xmlfile-2.0.0-py3-none-any.whl.metadata (2.7 kB) -#75 113.5 Collecting olefile (from python-oxmsg->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 113.5 Downloading olefile-0.47-py2.py3-none-any.whl.metadata (9.7 kB) -#75 113.8 Collecting tifffile>=2022.8.12 (from scikit-image->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 113.8 Downloading tifffile-2025.1.10-py3-none-any.whl.metadata (31 kB) -#75 114.1 Collecting lazy-loader>=0.4 (from scikit-image->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) -#75 114.1 Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) -#75 114.4 Collecting executing>=1.2.0 (from stack_data->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 114.4 Downloading executing-2.2.0-py2.py3-none-any.whl.metadata (8.9 kB) -#75 114.7 Collecting asttokens>=2.1.0 (from stack_data->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 114.7 Downloading asttokens-3.0.0-py3-none-any.whl.metadata (4.7 kB) -#75 114.8 Collecting pure-eval (from stack_data->ipython->-r /home/user/comps/dataprep/src/requirements.txt (line 14)) -#75 114.8 Downloading pure_eval-0.2.3-py3-none-any.whl.metadata (6.3 kB) -#75 115.1 Collecting aiofiles>=24.1.0 (from unstructured-client->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 115.1 Downloading aiofiles-24.1.0-py3-none-any.whl.metadata (10 kB) -#75 115.4 Collecting eval-type-backport<0.3.0,>=0.2.0 (from unstructured-client->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 115.4 Downloading eval_type_backport-0.2.2-py3-none-any.whl.metadata (2.2 kB) -#75 115.6 Collecting jsonpath-python<2.0.0,>=1.0.6 (from unstructured-client->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 115.6 Downloading jsonpath_python-1.0.6-py3-none-any.whl.metadata (12 kB) -#75 115.9 Collecting pycparser (from cffi>=1.1.0->cairocffi->cairosvg->-r /home/user/comps/dataprep/src/requirements.txt (line 2)) -#75 115.9 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes) -#75 116.1 Collecting googleapis-common-protos<2.0.dev0,>=1.56.2 (from google-api-core!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 116.1 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#75 116.4 Collecting grpcio-status<2.0.dev0,>=1.33.2 (from google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 116.4 Downloading grpcio_status-1.70.0-py3-none-any.whl.metadata (1.1 kB) -#75 116.5 Collecting cachetools<6.0,>=2.0.0 (from google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 116.5 Downloading cachetools-5.5.1-py3-none-any.whl.metadata (5.4 kB) -#75 116.6 Collecting pyasn1-modules>=0.2.1 (from google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 116.6 Downloading pyasn1_modules-0.4.1-py3-none-any.whl.metadata (3.5 kB) -#75 116.9 Collecting rsa<5,>=3.1.4 (from google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 116.9 Downloading rsa-4.9-py3-none-any.whl.metadata (4.2 kB) -#75 117.2 Collecting hyperframe<7,>=6.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 117.2 Downloading hyperframe-6.1.0-py3-none-any.whl.metadata (4.3 kB) -#75 117.4 Collecting hpack<5,>=4.1 (from h2<5,>=3->httpx[http2]>=0.20.0->qdrant-client->-r /home/user/comps/dataprep/src/requirements.txt (line 50)) -#75 117.4 Downloading hpack-4.1.0-py3-none-any.whl.metadata (4.6 kB) -#75 117.7 Collecting jsonpointer>=1.9 (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.33->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 117.7 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB) -#75 117.8 Collecting certifi>=2024.07.04 (from opensearch-py->-r /home/user/comps/dataprep/src/requirements.txt (line 37)) -#75 117.8 Downloading certifi-2024.12.14-py3-none-any.whl.metadata (2.3 kB) -#75 118.2 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.1.0->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 118.2 Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) -#75 118.5 Collecting antlr4-python3-runtime==4.9.* (from omegaconf>=2.0->effdet->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 118.6 Downloading antlr4-python3-runtime-4.9.3.tar.gz (117 kB) -#75 118.6 Preparing metadata (setup.py): started -#75 118.8 Preparing metadata (setup.py): finished with status 'done' -#75 119.0 Collecting coloredlogs (from onnxruntime>=1.17.0->unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 119.0 Downloading coloredlogs-15.0.1-py2.py3-none-any.whl.metadata (12 kB) -#75 119.3 Collecting flatbuffers (from onnxruntime>=1.17.0->unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 119.3 Downloading flatbuffers-25.1.24-py2.py3-none-any.whl.metadata (875 bytes) -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 219.1 Attempting uninstall: numpy -#54 219.2 Found existing installation: numpy 2.2.2 -#54 219.2 Uninstalling numpy-2.2.2: -#54 219.2 Successfully uninstalled numpy-2.2.2 -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 119.8 Collecting iniconfig (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 119.8 Downloading iniconfig-2.0.0-py3-none-any.whl.metadata (2.6 kB) -#75 120.1 Collecting pluggy<2,>=1.5 (from pytest<9,>=7->langchain-tests<0.4.0,>=0.3.7->langchain-pinecone->-r /home/user/comps/dataprep/src/requirements.txt (line 20)) -#75 120.1 Downloading pluggy-1.5.0-py3-none-any.whl.metadata (4.8 kB) -#75 120.4 Collecting propcache>=0.2.0 (from yarl<2.0,>=1.12.0->aiohttp<4.0.0,>=3.8.3->langchain->-r /home/user/comps/dataprep/src/requirements.txt (line 15)) -#75 120.5 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.2 kB) -#75 120.5 Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.11/site-packages (from jinja2->torch->easyocr->-r /home/user/comps/dataprep/src/requirements.txt (line 6)) (3.0.2) -#75 120.8 Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 120.8 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl.metadata (3.0 kB) -#75 120.9 Collecting referencing>=0.28.4 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 120.9 Downloading referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB) -#75 121.6 Collecting rpds-py>=0.7.1 (from jsonschema->trimesh[easy]>=3.17.1; extra == "mesh" or extra == "full"->docarray[full]->-r /home/user/comps/dataprep/src/requirements.txt (line 4)) -#75 121.6 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) -#75 121.8 INFO: pip is looking at multiple versions of grpcio-status to determine which version is compatible with other requirements. This could take a while. -#75 121.8 Collecting grpcio-status<2.0.dev0,>=1.33.2 (from google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 121.8 Downloading grpcio_status-1.70.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 121.8 Downloading grpcio_status-1.69.0-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 Downloading grpcio_status-1.69.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 Downloading grpcio_status-1.68.1-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 Downloading grpcio_status-1.68.0-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 Downloading grpcio_status-1.68.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 Downloading grpcio_status-1.67.1-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 INFO: pip is still looking at multiple versions of grpcio-status to determine which version is compatible with other requirements. This could take a while. -#75 121.9 Downloading grpcio_status-1.67.0-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 Downloading grpcio_status-1.67.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 121.9 Downloading grpcio_status-1.66.2-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 Downloading grpcio_status-1.66.1-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 Downloading grpcio_status-1.66.0-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C. -#75 122.0 Downloading grpcio_status-1.66.0rc5-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 Downloading grpcio_status-1.66.0rc3-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 Downloading grpcio_status-1.66.0rc2-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 Downloading grpcio_status-1.66.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 Downloading grpcio_status-1.65.5-py3-none-any.whl.metadata (1.1 kB) -#75 122.0 Downloading grpcio_status-1.65.4-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.65.2-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.65.1-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.65.0rc2-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.65.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.64.3-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.64.1-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.64.0-py3-none-any.whl.metadata (1.1 kB) -#75 122.1 Downloading grpcio_status-1.64.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 122.2 Downloading grpcio_status-1.63.2-py3-none-any.whl.metadata (1.1 kB) -#75 122.2 Downloading grpcio_status-1.63.0-py3-none-any.whl.metadata (1.1 kB) -#75 122.2 Downloading grpcio_status-1.63.0rc2-py3-none-any.whl.metadata (1.1 kB) -#75 122.2 Downloading grpcio_status-1.63.0rc1-py3-none-any.whl.metadata (1.1 kB) -#75 122.6 Collecting pyasn1<0.7.0,>=0.4.6 (from pyasn1-modules>=0.2.1->google-auth!=2.24.0,!=2.25.0,<3.0.0dev,>=2.14.1->google-cloud-vision->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 122.6 Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) -#75 123.0 Collecting humanfriendly>=9.1 (from coloredlogs->onnxruntime>=1.17.0->unstructured-inference>=0.8.6->unstructured[all-docs]->-r /home/user/comps/dataprep/src/requirements.txt (line 59)) -#75 123.0 Downloading humanfriendly-10.0-py2.py3-none-any.whl.metadata (9.2 kB) -#75 123.1 Downloading pgvector-0.2.5-py2.py3-none-any.whl (9.6 kB) -#75 123.1 Downloading beautifulsoup4-4.13.1-py3-none-any.whl (185 kB) -#75 123.1 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -#75 123.1 Downloading decord-0.6.0-py3-none-manylinux2010_x86_64.whl (13.6 MB) -#75 123.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.6/13.6 MB 279.1 MB/s eta 0:00:00 -#75 123.2 Downloading easyocr-1.7.2-py3-none-any.whl (2.9 MB) -#75 123.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 127.3 MB/s eta 0:00:00 -#75 123.2 Downloading einops-0.8.0-py3-none-any.whl (43 kB) -#75 123.2 Downloading elasticsearch-8.17.1-py3-none-any.whl (653 kB) -#75 123.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 654.0/654.0 kB 501.8 MB/s eta 0:00:00 -#75 123.2 Downloading fastapi-0.115.8-py3-none-any.whl (94 kB) -#75 123.2 Downloading future-1.0.0-py3-none-any.whl (491 kB) -#75 123.2 Downloading graspologic-3.4.1-py3-none-any.whl (5.2 MB) -#75 123.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/5.2 MB 126.8 MB/s eta 0:00:00 -#75 123.3 Downloading scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.4 MB) -#75 123.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.4/38.4 MB 166.9 MB/s eta 0:00:00 -#75 123.5 Downloading huggingface_hub-0.28.1-py3-none-any.whl (464 kB) -#75 123.5 Downloading ipython-8.32.0-py3-none-any.whl (825 kB) -#75 123.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 825.5/825.5 kB 572.4 MB/s eta 0:00:00 -#75 123.6 Downloading langchain-0.3.17-py3-none-any.whl (1.0 MB) -#75 123.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 475.7 MB/s eta 0:00:00 -#75 123.6 Downloading langchain_community-0.3.16-py3-none-any.whl (2.5 MB) -#75 123.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 232.1 MB/s eta 0:00:00 -#75 123.6 Downloading langchain_elasticsearch-0.3.2-py3-none-any.whl (45 kB) -#75 123.6 Downloading langchain_experimental-0.3.4-py3-none-any.whl (209 kB) -#75 123.6 Downloading langchain_openai-0.3.3-py3-none-any.whl (54 kB) -#75 123.6 Downloading langchain_pinecone-0.2.2-py3-none-any.whl (11 kB) -#75 123.6 Downloading langchain_text_splitters-0.3.5-py3-none-any.whl (31 kB) -#75 123.6 Downloading langchain_huggingface-0.1.2-py3-none-any.whl (21 kB) -#75 123.7 Downloading langchain_milvus-0.1.8-py3-none-any.whl (27 kB) -#75 123.7 Downloading llama_index-0.12.15-py3-none-any.whl (6.9 kB) -#75 123.7 Downloading llama_index_core-0.12.15-py3-none-any.whl (1.6 MB) -#75 123.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 258.0 MB/s eta 0:00:00 -#75 123.7 Downloading llama_index_embeddings_text_embeddings_inference-0.3.2-py3-none-any.whl (3.1 kB) -#75 123.7 Downloading llama_index_graph_stores_neo4j-0.4.6-py3-none-any.whl (17 kB) -#75 123.7 Downloading llama_index_llms_openai-0.3.16-py3-none-any.whl (14 kB) -#75 123.7 Downloading llama_index_llms_openai_like-0.3.3-py3-none-any.whl (3.1 kB) -#75 123.7 Downloading Markdown-3.7-py3-none-any.whl (106 kB) -#75 123.8 Downloading moviepy-2.1.2-py3-none-any.whl (126 kB) -#75 123.8 Downloading neo4j-5.27.0-py3-none-any.whl (301 kB) -#75 123.8 Downloading numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) -#75 123.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 394.2 MB/s eta 0:00:00 -#75 123.8 Downloading openai-1.61.0-py3-none-any.whl (460 kB) -#75 123.8 Downloading opencv_python-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (63.0 MB) -#75 124.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.0/63.0 MB 549.3 MB/s eta 0:00:00 -#75 124.0 Downloading opensearch_py-2.8.0-py3-none-any.whl (353 kB) -#75 124.0 Downloading pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) -#75 124.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 581.4 MB/s eta 0:00:00 -#75 124.0 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB) -#75 124.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 292.6 MB/s eta 0:00:00 -#75 124.0 Downloading pinecone_client-4.1.2-py3-none-any.whl (216 kB) -#75 124.0 Downloading pinecone-5.4.2-py3-none-any.whl (427 kB) -#75 124.1 Downloading pinecone_plugin_inference-3.1.0-py3-none-any.whl (87 kB) -#75 124.1 Downloading prometheus_fastapi_instrumentator-7.0.2-py3-none-any.whl (18 kB) -#75 124.1 Downloading pymupdf-1.25.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (20.0 MB) -#75 124.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 20.0/20.0 MB 213.9 MB/s eta 0:00:00 -#75 124.2 Downloading py4j-0.10.9.7-py2.py3-none-any.whl (200 kB) -#75 124.2 Downloading pytesseract-0.3.13-py3-none-any.whl (14 kB) -#75 124.2 Downloading python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286 kB) -#75 124.2 Downloading python_docx-1.1.2-py3-none-any.whl (244 kB) -#75 124.2 Downloading python_pptx-1.0.2-py3-none-any.whl (472 kB) -#75 124.2 Downloading qdrant_client-1.13.2-py3-none-any.whl (306 kB) -#75 124.3 Downloading redis-5.2.1-py3-none-any.whl (261 kB) -#75 124.3 Downloading sentence_transformers-3.4.1-py3-none-any.whl (275 kB) -#75 124.3 Downloading shortuuid-1.0.13-py3-none-any.whl (10 kB) -#75 124.3 Downloading tiktoken-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) -#75 124.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 363.8 MB/s eta 0:00:00 -#75 124.3 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#75 124.3 Downloading tzlocal-5.2-py3-none-any.whl (17 kB) -#75 124.3 Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB) -#75 124.3 Downloading vdms-0.0.21-py3-none-any.whl (4.6 kB) -#75 124.3 Downloading protobuf-4.24.2-cp37-abi3-manylinux2014_x86_64.whl (311 kB) -#75 124.4 Downloading webvtt_py-0.5.1-py3-none-any.whl (19 kB) -#75 124.4 Downloading aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#75 124.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 258.9 MB/s eta 0:00:00 -#75 124.4 Downloading anyio-4.8.0-py3-none-any.whl (96 kB) -#75 124.4 Downloading anytree-2.12.1-py3-none-any.whl (44 kB) -#75 124.4 Downloading av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.5 MB) -#75 124.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.5/39.5 MB 189.1 MB/s eta 0:00:00 -#75 124.6 Downloading beartype-0.18.5-py3-none-any.whl (917 kB) -#75 124.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 917.8/917.8 kB 562.7 MB/s eta 0:00:00 -#75 124.6 Downloading click-8.1.8-py3-none-any.whl (98 kB) -#75 124.6 Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) -#75 124.7 Downloading decorator-5.1.1-py3-none-any.whl (9.1 kB) -#75 124.7 Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB) -#75 124.7 Downloading dirtyjson-1.0.8-py3-none-any.whl (25 kB) -#75 124.7 Downloading distro-1.9.0-py3-none-any.whl (20 kB) -#75 124.7 Downloading elastic_transport-8.17.0-py3-none-any.whl (64 kB) -#75 124.7 Downloading filetype-1.2.0-py2.py3-none-any.whl (19 kB) -#75 124.7 Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.7 MB) -#75 124.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 26.7/26.7 MB 171.7 MB/s eta 0:00:00 -#75 124.9 Downloading graspologic_native-1.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365 kB) -#75 124.9 Downloading grpcio_tools-1.62.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB) -#75 124.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/2.8 MB 365.6 MB/s eta 0:00:00 -#75 124.9 Downloading h11-0.14.0-py3-none-any.whl (58 kB) -#75 124.9 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) -#75 124.9 Downloading httpcore-1.0.7-py3-none-any.whl (78 kB) -#75 124.9 Downloading httpx_sse-0.4.0-py3-none-any.whl (7.8 kB) -#75 124.9 Downloading hyppo-0.4.0-py3-none-any.whl (146 kB) -#75 125.0 Downloading imageio-2.37.0-py3-none-any.whl (315 kB) -#75 125.0 Downloading imageio_ffmpeg-0.6.0-py3-none-manylinux2014_x86_64.whl (29.5 MB) -#75 125.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 29.5/29.5 MB 185.8 MB/s eta 0:00:00 -#75 125.1 Downloading jax-0.5.0-py3-none-any.whl (2.3 MB) -#75 125.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 334.4 MB/s eta 0:00:00 -#75 125.2 Downloading jedi-0.19.2-py2.py3-none-any.whl (1.6 MB) -#75 125.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 607.5 MB/s eta 0:00:00 -#75 125.2 Downloading jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345 kB) -#75 125.2 Downloading joblib-1.4.2-py3-none-any.whl (301 kB) -#75 125.2 Downloading langchain_core-0.3.33-py3-none-any.whl (412 kB) -#75 125.2 Downloading langchain_tests-0.3.10-py3-none-any.whl (37 kB) -#75 125.2 Downloading langsmith-0.3.4-py3-none-any.whl (333 kB) -#75 125.2 Downloading llama_index_agent_openai-0.4.3-py3-none-any.whl (13 kB) -#75 125.2 Downloading llama_index_cli-0.4.0-py3-none-any.whl (27 kB) -#75 125.2 Downloading llama_index_embeddings_openai-0.3.1-py3-none-any.whl (6.2 kB) -#75 125.2 Downloading llama_index_indices_managed_llama_cloud-0.6.4-py3-none-any.whl (13 kB) -#75 125.3 Downloading llama_index_multi_modal_llms_openai-0.4.3-py3-none-any.whl (5.9 kB) -#75 125.3 Downloading llama_index_program_openai-0.3.1-py3-none-any.whl (5.3 kB) -#75 125.3 Downloading llama_index_question_gen_openai-0.3.0-py3-none-any.whl (2.9 kB) -#75 125.3 Downloading llama_index_readers_file-0.4.4-py3-none-any.whl (39 kB) -#75 125.3 Downloading llama_index_readers_llama_parse-0.4.0-py3-none-any.whl (2.5 kB) -#75 125.3 Downloading llama_index_utils_huggingface-0.3.0-py3-none-any.whl (2.9 kB) -#75 125.3 Downloading lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) -#75 125.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 536.6 MB/s eta 0:00:00 -#75 125.3 Downloading lz4-4.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) -#75 125.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 313.5 MB/s eta 0:00:00 -#75 125.4 Downloading matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB) -#75 125.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.6/8.6 MB 480.0 MB/s eta 0:00:00 -#75 125.4 Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB) -#75 125.4 Downloading nltk-3.9.1-py3-none-any.whl (1.5 MB) -#75 125.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 520.2 MB/s eta 0:00:00 -#75 125.4 Downloading numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB) -#75 125.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/3.8 MB 269.2 MB/s eta 0:00:00 -#75 125.4 Downloading orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB) -#75 125.4 Downloading packaging-24.2-py3-none-any.whl (65 kB) -#75 125.4 Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB) -#75 125.5 Downloading pinecone_plugin_interface-0.0.7-py3-none-any.whl (6.2 kB) -#75 125.5 Downloading POT-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (897 kB) -#75 125.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 897.5/897.5 kB 165.9 MB/s eta 0:00:00 -#75 125.5 Downloading proglog-0.1.10-py3-none-any.whl (6.1 kB) -#75 125.5 Downloading prometheus_client-0.21.1-py3-none-any.whl (54 kB) -#75 125.5 Downloading prompt_toolkit-3.0.50-py3-none-any.whl (387 kB) -#75 125.5 Downloading pydantic-2.10.6-py3-none-any.whl (431 kB) -#75 125.5 Downloading pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB) -#75 125.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 591.6 MB/s eta 0:00:00 -#75 125.5 Downloading pydantic_settings-2.7.1-py3-none-any.whl (29 kB) -#75 125.5 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) -#75 125.5 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#75 125.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 551.1 MB/s eta 0:00:00 -#75 125.6 Downloading pymilvus-2.5.4-py3-none-any.whl (222 kB) -#75 125.6 Downloading grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#75 125.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 181.1 MB/s eta 0:00:00 -#75 125.6 Downloading pypdf-5.2.0-py3-none-any.whl (298 kB) -#75 125.6 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) -#75 125.6 Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB) -#75 125.6 Downloading pytz-2025.1-py2.py3-none-any.whl (507 kB) -#75 125.7 Downloading PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762 kB) -#75 125.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 763.0/763.0 kB 591.0 MB/s eta 0:00:00 -#75 125.7 Downloading regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792 kB) -#75 125.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 792.7/792.7 kB 542.4 MB/s eta 0:00:00 -#75 125.7 Downloading requests-2.32.3-py3-none-any.whl (64 kB) -#75 125.7 Downloading rich-13.9.4-py3-none-any.whl (242 kB) -#75 125.7 Downloading scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) -#75 125.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 143.2 MB/s eta 0:00:00 -#75 125.8 Downloading seaborn-0.13.2-py3-none-any.whl (294 kB) -#75 125.8 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) -#75 125.8 Downloading soupsieve-2.6-py3-none-any.whl (36 kB) -#75 125.8 Downloading SQLAlchemy-2.0.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB) -#75 125.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 564.6 MB/s eta 0:00:00 -#75 125.8 Downloading starlette-0.45.3-py3-none-any.whl (71 kB) -#75 125.9 Downloading statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB) -#75 125.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/10.8 MB 243.3 MB/s eta 0:00:00 -#75 125.9 Downloading tenacity-9.0.0-py3-none-any.whl (28 kB) -#75 125.9 Downloading tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB) -#75 125.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 345.2 MB/s eta 0:00:00 -#75 125.9 Downloading traitlets-5.14.3-py3-none-any.whl (85 kB) -#75 126.0 Downloading transformers-4.48.2-py3-none-any.whl (9.7 MB) -#75 126.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 233.3 MB/s eta 0:00:00 -#75 126.0 Downloading trimesh-4.6.1-py3-none-any.whl (707 kB) -#75 126.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.0/707.0 kB 574.0 MB/s eta 0:00:00 -#75 126.0 Downloading https://download.pytorch.org/whl/triton-3.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (166.7 MB) -#75 128.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.7/166.7 MB 63.9 MB/s eta 0:00:00 -#75 128.6 Downloading types_Pillow-10.2.0.20240822-py3-none-any.whl (54 kB) -#75 128.7 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#75 128.7 Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB) -#75 128.7 Downloading umap_learn-0.5.7-py3-none-any.whl (88 kB) -#75 128.7 Downloading unstructured_inference-0.8.7-py3-none-any.whl (48 kB) -#75 128.7 Downloading pdfminer.six-20240706-py3-none-any.whl (5.6 MB) -#75 128.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.6/5.6 MB 248.5 MB/s eta 0:00:00 -#75 128.7 Downloading unstructured.pytesseract-0.3.13-py3-none-any.whl (14 kB) -#75 128.7 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#75 128.7 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) -#75 128.8 Downloading XlsxWriter-3.2.2-py3-none-any.whl (165 kB) -#75 128.8 Downloading backoff-2.2.1-py3-none-any.whl (15 kB) -#75 128.8 Downloading cairocffi-1.7.1-py3-none-any.whl (75 kB) -#75 128.8 Downloading chardet-5.2.0-py3-none-any.whl (199 kB) -#75 128.8 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -#75 128.8 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB) -#75 128.8 Downloading docarray-0.40.0-py3-none-any.whl (270 kB) -#75 128.8 Downloading effdet-0.4.1-py3-none-any.whl (112 kB) -#75 128.8 Downloading emoji-2.14.1-py3-none-any.whl (590 kB) -#75 128.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 590.6/590.6 kB 575.6 MB/s eta 0:00:00 -#75 128.8 Downloading Events-0.5-py3-none-any.whl (6.8 kB) -#75 128.9 Downloading google_cloud_vision-3.9.0-py2.py3-none-any.whl (514 kB) -#75 128.9 Downloading html5lib-1.1-py2.py3-none-any.whl (112 kB) -#75 128.9 Downloading matplotlib_inline-0.1.7-py3-none-any.whl (9.9 kB) -#75 128.9 Downloading more_itertools-10.6.0-py3-none-any.whl (63 kB) -#75 128.9 Downloading ninja-1.11.1.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (422 kB) -#75 128.9 Downloading onnx-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.0 MB) -#75 129.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.0/16.0 MB 184.4 MB/s eta 0:00:00 -#75 129.0 Downloading opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.0 MB) -#75 129.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.0/50.0 MB 194.0 MB/s eta 0:00:00 -#75 129.3 Downloading openpyxl-3.1.5-py2.py3-none-any.whl (250 kB) -#75 129.3 Downloading pdf2image-1.17.0-py3-none-any.whl (11 kB) -#75 129.3 Downloading pi_heif-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) -#75 129.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 232.6 MB/s eta 0:00:00 -#75 129.3 Downloading pikepdf-9.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB) -#75 129.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 175.5 MB/s eta 0:00:00 -#75 129.3 Downloading psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287 kB) -#75 129.3 Downloading pyclipper-1.3.0.post6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (969 kB) -#75 129.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 969.6/969.6 kB 238.2 MB/s eta 0:00:00 -#75 129.4 Downloading pypandoc-1.15-py3-none-any.whl (21 kB) -#75 129.4 Downloading python_iso639-2025.1.28-py3-none-any.whl (166 kB) -#75 129.4 Downloading python_magic-0.4.27-py2.py3-none-any.whl (13 kB) -#75 129.4 Downloading python_oxmsg-0.0.2-py3-none-any.whl (31 kB) -#75 129.4 Downloading rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB) -#75 129.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 489.5 MB/s eta 0:00:00 -#75 129.4 Downloading scikit_image-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.8 MB) -#75 129.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.8/14.8 MB 223.8 MB/s eta 0:00:00 -#75 129.5 Downloading shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB) -#75 129.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 172.9 MB/s eta 0:00:00 -#75 129.5 Downloading stack_data-0.6.3-py3-none-any.whl (24 kB) -#75 129.5 Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB) -#75 129.5 Downloading unstructured-0.16.17-py3-none-any.whl (1.8 MB) -#75 129.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 387.2 MB/s eta 0:00:00 -#75 129.6 Downloading unstructured_client-0.29.0-py3-none-any.whl (63 kB) -#75 129.6 Downloading xlrd-2.0.1-py2.py3-none-any.whl (96 kB) -#75 129.6 Downloading aiofiles-24.1.0-py3-none-any.whl (15 kB) -#75 129.6 Downloading aiohappyeyeballs-2.4.4-py3-none-any.whl (14 kB) -#75 129.6 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) -#75 129.6 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#75 129.6 Downloading asttokens-3.0.0-py3-none-any.whl (26 kB) -#75 129.6 Downloading attrs-25.1.0-py3-none-any.whl (63 kB) -#75 129.6 Downloading autograd-1.7.0-py3-none-any.whl (52 kB) -#75 129.6 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB) -#75 129.7 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#75 129.7 Downloading contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326 kB) -#75 129.7 Downloading cryptography-44.0.0-cp39-abi3-manylinux_2_28_x86_64.whl (4.2 MB) -#75 129.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.2/4.2 MB 358.1 MB/s eta 0:00:00 -#75 129.7 Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB) -#75 129.7 Downloading eval_type_backport-0.2.2-py3-none-any.whl (5.8 kB) -#75 129.7 Downloading executing-2.2.0-py2.py3-none-any.whl (26 kB) -#75 129.7 Downloading fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB) -#75 129.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.9/4.9 MB 300.0 MB/s eta 0:00:00 -#75 129.8 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB) -#75 129.8 Downloading google_api_core-2.24.1-py3-none-any.whl (160 kB) -#75 129.8 Downloading google_auth-2.38.0-py2.py3-none-any.whl (210 kB) -#75 129.8 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (602 kB) -#75 129.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 602.4/602.4 kB 597.8 MB/s eta 0:00:00 -#75 129.8 Downloading h2-4.2.0-py3-none-any.whl (60 kB) -#75 129.8 Downloading idna-3.10-py3-none-any.whl (70 kB) -#75 129.8 Downloading jaxlib-0.5.0-cp311-cp311-manylinux2014_x86_64.whl (102.0 MB) -#75 130.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.0/102.0 MB 232.7 MB/s eta 0:00:00 -#75 130.3 Downloading jsonpatch-1.33-py2.py3-none-any.whl (12 kB) -#75 130.3 Downloading jsonpath_python-1.0.6-py3-none-any.whl (7.6 kB) -#75 130.3 Downloading kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB) -#75 130.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 395.7 MB/s eta 0:00:00 -#75 130.3 Downloading lazy_loader-0.4-py3-none-any.whl (12 kB) -#75 130.3 Downloading llama_cloud-0.1.11-py3-none-any.whl (250 kB) -#75 130.3 Downloading certifi-2024.12.14-py3-none-any.whl (164 kB) -#75 130.3 Downloading llama_parse-0.5.20-py3-none-any.whl (16 kB) -#75 130.3 Downloading llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB) -#75 130.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.4/42.4 MB 183.1 MB/s eta 0:00:00 -#75 130.6 Downloading manifold3d-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB) -#75 130.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 247.1 MB/s eta 0:00:00 -#75 130.6 Downloading mapbox_earcut-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96 kB) -#75 130.6 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#75 130.6 Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) -#75 130.6 Downloading milvus_lite-2.4.11-py3-none-manylinux2014_x86_64.whl (45.2 MB) -#75 130.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.2/45.2 MB 200.3 MB/s eta 0:00:00 -#75 130.9 Downloading ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) -#75 130.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 231.2 MB/s eta 0:00:00 -#75 130.9 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB) -#75 130.9 Downloading omegaconf-2.3.0-py3-none-any.whl (79 kB) -#75 130.9 Downloading onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (13.3 MB) -#75 131.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.3/13.3 MB 169.4 MB/s eta 0:00:00 -#75 131.0 Downloading parso-0.8.4-py2.py3-none-any.whl (103 kB) -#75 131.0 Downloading patsy-1.0.1-py2.py3-none-any.whl (232 kB) -#75 131.0 Downloading proto_plus-1.26.0-py3-none-any.whl (50 kB) -#75 131.0 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB) -#75 131.0 Downloading pycocotools-2.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458 kB) -#75 131.1 Downloading pynndescent-0.5.13-py3-none-any.whl (56 kB) -#75 131.1 Downloading pyparsing-3.2.1-py3-none-any.whl (107 kB) -#75 131.1 Downloading pytest-8.3.4-py3-none-any.whl (343 kB) -#75 131.1 Downloading pytest_asyncio-0.25.3-py3-none-any.whl (19 kB) -#75 131.1 Downloading pytest_socket-0.7.0-py3-none-any.whl (6.8 kB) -#75 131.1 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) -#75 131.1 Downloading safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461 kB) -#75 131.1 Downloading simsimd-6.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (632 kB) -#75 131.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 632.7/632.7 kB 587.5 MB/s eta 0:00:00 -#75 131.1 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) -#75 131.1 Downloading smart_open-7.1.0-py3-none-any.whl (61 kB) -#75 131.1 Downloading striprtf-0.0.26-py3-none-any.whl (6.9 kB) -#75 131.2 Downloading syrupy-4.8.1-py3-none-any.whl (50 kB) -#75 131.2 Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) -#75 131.2 Downloading tifffile-2025.1.10-py3-none-any.whl (227 kB) -#75 131.2 Downloading timm-1.0.14-py3-none-any.whl (2.4 MB) -#75 131.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 258.8 MB/s eta 0:00:00 -#75 131.2 Downloading ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53 kB) -#75 131.2 Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB) -#75 131.2 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) -#75 131.2 Downloading zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) -#75 131.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 544.9 MB/s eta 0:00:00 -#75 131.2 Downloading colorlog-6.9.0-py3-none-any.whl (11 kB) -#75 131.3 Downloading embreex-2.17.7.post6-cp311-cp311-manylinux_2_28_x86_64.whl (17.2 MB) -#75 131.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 301.5 MB/s eta 0:00:00 -#75 131.3 Downloading et_xmlfile-2.0.0-py3-none-any.whl (18 kB) -#75 131.3 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) -#75 131.3 Downloading olefile-0.47-py2.py3-none-any.whl (114 kB) -#75 131.4 Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) -#75 131.4 Downloading pure_eval-0.2.3-py3-none-any.whl (11 kB) -#75 131.4 Downloading pypdfium2-4.30.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB) -#75 131.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 302.5 MB/s eta 0:00:00 -#75 131.4 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) -#75 131.4 Downloading Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (543 kB) -#75 131.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 543.2/543.2 kB 598.3 MB/s eta 0:00:00 -#75 131.4 Downloading svg.path-6.3-py2.py3-none-any.whl (16 kB) -#75 131.4 Downloading vhacdx-0.0.8.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212 kB) -#75 131.4 Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB) -#75 131.4 Downloading xatlas-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB) -#75 131.5 Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) -#75 131.5 Downloading cachetools-5.5.1-py3-none-any.whl (9.5 kB) -#75 131.5 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#75 131.5 Downloading grpcio_status-1.63.0rc1-py3-none-any.whl (14 kB) -#75 131.5 Downloading hpack-4.1.0-py3-none-any.whl (34 kB) -#75 131.5 Downloading hyperframe-6.1.0-py3-none-any.whl (13 kB) -#75 131.5 Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) -#75 131.5 Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB) -#75 131.5 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#75 131.5 Downloading pluggy-1.5.0-py3-none-any.whl (20 kB) -#75 131.5 Downloading propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) -#75 131.5 Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB) -#75 131.6 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) -#75 131.6 Downloading rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381 kB) -#75 131.6 Downloading rsa-4.9-py3-none-any.whl (34 kB) -#75 131.6 Downloading coloredlogs-15.0.1-py2.py3-none-any.whl (46 kB) -#75 131.6 Downloading flatbuffers-25.1.24-py2.py3-none-any.whl (30 kB) -#75 131.6 Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) -#75 131.6 Downloading pycparser-2.22-py3-none-any.whl (117 kB) -#75 131.6 Downloading humanfriendly-10.0-py2.py3-none-any.whl (86 kB) -#75 131.6 Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) -#75 134.1 Building wheels for collected packages: docx2txt, html2text, openai-whisper, psycopg2, pyspark, typing, langdetect, antlr4-python3-runtime, pycollada -#75 134.1 Building wheel for docx2txt (setup.py): started -#75 134.3 Building wheel for docx2txt (setup.py): finished with status 'done' -#75 134.3 Created wheel for docx2txt: filename=docx2txt-0.8-py3-none-any.whl size=3990 sha256=db4dec12df324fc0ae53bd5d6b35e1a13d31e1bbcfcb500172085834463037b6 -#75 134.3 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/0f/0e/7a/3094a4ceefe657bff7e12dd9592a9d5b6487ef4338ace0afa6 -#75 134.3 Building wheel for html2text (setup.py): started -#75 134.6 Building wheel for html2text (setup.py): finished with status 'done' -#75 134.6 Created wheel for html2text: filename=html2text-2024.2.26-py3-none-any.whl size=33107 sha256=de8406962df63c87c96cb5ea3544478f23de8df3ca3713ee798e0e6f0cd2dd3a -#75 134.6 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/23/58/7c/d9c8c4d924a1ac2b621add1b2c1d30b639629a33cfdfde6a45 -#75 134.6 Building wheel for openai-whisper (pyproject.toml): started -#75 134.9 Building wheel for openai-whisper (pyproject.toml): finished with status 'done' -#75 134.9 Created wheel for openai-whisper: filename=openai_whisper-20240930-py3-none-any.whl size=803373 sha256=3d9ad731e94f65b1453372a7b4e2f8fb799fe0d7cd94a35189ad9c904e1858b7 -#75 134.9 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/2f/f2/ce/6eb23db4091d026238ce76703bd66da60b969d70bcc81d5d3a -#75 134.9 Building wheel for psycopg2 (setup.py): started -#75 142.2 Building wheel for psycopg2 (setup.py): finished with status 'done' -#75 142.2 Created wheel for psycopg2: filename=psycopg2-2.9.10-cp311-cp311-linux_x86_64.whl size=494879 sha256=5e62d919b7e03889d5e14f914c301c6523829fb08227b7e9aa455ef023ab3e92 -#75 142.2 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/d9/83/60/e9660320860aef3c38a67dea6ff9538e4cad76502cb39ed280 -#75 142.2 Building wheel for pyspark (setup.py): started -#75 154.7 Building wheel for pyspark (setup.py): finished with status 'done' -#75 155.4 Created wheel for pyspark: filename=pyspark-3.5.4-py2.py3-none-any.whl size=317849827 sha256=7828ede732cbe062d114bcaea49aef0e4de33efea81dff793da5400cbd813270 -#75 155.4 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/8d/28/22/5dbae8a8714ef046cebd320d0ef7c92f5383903cf854c15c0c -#75 155.4 Building wheel for typing (setup.py): started -#75 155.6 Building wheel for typing (setup.py): finished with status 'done' -#75 155.6 Created wheel for typing: filename=typing-3.7.4.3-py3-none-any.whl size=26365 sha256=ded2c080c7a78fc8543493edab72bd3d78bbcca10350c08cf35ba1884e76782b -#75 155.6 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/9d/67/2f/53e3ef32ec48d11d7d60245255e2d71e908201d20c880c08ee -#75 155.6 Building wheel for langdetect (setup.py): started -#75 156.1 Building wheel for langdetect (setup.py): finished with status 'done' -#75 156.1 Created wheel for langdetect: filename=langdetect-1.0.9-py3-none-any.whl size=993284 sha256=896842b35ccfe8aacaddcf3036143c0ef3e83fe00db194994ba766ccce9bc519 -#75 156.1 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/0a/f2/b2/e5ca405801e05eb7c8ed5b3b4bcf1fcabcd6272c167640072e -#75 156.1 Building wheel for antlr4-python3-runtime (setup.py): started -#75 156.3 Building wheel for antlr4-python3-runtime (setup.py): finished with status 'done' -#75 156.3 Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144591 sha256=4dbbc4f046df5f3ed62cf70d6dce99e2755f71e076732c32fa130ccf781ab121 -#75 156.3 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/1a/97/32/461f837398029ad76911109f07047fde1d7b661a147c7c56d1 -#75 156.3 Building wheel for pycollada (setup.py): started -#75 156.5 Building wheel for pycollada (setup.py): finished with status 'done' -#75 156.5 Created wheel for pycollada: filename=pycollada-0.8-py3-none-any.whl size=127558 sha256=5d81df707557423b27db09c2e3cdad81b6ade754a61aec3996f42a975d667d3e -#75 156.5 Stored in directory: /tmp/pip-ephem-wheel-cache-xb_032x4/wheels/72/f0/6c/2fd64355f3a11cb6673fd92e0417c5ed5bf37a796d9c180562 -#75 156.6 Successfully built docx2txt html2text openai-whisper psycopg2 pyspark typing langdetect antlr4-python3-runtime pycollada -#75 157.5 Installing collected packages: webencodings, wcwidth, triton, striprtf, simsimd, pytz, python-bidi, pydub, pyclipper, py4j, pure-eval, ptyprocess, flatbuffers, filetype, Events, docx2txt, dirtyjson, antlr4-python3-runtime, zstandard, xxhash, XlsxWriter, xlrd, wrapt, webvtt-py, urllib3, ujson, tzlocal, tzdata, typing, types-pillow, traitlets, tqdm, tinycss2, threadpoolctl, tenacity, svg.path, soupsieve, sniffio, six, shortuuid, safetensors, rtree, rpds-py, regex, redis, rapidfuzz, PyYAML, python-multipart, python-magic, python-iso639, python-dotenv, pyspark, pypdfium2, pypdf, pyparsing, pypandoc, pymupdf, pygments, pydantic-core, pycparser, pyasn1, psycopg2, psutil, protobuf, propcache, prompt_toolkit, prometheus-client, portalocker, pluggy, pinecone-plugin-interface, Pillow, pexpect, parso, packaging, orjson, opt_einsum, olefile, numpy, ninja, nest-asyncio, neo4j, mypy-extensions, multidict, more-itertools, mdurl, markdown, lz4, lxml, llvmlite, kiwisolver, jsonpointer, jsonpath-python, joblib, jiter, iniconfig, imageio_ffmpeg, idna, hyperframe, humanfriendly, httpx-sse, html2text, hpack, h11, grpcio, greenlet, graspologic-native, future, frozenlist, fonttools, executing, eval-type-backport, et-xmlfile, emoji, einops, distro, defusedxml, decorator, cycler, colorlog, click, charset-normalizer, chardet, certifi, cachetools, beartype, backoff, av, attrs, asttokens, annotated-types, aiohappyeyeballs, aiofiles, yarl, xatlas, vhacdx, vdms, uvicorn, unstructured.pytesseract, typing-inspect, types-requests, trimesh, tifffile, stack_data, SQLAlchemy, smart-open, Shapely, scipy, rsa, requests, referencing, python-pptx, python-oxmsg, python-docx, python-dateutil, pytest, pytesseract, pydantic, pyasn1-modules, proto-plus, proglog, pinecone-plugin-inference, pinecone-client, pi-heif, pgvector, pdf2image, patsy, openpyxl, opencv-python-headless, opencv-python, onnx, omegaconf, numba, nltk, ml_dtypes, milvus-lite, matplotlib-inline, marshmallow, markdown-it-py, mapbox_earcut, manifold3d, lazy-loader, langdetect, jsonpatch, jedi, imageio, httpcore, html5lib, h2, grpcio-tools, googleapis-common-protos, embreex, elastic-transport, deprecated, decord, cssselect2, contourpy, coloredlogs, cffi, beautifulsoup4, autograd, anytree, anyio, aiosignal, tiktoken, syrupy, starlette, scikit-learn, scikit-image, rich, requests-toolbelt, pytest-socket, pytest-asyncio, pydantic-settings, pycollada, POT, pinecone, pikepdf, pandas, opensearch-py, onnxruntime, moviepy, matplotlib, jsonschema-specifications, jaxlib, ipython, huggingface_hub, httpx, grpcio-status, google-auth, gensim, elasticsearch, dataclasses-json, cryptography, cairocffi, aiohttp, unstructured-client, tokenizers, timm, statsmodels, seaborn, pynndescent, pymilvus, pycocotools, prometheus-fastapi-instrumentator, pdfminer.six, openai-whisper, openai, llama-index-core, llama-cloud, langsmith, jsonschema, jax, hyppo, google-api-core, fastapi, easyocr, docarray, cairosvg, unstructured, umap-learn, transformers, qdrant-client, llama-parse, llama-index-utils-huggingface, llama-index-readers-file, llama-index-llms-openai, llama-index-indices-managed-llama-cloud, llama-index-graph-stores-neo4j, llama-index-embeddings-openai, langchain-core, effdet, unstructured-inference, sentence_transformers, llama-index-readers-llama-parse, llama-index-multi-modal-llms-openai, llama-index-llms-openai-like, llama-index-embeddings-text-embeddings-inference, llama-index-cli, llama-index-agent-openai, langchain-text-splitters, langchain-tests, langchain-openai, langchain_milvus, langchain-elasticsearch, graspologic, google-cloud-vision, llama-index-program-openai, langchain-pinecone, langchain_huggingface, langchain, llama-index-question-gen-openai, langchain-community, llama-index, langchain-experimental -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 262.3 Successfully installed Events-0.5 POT-0.9.5 SQLAlchemy-2.0.37 Shapely-2.0.7 XlsxWriter-3.2.2 aiohappyeyeballs-2.4.4 aiohttp-3.10.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 anytree-2.12.1 attrs-25.1.0 autograd-1.7.0 av-14.1.0 backoff-2.2.1 beartype-0.18.5 beautifulsoup4-4.13.1 bs4-0.0.2 cairocffi-1.7.1 cairosvg-2.7.1 certifi-2025.1.31 cffi-1.17.1 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 colorlog-6.9.0 contourpy-1.3.1 cssselect2-0.7.0 cycler-0.12.1 dataclasses-json-0.6.7 defusedxml-0.7.1 deprecated-1.2.18 dirtyjson-1.0.8 diskcache-5.6.3 distro-1.9.0 docarray-0.40.0 docx2txt-0.8 easyocr-1.7.2 elastic-transport-8.17.0 elasticsearch-8.17.1 embreex-2.17.7.post6 fastapi-0.115.8 filetype-1.2.0 fonttools-4.55.8 frozenlist-1.5.0 future-1.0.0 gensim-4.3.3 graspologic-3.4.1 graspologic-native-1.2.3 greenlet-3.1.1 grpcio-1.67.1 grpcio-tools-1.62.3 h11-0.14.0 h2-4.2.0 haystack-ai-2.3.1 haystack-experimental-0.5.0 hpack-4.1.0 httpcore-1.0.7 httpx-0.28.1 httpx-sse-0.4.0 huggingface-hub-0.28.1 hyperframe-6.1.0 hyppo-0.4.0 idna-3.10 imageio-2.37.0 iniconfig-2.0.0 jax-0.5.0 jaxlib-0.5.0 jiter-0.8.2 joblib-1.4.2 jsonpatch-1.33 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 kiwisolver-1.4.8 langchain-0.3.17 langchain-core-0.3.33 langchain-elasticsearch-0.3.2 langchain-pinecone-0.2.2 langchain-tests-0.3.10 langchain-text-splitters-0.3.5 langchain_community-0.3.16 langchain_huggingface-0.1.2 langchain_milvus-0.1.8 langsmith-0.3.4 lazy-imports-0.4.0 lazy-loader-0.4 llama-index-core-0.12.15 llama-index-embeddings-openai-0.3.1 llama-index-embeddings-text-embeddings-inference-0.3.2 llama-index-llms-openai-0.3.16 llama-index-llms-openai-like-0.3.3 llama-index-llms-text-generation-inference-0.3.1 llama-index-utils-huggingface-0.3.0 llama_index_graph_stores_neo4j-0.4.6 llvmlite-0.44.0 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-it-py-3.0.0 marshmallow-3.26.1 matplotlib-3.10.0 mdurl-0.1.2 milvus-lite-2.4.11 ml_dtypes-0.5.1 monotonic-1.6 more-itertools-10.6.0 multidict-6.1.0 mypy-extensions-1.0.0 neo4j-5.27.0 nest-asyncio-1.6.0 ninja-1.11.1.3 nltk-3.9.1 numba-0.61.0 numpy-1.26.4 openai-1.61.0 opencv-python-headless-4.11.0.86 opensearch-py-2.8.0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 pathway-0.3.3 patsy-1.0.1 pgvector-0.3.6 pinecone-5.4.2 pinecone-plugin-inference-3.1.0 pinecone-plugin-interface-0.0.7 pluggy-1.5.0 portalocker-2.10.1 posthog-3.11.0 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-4.24.2 psycopg2-binary-2.9.10 pyarrow-19.0.0 pyclipper-1.3.0.post6 pycollada-0.8 pycparser-2.22 pydantic-2.10.6 pydantic-core-2.27.2 pydantic-settings-2.7.1 pydub-0.25.1 pygments-2.19.1 pymilvus-2.5.4 pymupdf-1.25.2 pynndescent-0.5.13 pyparsing-3.2.1 pytesseract-0.3.13 pytest-8.3.4 pytest-asyncio-0.25.3 pytest-socket-0.7.0 python-bidi-0.6.3 python-dateutil-2.9.0.post0 python-docx-1.1.2 python-dotenv-1.0.1 python-multipart-0.0.20 python-pptx-1.0.2 python-sat-1.8.dev14 pytz-2025.1 pyyaml-6.0.2 qdrant-client-1.13.2 qdrant-haystack-7.0.0 redis-5.2.1 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rtree-1.3.0 safetensors-0.5.2 scikit-image-0.25.1 scikit-learn-1.6.1 scipy-1.12.0 seaborn-0.13.2 sentence_transformers-3.4.1 shortuuid-1.0.13 simsimd-6.2.1 six-1.17.0 smart-open-7.1.0 sniffio-1.3.1 soupsieve-2.6 sqlglot-10.6.1 starlette-0.45.3 statsmodels-0.14.4 svg.path-6.3 syrupy-4.8.1 tenacity-9.0.0 text-generation-0.7.0 threadpoolctl-3.5.0 tifffile-2025.1.10 tiktoken-0.8.0 tinycss2-1.4.0 tokenizers-0.21.0 tqdm-4.67.1 transformers-4.48.2 trimesh-4.6.1 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-inspect-0.9.0 tzdata-2025.1 ujson-5.10.0 umap-learn-0.5.7 urllib3-2.3.0 uvicorn-0.34.0 vdms-0.0.21 vhacdx-0.0.8.post1 webencodings-0.5.1 wrapt-1.17.2 xatlas-0.0.9 xxhash-3.5.0 yarl-1.18.3 zstandard-0.23.0 -#54 262.3 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#54 264.2 Collecting opentelemetry-api==1.27.0 -#54 264.2 Downloading opentelemetry_api-1.27.0-py3-none-any.whl.metadata (1.4 kB) -#54 264.3 Collecting opentelemetry-exporter-otlp==1.27.0 -#54 264.3 Downloading opentelemetry_exporter_otlp-1.27.0-py3-none-any.whl.metadata (2.3 kB) -#54 264.3 Collecting opentelemetry-sdk==1.27.0 -#54 264.3 Downloading opentelemetry_sdk-1.27.0-py3-none-any.whl.metadata (1.5 kB) -#54 264.3 Requirement already satisfied: deprecated>=1.2.6 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api==1.27.0) (1.2.18) -#54 264.4 Collecting importlib-metadata<=8.4.0,>=6.0 (from opentelemetry-api==1.27.0) -#54 264.4 Downloading importlib_metadata-8.4.0-py3-none-any.whl.metadata (4.7 kB) -#54 264.4 Collecting opentelemetry-exporter-otlp-proto-grpc==1.27.0 (from opentelemetry-exporter-otlp==1.27.0) -#54 264.4 Downloading opentelemetry_exporter_otlp_proto_grpc-1.27.0-py3-none-any.whl.metadata (2.3 kB) -#54 264.4 Collecting opentelemetry-exporter-otlp-proto-http==1.27.0 (from opentelemetry-exporter-otlp==1.27.0) -#54 264.4 Downloading opentelemetry_exporter_otlp_proto_http-1.27.0-py3-none-any.whl.metadata (2.3 kB) -#54 264.5 Collecting opentelemetry-semantic-conventions==0.48b0 (from opentelemetry-sdk==1.27.0) -#54 264.5 Downloading opentelemetry_semantic_conventions-0.48b0-py3-none-any.whl.metadata (2.4 kB) -#54 264.5 Requirement already satisfied: typing-extensions>=3.7.4 in /usr/local/lib/python3.11/site-packages (from opentelemetry-sdk==1.27.0) (4.12.2) -#54 264.5 Collecting googleapis-common-protos~=1.52 (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) -#54 264.5 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl.metadata (1.5 kB) -#54 264.5 Requirement already satisfied: grpcio<2.0.0,>=1.0.0 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) (1.67.1) -#54 264.5 Collecting opentelemetry-exporter-otlp-proto-common==1.27.0 (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) -#54 264.5 Downloading opentelemetry_exporter_otlp_proto_common-1.27.0-py3-none-any.whl.metadata (1.8 kB) -#54 264.6 Collecting opentelemetry-proto==1.27.0 (from opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) -#54 264.6 Downloading opentelemetry_proto-1.27.0-py3-none-any.whl.metadata (2.3 kB) -#54 264.6 Requirement already satisfied: requests~=2.7 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (2.32.3) -#54 264.6 Requirement already satisfied: protobuf<5.0,>=3.19 in /usr/local/lib/python3.11/site-packages (from opentelemetry-proto==1.27.0->opentelemetry-exporter-otlp-proto-grpc==1.27.0->opentelemetry-exporter-otlp==1.27.0) (4.24.2) -#54 264.6 Requirement already satisfied: wrapt<2,>=1.10 in /usr/local/lib/python3.11/site-packages (from deprecated>=1.2.6->opentelemetry-api==1.27.0) (1.17.2) -#54 264.6 Collecting zipp>=0.5 (from importlib-metadata<=8.4.0,>=6.0->opentelemetry-api==1.27.0) -#54 264.6 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#54 264.6 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (3.4.1) -#54 264.6 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (3.10) -#54 264.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (2.3.0) -#54 264.6 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.27.0->opentelemetry-exporter-otlp==1.27.0) (2025.1.31) -#54 264.7 Downloading opentelemetry_api-1.27.0-py3-none-any.whl (63 kB) -#54 264.7 Downloading opentelemetry_exporter_otlp-1.27.0-py3-none-any.whl (7.0 kB) -#54 264.7 Downloading opentelemetry_sdk-1.27.0-py3-none-any.whl (110 kB) -#54 264.7 Downloading opentelemetry_exporter_otlp_proto_grpc-1.27.0-py3-none-any.whl (18 kB) -#54 264.7 Downloading opentelemetry_exporter_otlp_proto_http-1.27.0-py3-none-any.whl (17 kB) -#54 264.7 Downloading opentelemetry_semantic_conventions-0.48b0-py3-none-any.whl (149 kB) -#54 264.8 Downloading opentelemetry_exporter_otlp_proto_common-1.27.0-py3-none-any.whl (17 kB) -#54 264.8 Downloading opentelemetry_proto-1.27.0-py3-none-any.whl (52 kB) -#54 264.8 Downloading importlib_metadata-8.4.0-py3-none-any.whl (26 kB) -#54 264.8 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#54 264.8 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#54 265.2 Installing collected packages: zipp, opentelemetry-proto, googleapis-common-protos, opentelemetry-exporter-otlp-proto-common, importlib-metadata, opentelemetry-api, opentelemetry-semantic-conventions, opentelemetry-sdk, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp -#54 265.5 Successfully installed googleapis-common-protos-1.66.0 importlib-metadata-8.4.0 opentelemetry-api-1.27.0 opentelemetry-exporter-otlp-1.27.0 opentelemetry-exporter-otlp-proto-common-1.27.0 opentelemetry-exporter-otlp-proto-grpc-1.27.0 opentelemetry-exporter-otlp-proto-http-1.27.0 opentelemetry-proto-1.27.0 opentelemetry-sdk-1.27.0 opentelemetry-semantic-conventions-0.48b0 zipp-3.21.0 -#54 265.5 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#54 ... - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 168.9 Attempting uninstall: Pillow -#75 168.9 Found existing installation: pillow 11.1.0 -#75 168.9 Uninstalling pillow-11.1.0: -#75 168.9 Successfully uninstalled pillow-11.1.0 -#75 170.2 Attempting uninstall: numpy -#75 170.2 Found existing installation: numpy 2.2.2 -#75 170.3 Uninstalling numpy-2.2.2: -#75 170.3 Successfully uninstalled numpy-2.2.2 -#75 ... - -#54 [opea/retriever:latest 5/6] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt && pip install opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 opentelemetry-sdk==1.27.0 -#54 DONE 270.7s - -#84 [opea/retriever:latest 6/6] WORKDIR /home/user/comps/retrievers/src -#84 DONE 0.2s - -#85 [opea/retriever:latest] exporting to image -#85 exporting layers -#85 exporting layers 15.9s done -#85 writing image sha256:576bb5c811317821ff54337db3d1280e0be50f97d22c94ee70aa044d6311aa74 done -#85 naming to docker.io/opea/retriever:latest done -#85 DONE 15.9s - -#75 [opea/dataprep:latest 6/8] RUN pip install --no-cache-dir --upgrade pip setuptools && if [ cpu = "cpu" ]; then PIP_EXTRA_INDEX_URL="--extra-index-url https://download.pytorch.org/whl/cpu"; else PIP_EXTRA_INDEX_URL=""; fi && pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} && pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/dataprep/src/requirements.txt && pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0 -#75 219.7 Successfully installed Events-0.5 POT-0.9.5 Pillow-10.4.0 PyYAML-6.0.2 SQLAlchemy-2.0.37 Shapely-2.0.7 XlsxWriter-3.2.2 aiofiles-24.1.0 aiohappyeyeballs-2.4.4 aiohttp-3.10.11 aiosignal-1.3.2 annotated-types-0.7.0 antlr4-python3-runtime-4.9.3 anyio-4.8.0 anytree-2.12.1 asttokens-3.0.0 attrs-25.1.0 autograd-1.7.0 av-14.1.0 backoff-2.2.1 beartype-0.18.5 beautifulsoup4-4.13.1 cachetools-5.5.1 cairocffi-1.7.1 cairosvg-2.7.1 certifi-2024.12.14 cffi-1.17.1 chardet-5.2.0 charset-normalizer-3.4.1 click-8.1.8 coloredlogs-15.0.1 colorlog-6.9.0 contourpy-1.3.1 cryptography-44.0.0 cssselect2-0.7.0 cycler-0.12.1 dataclasses-json-0.6.7 decorator-5.1.1 decord-0.6.0 defusedxml-0.7.1 deprecated-1.2.18 dirtyjson-1.0.8 distro-1.9.0 docarray-0.40.0 docx2txt-0.8 easyocr-1.7.2 effdet-0.4.1 einops-0.8.0 elastic-transport-8.17.0 elasticsearch-8.17.1 embreex-2.17.7.post6 emoji-2.14.1 et-xmlfile-2.0.0 eval-type-backport-0.2.2 executing-2.2.0 fastapi-0.115.8 filetype-1.2.0 flatbuffers-25.1.24 fonttools-4.55.8 frozenlist-1.5.0 future-1.0.0 gensim-4.3.3 google-api-core-2.24.1 google-auth-2.38.0 google-cloud-vision-3.9.0 googleapis-common-protos-1.66.0 graspologic-3.4.1 graspologic-native-1.2.3 greenlet-3.1.1 grpcio-1.67.1 grpcio-status-1.63.0rc1 grpcio-tools-1.62.3 h11-0.14.0 h2-4.2.0 hpack-4.1.0 html2text-2024.2.26 html5lib-1.1 httpcore-1.0.7 httpx-0.28.1 httpx-sse-0.4.0 huggingface_hub-0.28.1 humanfriendly-10.0 hyperframe-6.1.0 hyppo-0.4.0 idna-3.10 imageio-2.37.0 imageio_ffmpeg-0.6.0 iniconfig-2.0.0 ipython-8.32.0 jax-0.5.0 jaxlib-0.5.0 jedi-0.19.2 jiter-0.8.2 joblib-1.4.2 jsonpatch-1.33 jsonpath-python-1.0.6 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 kiwisolver-1.4.8 langchain-0.3.17 langchain-community-0.3.16 langchain-core-0.3.33 langchain-elasticsearch-0.3.2 langchain-experimental-0.3.4 langchain-openai-0.3.3 langchain-pinecone-0.2.2 langchain-tests-0.3.10 langchain-text-splitters-0.3.5 langchain_huggingface-0.1.2 langchain_milvus-0.1.8 langdetect-1.0.9 langsmith-0.3.4 lazy-loader-0.4 llama-cloud-0.1.11 llama-index-0.12.15 llama-index-agent-openai-0.4.3 llama-index-cli-0.4.0 llama-index-core-0.12.15 llama-index-embeddings-openai-0.3.1 llama-index-embeddings-text-embeddings-inference-0.3.2 llama-index-graph-stores-neo4j-0.4.6 llama-index-indices-managed-llama-cloud-0.6.4 llama-index-llms-openai-0.3.16 llama-index-llms-openai-like-0.3.3 llama-index-multi-modal-llms-openai-0.4.3 llama-index-program-openai-0.3.1 llama-index-question-gen-openai-0.3.0 llama-index-readers-file-0.4.4 llama-index-readers-llama-parse-0.4.0 llama-index-utils-huggingface-0.3.0 llama-parse-0.5.20 llvmlite-0.44.0 lxml-5.3.0 lz4-4.4.3 manifold3d-3.0.1 mapbox_earcut-1.0.3 markdown-3.7 markdown-it-py-3.0.0 marshmallow-3.26.1 matplotlib-3.10.0 matplotlib-inline-0.1.7 mdurl-0.1.2 milvus-lite-2.4.11 ml_dtypes-0.5.1 more-itertools-10.6.0 moviepy-2.1.2 multidict-6.1.0 mypy-extensions-1.0.0 neo4j-5.27.0 nest-asyncio-1.6.0 ninja-1.11.1.3 nltk-3.9.1 numba-0.61.0 numpy-1.26.4 olefile-0.47 omegaconf-2.3.0 onnx-1.17.0 onnxruntime-1.20.1 openai-1.61.0 openai-whisper-20240930 opencv-python-4.11.0.86 opencv-python-headless-4.11.0.86 openpyxl-3.1.5 opensearch-py-2.8.0 opt_einsum-3.4.0 orjson-3.10.15 packaging-24.2 pandas-2.2.3 parso-0.8.4 patsy-1.0.1 pdf2image-1.17.0 pdfminer.six-20240706 pexpect-4.9.0 pgvector-0.2.5 pi-heif-0.21.0 pikepdf-9.5.1 pinecone-5.4.2 pinecone-client-4.1.2 pinecone-plugin-inference-3.1.0 pinecone-plugin-interface-0.0.7 pluggy-1.5.0 portalocker-2.10.1 proglog-0.1.10 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 prompt_toolkit-3.0.50 propcache-0.2.1 proto-plus-1.26.0 protobuf-4.24.2 psutil-6.1.1 psycopg2-2.9.10 ptyprocess-0.7.0 pure-eval-0.2.3 py4j-0.10.9.7 pyasn1-0.6.1 pyasn1-modules-0.4.1 pyclipper-1.3.0.post6 pycocotools-2.0.8 pycollada-0.8 pycparser-2.22 pydantic-2.10.6 pydantic-core-2.27.2 pydantic-settings-2.7.1 pydub-0.25.1 pygments-2.19.1 pymilvus-2.5.4 pymupdf-1.25.2 pynndescent-0.5.13 pypandoc-1.15 pyparsing-3.2.1 pypdf-5.2.0 pypdfium2-4.30.1 pyspark-3.5.4 pytesseract-0.3.13 pytest-8.3.4 pytest-asyncio-0.25.3 pytest-socket-0.7.0 python-bidi-0.6.3 python-dateutil-2.9.0.post0 python-docx-1.1.2 python-dotenv-1.0.1 python-iso639-2025.1.28 python-magic-0.4.27 python-multipart-0.0.20 python-oxmsg-0.0.2 python-pptx-1.0.2 pytz-2025.1 qdrant-client-1.13.2 rapidfuzz-3.12.1 redis-5.2.1 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 requests-toolbelt-1.0.0 rich-13.9.4 rpds-py-0.22.3 rsa-4.9 rtree-1.3.0 safetensors-0.5.2 scikit-image-0.25.1 scikit-learn-1.6.1 scipy-1.12.0 seaborn-0.13.2 sentence_transformers-3.4.1 shortuuid-1.0.13 simsimd-6.2.1 six-1.17.0 smart-open-7.1.0 sniffio-1.3.1 soupsieve-2.6 stack_data-0.6.3 starlette-0.45.3 statsmodels-0.14.4 striprtf-0.0.26 svg.path-6.3 syrupy-4.8.1 tenacity-9.0.0 threadpoolctl-3.5.0 tifffile-2025.1.10 tiktoken-0.8.0 timm-1.0.14 tinycss2-1.4.0 tokenizers-0.21.0 tqdm-4.67.1 traitlets-5.14.3 transformers-4.48.2 trimesh-4.6.1 triton-3.2.0 types-pillow-10.2.0.20240822 types-requests-2.32.0.20241016 typing-3.7.4.3 typing-inspect-0.9.0 tzdata-2025.1 tzlocal-5.2 ujson-5.10.0 umap-learn-0.5.7 unstructured-0.16.17 unstructured-client-0.29.0 unstructured-inference-0.8.7 unstructured.pytesseract-0.3.13 urllib3-2.3.0 uvicorn-0.34.0 vdms-0.0.21 vhacdx-0.0.8.post1 wcwidth-0.2.13 webencodings-0.5.1 webvtt-py-0.5.1 wrapt-1.17.2 xatlas-0.0.9 xlrd-2.0.1 xxhash-3.5.0 yarl-1.18.3 zstandard-0.23.0 -#75 219.7 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#75 221.5 Collecting opentelemetry-api==1.29.0 -#75 221.7 Downloading opentelemetry_api-1.29.0-py3-none-any.whl.metadata (1.4 kB) -#75 221.7 Collecting opentelemetry-exporter-otlp==1.29.0 -#75 221.7 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#75 221.7 Collecting opentelemetry-sdk==1.29.0 -#75 221.8 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl.metadata (1.5 kB) -#75 221.8 Requirement already satisfied: deprecated>=1.2.6 in /usr/local/lib/python3.11/site-packages (from opentelemetry-api==1.29.0) (1.2.18) -#75 221.8 Collecting importlib-metadata<=8.5.0,>=6.0 (from opentelemetry-api==1.29.0) -#75 221.9 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB) -#75 221.9 Collecting opentelemetry-exporter-otlp-proto-grpc==1.29.0 (from opentelemetry-exporter-otlp==1.29.0) -#75 221.9 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#75 221.9 Collecting opentelemetry-exporter-otlp-proto-http==1.29.0 (from opentelemetry-exporter-otlp==1.29.0) -#75 222.0 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl.metadata (2.2 kB) -#75 222.0 Collecting opentelemetry-semantic-conventions==0.50b0 (from opentelemetry-sdk==1.29.0) -#75 222.0 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl.metadata (2.3 kB) -#75 222.0 Requirement already satisfied: typing-extensions>=3.7.4 in /usr/local/lib/python3.11/site-packages (from opentelemetry-sdk==1.29.0) (4.12.2) -#75 222.0 Requirement already satisfied: googleapis-common-protos~=1.52 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) (1.66.0) -#75 222.0 Requirement already satisfied: grpcio<2.0.0,>=1.63.2 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) (1.67.1) -#75 222.1 Collecting opentelemetry-exporter-otlp-proto-common==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) -#75 222.1 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl.metadata (1.8 kB) -#75 222.1 Collecting opentelemetry-proto==1.29.0 (from opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) -#75 222.1 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl.metadata (2.3 kB) -#75 222.1 Requirement already satisfied: requests~=2.7 in /usr/local/lib/python3.11/site-packages (from opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (2.32.3) -#75 222.3 Collecting protobuf<6.0,>=5.0 (from opentelemetry-proto==1.29.0->opentelemetry-exporter-otlp-proto-grpc==1.29.0->opentelemetry-exporter-otlp==1.29.0) -#75 222.3 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes) -#75 222.4 Requirement already satisfied: wrapt<2,>=1.10 in /usr/local/lib/python3.11/site-packages (from deprecated>=1.2.6->opentelemetry-api==1.29.0) (1.17.2) -#75 222.4 Collecting zipp>=3.20 (from importlib-metadata<=8.5.0,>=6.0->opentelemetry-api==1.29.0) -#75 222.4 Downloading zipp-3.21.0-py3-none-any.whl.metadata (3.7 kB) -#75 222.5 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (3.4.1) -#75 222.5 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (3.10) -#75 222.5 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (2.3.0) -#75 222.5 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/site-packages (from requests~=2.7->opentelemetry-exporter-otlp-proto-http==1.29.0->opentelemetry-exporter-otlp==1.29.0) (2024.12.14) -#75 222.5 Downloading opentelemetry_api-1.29.0-py3-none-any.whl (64 kB) -#75 222.6 Downloading opentelemetry_exporter_otlp-1.29.0-py3-none-any.whl (7.0 kB) -#75 222.6 Downloading opentelemetry_sdk-1.29.0-py3-none-any.whl (118 kB) -#75 222.7 Downloading opentelemetry_exporter_otlp_proto_grpc-1.29.0-py3-none-any.whl (18 kB) -#75 222.8 Downloading opentelemetry_exporter_otlp_proto_http-1.29.0-py3-none-any.whl (17 kB) -#75 222.8 Downloading opentelemetry_semantic_conventions-0.50b0-py3-none-any.whl (166 kB) -#75 222.9 Downloading opentelemetry_exporter_otlp_proto_common-1.29.0-py3-none-any.whl (18 kB) -#75 223.0 Downloading opentelemetry_proto-1.29.0-py3-none-any.whl (55 kB) -#75 223.0 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB) -#75 223.1 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#75 223.1 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) -#75 223.7 Installing collected packages: zipp, protobuf, opentelemetry-proto, importlib-metadata, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, opentelemetry-semantic-conventions, opentelemetry-sdk, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp -#75 223.7 Attempting uninstall: protobuf -#75 223.7 Found existing installation: protobuf 4.24.2 -#75 223.7 Uninstalling protobuf-4.24.2: -#75 223.7 Successfully uninstalled protobuf-4.24.2 -#75 224.1 ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. -#75 224.1 grpcio-tools 1.62.3 requires protobuf<5.0dev,>=4.21.6, but you have protobuf 5.29.3 which is incompatible. -#75 224.1 vdms 0.0.21 requires protobuf==4.24.2, but you have protobuf 5.29.3 which is incompatible. -#75 224.1 Successfully installed importlib-metadata-8.5.0 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 protobuf-5.29.3 zipp-3.21.0 -#75 224.1 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#75 DONE 226.7s - -#86 [opea/dataprep:latest 7/8] RUN mkdir -p /home/user/comps/dataprep/src/uploaded_files && chown -R user /home/user/comps/dataprep/src/uploaded_files -#86 DONE 0.2s - -#87 [opea/dataprep:latest 8/8] WORKDIR /home/user/comps/dataprep/src -#87 DONE 0.0s - -#88 [opea/dataprep:latest] exporting to image -#88 exporting layers -#88 exporting layers 19.0s done -#88 writing image sha256:ec09de9d245da18c6b6f41f8cfd45e7721143c340ed56109c61ac8bb4b4e8ed5 done -#88 naming to docker.io/opea/dataprep:latest done -#88 DONE 19.1s - -#50 [opea/embedding:latest 3/4] RUN pip install --no-cache-dir --upgrade pip setuptools && pip install --no-cache-dir -r /home/comps/embeddings/src/requirements.txt -#50 536.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 766.7/766.7 MB 2.0 MB/s eta 0:00:00 -#50 536.9 Downloading nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB) -#50 766.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 363.4/363.4 MB 1.5 MB/s eta 0:00:00 -#50 766.4 Downloading nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB) -#50 775.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 1.4 MB/s eta 0:00:00 -#50 775.9 Downloading nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB) -#50 794.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/24.6 MB 1.3 MB/s eta 0:00:00 -#50 794.4 Downloading nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB) -#50 795.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 883.7/883.7 kB 1.4 MB/s eta 0:00:00 -#50 795.1 Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) -#50 1158.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 2.2 MB/s eta 0:00:00 -#50 1158.1 Downloading nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB) -#50 1251.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.5/211.5 MB 2.1 MB/s eta 0:00:00 -#50 1251.1 Downloading nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB) -#50 1279.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 2.0 MB/s eta 0:00:00 -#50 1279.7 Downloading nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB) -#50 1339.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 127.9/127.9 MB 2.2 MB/s eta 0:00:00 -#50 1339.1 Downloading nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB) -#50 1438.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.5/207.5 MB 2.1 MB/s eta 0:00:00 -#50 1438.3 Downloading nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl (150.1 MB) -#50 1503.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.1/150.1 MB 2.2 MB/s eta 0:00:00 -#50 1503.1 Downloading nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) -#50 1588.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 2.1 MB/s eta 0:00:00 -#50 1588.6 Downloading nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB) -#50 1599.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.1/21.1 MB 1.9 MB/s eta 0:00:00 -#50 1599.5 Downloading nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB) -#50 1599.6 Downloading sympy-1.13.1-py3-none-any.whl (6.2 MB) -#50 1602.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 2.1 MB/s eta 0:00:00 -#50 1602.6 Downloading triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.2 MB) -#50 1715.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.2/253.2 MB 2.5 MB/s eta 0:00:00 -#50 1716.0 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) -#50 1716.0 Downloading types_requests-2.32.0.20241016-py3-none-any.whl (15 kB) -#50 1716.1 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB) -#50 1716.1 Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) -#50 1716.2 Downloading yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344 kB) -#50 1716.3 Downloading filelock-3.17.0-py3-none-any.whl (16 kB) -#50 1716.3 Downloading ftfy-6.3.1-py3-none-any.whl (44 kB) -#50 1716.3 Downloading timm-1.0.14-py3-none-any.whl (2.4 MB) -#50 1716.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 3.9 MB/s eta 0:00:00 -#50 1717.0 Downloading torchvision-0.21.0-cp311-cp311-manylinux1_x86_64.whl (7.2 MB) -#50 1719.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/7.2 MB 3.1 MB/s eta 0:00:00 -#50 1719.4 Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) -#50 1719.4 Downloading certifi-2025.1.31-py3-none-any.whl (166 kB) -#50 1719.5 Downloading charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143 kB) -#50 1719.6 Downloading googleapis_common_protos-1.66.0-py2.py3-none-any.whl (221 kB) -#50 1719.7 Downloading grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) -#50 1722.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 2.4 MB/s eta 0:00:00 -#50 1722.2 Downloading idna-3.10-py3-none-any.whl (70 kB) -#50 1722.3 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) -#50 1722.3 Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB) -#50 1722.4 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) -#50 1723.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 2.0 MB/s eta 0:00:00 -#50 1723.0 Downloading urllib3-2.3.0-py3-none-any.whl (128 kB) -#50 1723.1 Downloading wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83 kB) -#50 1723.2 Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB) -#50 1723.3 Downloading jinja2-3.1.5-py3-none-any.whl (134 kB) -#50 1723.4 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) -#50 1724.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 1.9 MB/s eta 0:00:00 -#50 1724.3 Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB) -#50 1724.3 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB) -#50 1724.4 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) -#50 1724.4 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) -#50 1724.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 1.9 MB/s eta 0:00:00 -#50 1724.7 Downloading protobuf-5.29.3-cp38-abi3-manylinux2014_x86_64.whl (319 kB) -#50 1732.4 Installing collected packages: wcwidth, triton, nvidia-cusparselt-cu12, mpmath, zipp, wrapt, urllib3, typing-extensions, tqdm, tabulate, sympy, sniffio, shortuuid, safetensors, regex, PyYAML, pygments, protobuf, propcache, prometheus-client, Pillow, packaging, orjson, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, mypy-extensions, multidict, mdurl, MarkupSafe, jiter, idna, h11, grpcio, ftfy, fsspec, frozenlist, filelock, einops, distro, click, charset-normalizer, certifi, attrs, annotated-types, aiohappyeyeballs, yarl, uvicorn, typing-inspect, types-requests, requests, pydantic-core, opentelemetry-proto, nvidia-cusparse-cu12, nvidia-cudnn-cu12, markdown-it-py, jinja2, importlib-metadata, httpcore, googleapis-common-protos, deprecated, anyio, aiosignal, starlette, rich, pydantic, predictionguard, opentelemetry-exporter-otlp-proto-common, opentelemetry-api, nvidia-cusolver-cu12, huggingface_hub, httpx, aiohttp, torch, tokenizers, prometheus-fastapi-instrumentator, opentelemetry-semantic-conventions, openai, fastapi, docarray, transformers, torchvision, opentelemetry-sdk, timm, opentelemetry-exporter-otlp-proto-http, opentelemetry-exporter-otlp-proto-grpc, opentelemetry-exporter-otlp, open-clip-torch -#50 1783.6 Successfully installed MarkupSafe-3.0.2 Pillow-11.1.0 PyYAML-6.0.2 aiohappyeyeballs-2.4.4 aiohttp-3.11.11 aiosignal-1.3.2 annotated-types-0.7.0 anyio-4.8.0 attrs-25.1.0 certifi-2025.1.31 charset-normalizer-3.4.1 click-8.1.8 deprecated-1.2.18 distro-1.9.0 docarray-0.40.0 einops-0.8.0 fastapi-0.115.8 filelock-3.17.0 frozenlist-1.5.0 fsspec-2025.2.0 ftfy-6.3.1 googleapis-common-protos-1.66.0 grpcio-1.70.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 huggingface_hub-0.28.1 idna-3.10 importlib-metadata-8.5.0 jinja2-3.1.5 jiter-0.8.2 markdown-it-py-3.0.0 mdurl-0.1.2 mpmath-1.3.0 multidict-6.1.0 mypy-extensions-1.0.0 networkx-3.4.2 numpy-2.2.2 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-cusparselt-cu12-0.6.2 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 open-clip-torch-2.30.0 openai-1.61.0 opentelemetry-api-1.29.0 opentelemetry-exporter-otlp-1.29.0 opentelemetry-exporter-otlp-proto-common-1.29.0 opentelemetry-exporter-otlp-proto-grpc-1.29.0 opentelemetry-exporter-otlp-proto-http-1.29.0 opentelemetry-proto-1.29.0 opentelemetry-sdk-1.29.0 opentelemetry-semantic-conventions-0.50b0 orjson-3.10.15 packaging-24.2 predictionguard-2.2.1 prometheus-client-0.21.1 prometheus-fastapi-instrumentator-7.0.2 propcache-0.2.1 protobuf-5.29.3 pydantic-2.10.6 pydantic-core-2.27.2 pygments-2.19.1 regex-2024.11.6 requests-2.32.3 rich-13.9.4 safetensors-0.5.2 shortuuid-1.0.13 sniffio-1.3.1 starlette-0.45.3 sympy-1.13.1 tabulate-0.9.0 timm-1.0.14 tokenizers-0.21.0 torch-2.6.0 torchvision-0.21.0 tqdm-4.67.1 transformers-4.48.2 triton-3.2.0 types-requests-2.32.0.20241016 typing-extensions-4.12.2 typing-inspect-0.9.0 urllib3-2.3.0 uvicorn-0.34.0 wcwidth-0.2.13 wrapt-1.17.2 yarl-1.18.3 zipp-3.21.0 -#50 1783.6 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. -#50 DONE 1791.3s - -#89 [opea/embedding:latest 4/4] WORKDIR /home/comps/embeddings/src/ -#89 DONE 0.0s - -#90 [opea/embedding:latest] exporting to image -#90 exporting layers -#90 exporting layers 20.2s done -#90 writing image sha256:9c7b86bd48acd9d0612b817bba5c9ec1fd36f23b958e70cae52d5e5067056ad9 done -#90 naming to docker.io/opea/embedding:latest done -#90 DONE 20.2s diff --git a/MultimodalQnA/tests/embedding-multimodal-bridgetower.log b/MultimodalQnA/tests/embedding-multimodal-bridgetower.log deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/MultimodalQnA/tests/embedding.log b/MultimodalQnA/tests/embedding.log deleted file mode 100644 index 50467c9894..0000000000 --- a/MultimodalQnA/tests/embedding.log +++ /dev/null @@ -1,6 +0,0 @@ -INFO: 10.23.167.165:40738 - "POST /v1/embeddings HTTP/1.1" 200 OK -INFO: 10.23.167.165:40738 - "POST /v1/embeddings HTTP/1.1" 200 OK -INFO: 10.23.167.165:40750 - "POST /v1/embeddings HTTP/1.1" 200 OK -INFO: 10.23.167.165:48432 - "POST /v1/embeddings HTTP/1.1" 200 OK -INFO: 10.23.167.165:48432 - "POST /v1/embeddings HTTP/1.1" 200 OK -INFO: 10.23.167.165:48448 - "POST /v1/embeddings HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/lvm-llava.log b/MultimodalQnA/tests/lvm-llava.log deleted file mode 100644 index a132d3977e..0000000000 --- a/MultimodalQnA/tests/lvm-llava.log +++ /dev/null @@ -1,26 +0,0 @@ -device: cpu -LLaVA warmup... -LLaVA generation begin. -LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 48737.037658691406ms -INFO: 10.23.167.165:43816 - "POST /generate HTTP/1.1" 200 OK -device: cpu -LLaVA warmup... -LLaVA generation begin. -LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 48737.037658691406ms -INFO: 10.23.167.165:43816 - "POST /generate HTTP/1.1" 200 OK -LLaVA generation begin. -LLaVA result = The image is a close-up of a bright blue background, which appears to be a wall or a piece of artwork. The blue color is vibrant and covers the entire frame of the image. The blue hue creates a striking contrast with the rest of the scene, making it the focal point of the image., time = 82346.43244743347ms -INFO: 10.23.167.165:40744 - "POST /generate HTTP/1.1" 200 OK -device: cpu -LLaVA warmup... -LLaVA generation begin. -LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 50633.09907913208ms -INFO: 10.23.167.165:57224 - "POST /generate HTTP/1.1" 200 OK -device: cpu -LLaVA warmup... -LLaVA generation begin. -LLaVA result = The image is a close-up of a bright yellow background, which appears to be a wall or a piece of paper. The yellow color is dominant, and there are no other colors visible in the image. The yellow hue creates a vibrant and lively atmosphere., time = 50633.09907913208ms -INFO: 10.23.167.165:57224 - "POST /generate HTTP/1.1" 200 OK -LLaVA generation begin. -LLaVA result = The image is a close-up of a bright blue background, which appears to be a wall or a piece of artwork. The blue color is vibrant and covers the entire frame of the image. The blue hue creates a striking contrast with the rest of the scene, making it the focal point of the image., time = 84038.241147995ms -INFO: 10.23.167.165:58426 - "POST /generate HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/lvm.log b/MultimodalQnA/tests/lvm.log deleted file mode 100644 index 30daa1747d..0000000000 --- a/MultimodalQnA/tests/lvm.log +++ /dev/null @@ -1,2 +0,0 @@ -INFO: 10.23.167.165:41814 - "POST /v1/lvm HTTP/1.1" 200 OK -INFO: 10.23.167.165:50604 - "POST /v1/lvm HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/multimodalqna.log b/MultimodalQnA/tests/multimodalqna.log deleted file mode 100644 index 315954c207..0000000000 --- a/MultimodalQnA/tests/multimodalqna.log +++ /dev/null @@ -1,30 +0,0 @@ -INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:54386 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:54386 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:54038 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:42812 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:41306 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:54386 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:54038 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:45670 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:36024 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:36024 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:51470 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:34546 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:35510 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:36024 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:51470 - "POST /v1/multimodalqna HTTP/1.1" 200 OK -INFO: 10.23.167.165:44082 - "POST /v1/multimodalqna HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/retriever-redis.log b/MultimodalQnA/tests/retriever-redis.log deleted file mode 100644 index bc4a71a1f3..0000000000 --- a/MultimodalQnA/tests/retriever-redis.log +++ /dev/null @@ -1,2 +0,0 @@ -INFO: 10.23.167.165:47850 - "POST /v1/retrieval HTTP/1.1" 200 OK -INFO: 10.23.167.165:58090 - "POST /v1/retrieval HTTP/1.1" 200 OK diff --git a/MultimodalQnA/tests/start_services_with_compose.log b/MultimodalQnA/tests/start_services_with_compose.log deleted file mode 100644 index e69de29bb2..0000000000 From 220096ed47eb5d772db279af46443db1406dccea Mon Sep 17 00:00:00 2001 From: okhleif-IL Date: Thu, 13 Feb 2025 15:09:08 -0800 Subject: [PATCH 16/47] addressed recent review comments Signed-off-by: okhleif-IL --- MultimodalQnA/docker_compose/intel/cpu/xeon/README.md | 1 + MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md | 2 +- MultimodalQnA/multimodalqna.py | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index 4c16cb5c0a..b0dbacdaca 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -451,6 +451,7 @@ curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -d '{"messages": [{"role": "user", "content": [{"type": "audio", "audio": "UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"}]}]}' ``` +Test the MegaService with a back and forth conversation between the user and assistant including a text to speech response from the assistant using `"modalities": ["text", "audio"]'`: ```bash curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -H "Content-Type: application/json" \ diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index 069a436915..ab6dd48bea 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -386,7 +386,7 @@ curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "Green bananas in a tree"}, {"type": "image_url", "image_url": {"url": "http://images.cocodataset.org/test-stuff2017/000000004248.jpg"}}]}]}' ``` -Test the MegaService with a back and forth conversation between the user and assistant: +Test the MegaService with a back and forth conversation between the user and assistant including a text to speech response from the assistant using `"modalities": ["text", "audio"]'`: ```bash curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index fdbe400d5c..fb78c29c97 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -379,7 +379,6 @@ async def handle_request(self, request: Request): choices = [] usage = UsageInfo() - choices.append( ChatCompletionResponseChoice( index=0, From fc4f46c87194a6d24b8bbd6daa5d5c7254dba22c Mon Sep 17 00:00:00 2001 From: Melanie Hart Buehler Date: Thu, 20 Feb 2025 10:01:51 -0800 Subject: [PATCH 17/47] Modifies a megaservice test to verify correct apple color (#57) Signed-off-by: Melanie Buehler --- MultimodalQnA/tests/test_compose_on_gaudi.sh | 4 ++-- MultimodalQnA/tests/test_compose_on_rocm.sh | 4 ++-- MultimodalQnA/tests/test_compose_on_xeon.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 7fbaac4119..423ebec2ac 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -305,10 +305,10 @@ function validate_megaservice() { echo "Validating megaservice with first query" validate_service \ "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ - '"time_of_frame_ms":' \ + 'red' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": "What is the revenue of Nike in 2023?"}' + '{"messages": "Find an apple. What color is it?"}' echo "Validating megaservice with first audio query" validate_service \ diff --git a/MultimodalQnA/tests/test_compose_on_rocm.sh b/MultimodalQnA/tests/test_compose_on_rocm.sh index 9ba5c68c90..9ba132418e 100644 --- a/MultimodalQnA/tests/test_compose_on_rocm.sh +++ b/MultimodalQnA/tests/test_compose_on_rocm.sh @@ -251,10 +251,10 @@ function validate_megaservice() { echo "Validate megaservice with first query" validate_service \ "http://${host_ip}:8888/v1/multimodalqna" \ - '"time_of_frame_ms":' \ + 'red' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": "What is the revenue of Nike in 2023?"}' + '{"messages": "Find an apple. What color is it?"}' echo "Validate megaservice with first audio query" validate_service \ diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index e7a2ccf519..f7e0662378 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -302,10 +302,10 @@ function validate_megaservice() { echo "Validating megaservice with first query" validate_service \ "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ - '"time_of_frame_ms":' \ + 'red' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": "What is the revenue of Nike in 2023?"}' + '{"messages": "Find an apple. What color is it?"}' echo "Validating megaservice with first audio query" validate_service \ From 6faf0bb676257bb1a5ff8d1218f20f9db2f4fb72 Mon Sep 17 00:00:00 2001 From: Dina Suehiro Jones Date: Thu, 20 Feb 2025 14:00:47 -0800 Subject: [PATCH 18/47] Documentation and diagram update for MultimodalQnA phase 3 enhancements (#58) * MultimodalQnA README and diagram updates for phase 3 enhancements Signed-off-by: dmsuehir * Wording Signed-off-by: dmsuehir * Update to remove your_* vars Signed-off-by: dmsuehir * Updates based on review comments Signed-off-by: dmsuehir --------- Signed-off-by: dmsuehir --- MultimodalQnA/README.md | 77 +++++++++++++++---- .../docker_compose/intel/cpu/xeon/README.md | 9 +-- .../docker_compose/intel/cpu/xeon/set_env.sh | 4 - .../docker_compose/intel/hpu/gaudi/README.md | 9 +-- .../docker_compose/intel/hpu/gaudi/set_env.sh | 4 - 5 files changed, 67 insertions(+), 36 deletions(-) diff --git a/MultimodalQnA/README.md b/MultimodalQnA/README.md index bda42ee285..df0cb91127 100644 --- a/MultimodalQnA/README.md +++ b/MultimodalQnA/README.md @@ -41,12 +41,14 @@ flowchart LR UI([UI server
]):::orchid end + ASR{{Whisper service
}} TEI_EM{{Embedding service
}} VDB{{Vector DB

}} R_RET{{Retriever service
}} DP([Data Preparation
]):::blue LVM_gen{{LVM Service
}} GW([MultimodalQnA GateWay
]):::orange + TTS{{SpeechT5 service
}} %% Data Preparation flow %% Ingest data flow @@ -74,25 +76,42 @@ flowchart LR R_RET <-.->VDB DP <-.->VDB + %% Audio speech recognition used for translating audio queries to text + GW <-.-> ASR + %% Generate spoken responses with text-to-speech using the SpeechT5 model + GW <-.-> TTS ``` This MultimodalQnA use case performs Multimodal-RAG using LangChain, Redis VectorDB and Text Generation Inference on [Intel Gaudi2](https://www.intel.com/content/www/us/en/products/details/processors/ai-accelerators/gaudi-overview.html) and [Intel Xeon Scalable Processors](https://www.intel.com/content/www/us/en/products/details/processors/xeon.html), and we invite contributions from other hardware vendors to expand the example. +The [Whisper Service](https://github.com/opea-project/GenAIComps/blob/main/comps/asr/src/README.md) +is used by MultimodalQnA for converting audio queries to text. If a spoken response is requested, the +[SpeechT5 Service](https://github.com/opea-project/GenAIComps/blob/main/comps/tts/src/README.md) translates the text +response from the LVM to a speech audio file. + The Intel Gaudi2 accelerator supports both training and inference for deep learning models in particular for LLMs. Visit [Habana AI products](https://habana.ai/products) for more details. In the below, we provide a table that describes for each microservice component in the MultimodalQnA architecture, the default configuration of the open source project, hardware, port, and endpoint.
-Gaudi default compose.yaml +Gaudi and Xeon default compose.yaml settings | MicroService | Open Source Project | HW | Port | Endpoint | | ------------ | --------------------- | ----- | ---- | ----------------------------------------------------------- | +| Dataprep | Redis, Langchain, TGI | Xeon | 6007 | /v1/generate_transcripts, /v1/generate_captions, /v1/ingest | | Embedding | Langchain | Xeon | 6000 | /v1/embeddings | -| Retriever | Langchain, Redis | Xeon | 7000 | /v1/multimodal_retrieval | -| LVM | Langchain, TGI | Gaudi | 9399 | /v1/lvm | +| LVM | Langchain, Transformers | Xeon | 9399 | /v1/lvm | +| Retriever | Langchain, Redis | Xeon | 7000 | /v1/retrieval | +| SpeechT5 | Transformers | Xeon | 7055 | /v1/tts | +| Whisper | Transformers | Xeon | 7066 | /v1/asr | | Dataprep | Redis, Langchain, TGI | Gaudi | 6007 | /v1/generate_transcripts, /v1/generate_captions, /v1/ingest | +| Embedding | Langchain | Gaudi | 6000 | /v1/embeddings | +| LVM | Langchain, TGI | Gaudi | 9399 | /v1/lvm | +| Retriever | Langchain, Redis | Gaudi | 7000 | /v1/retrieval | +| SpeechT5 | Transformers | Gaudi | 7055 | /v1/tts | +| Whisper | Transformers | Gaudi | 7066 | /v1/asr |
@@ -104,8 +123,12 @@ By default, the embedding and LVM models are set to a default value as listed be | --------- | ----- | ----------------------------------------- | | embedding | Xeon | BridgeTower/bridgetower-large-itm-mlm-itc | | LVM | Xeon | llava-hf/llava-1.5-7b-hf | +| SpeechT5 | Xeon | microsoft/speecht5_tts | +| Whisper | Xeon | openai/whisper-small | | embedding | Gaudi | BridgeTower/bridgetower-large-itm-mlm-itc | | LVM | Gaudi | llava-hf/llava-v1.6-vicuna-13b-hf | +| SpeechT5 | Gaudi | microsoft/speecht5_tts | +| Whisper | Gaudi | openai/whisper-small | You can choose other LVM models, such as `llava-hf/llava-1.5-7b-hf ` and `llava-hf/llava-1.5-13b-hf`, as needed. @@ -113,9 +136,28 @@ You can choose other LVM models, such as `llava-hf/llava-1.5-7b-hf ` and `llava- The MultimodalQnA service can be effortlessly deployed on either Intel Gaudi2 or Intel XEON Scalable Processors. -Currently we support deploying MultimodalQnA services with docker compose. +Currently we support deploying MultimodalQnA services with docker compose. The [`docker_compose`](docker_compose) +directory has folders which include `compose.yaml` files for different hardware types: + +``` +📂 docker_compose +├── 📂 amd +│   └── 📂 gpu +│   └── 📂 rocm +│   ├── 📄 compose.yaml +│   └── ... +└── 📂 intel + ├── 📂 cpu + │   └── 📂 xeon + │   ├── 📄 compose.yaml + │   └── ... + └── 📂 hpu + └── 📂 gaudi + ├── 📄 compose.yaml + └── ... +``` -### Setup Environment Variable +### Setup Environment Variables To set up environment variables for deploying MultimodalQnA services, follow these steps: @@ -124,8 +166,10 @@ To set up environment variables for deploying MultimodalQnA services, follow the ```bash # Example: export host_ip=$(hostname -I | awk '{print $1}') export host_ip="External_Public_IP" + + # Append the host_ip to the no_proxy list to allow container communication # Example: no_proxy="localhost, 127.0.0.1, 192.168.1.1" - export no_proxy="Your_No_Proxy" + export no_proxy="${no_proxy},${host_ip}" ``` 2. If you are in a proxy environment, also set the proxy-related environment variables: @@ -137,36 +181,41 @@ To set up environment variables for deploying MultimodalQnA services, follow the 3. Set up other environment variables: - > Notice that you can only choose **one** command below to set up envs according to your hardware. Other that the port numbers may be set incorrectly. + > Choose **one** command below to set env vars according to your hardware. Otherwise, the port numbers may be set incorrectly. ```bash # on Gaudi - source ./docker_compose/intel/hpu/gaudi/set_env.sh + cd docker_compose/intel/hpu/gaudi + source ./set_env.sh + # on Xeon - source ./docker_compose/intel/cpu/xeon/set_env.sh + cd docker_compose/intel/cpu/xeon + source ./set_env.sh ``` ### Deploy MultimodalQnA on Gaudi -Refer to the [Gaudi Guide](./docker_compose/intel/hpu/gaudi/README.md) to build docker images from source. +Refer to the [Gaudi Guide](./docker_compose/intel/hpu/gaudi/README.md) if you would like to build docker images from +source, otherwise images will be pulled from Docker Hub. Find the corresponding [compose.yaml](./docker_compose/intel/hpu/gaudi/compose.yaml). ```bash -cd GenAIExamples/MultimodalQnA/docker_compose/intel/hpu/gaudi/ +# While still in the docker_compose/intel/hpu/gaudi directory, use docker compose to bring up the services docker compose -f compose.yaml up -d ``` -> Notice: Currently only the **Habana Driver 1.17.x** is supported for Gaudi. +> Notice: Currently only the **Habana Driver 1.18.x** is supported for Gaudi. ### Deploy MultimodalQnA on Xeon -Refer to the [Xeon Guide](./docker_compose/intel/cpu/xeon/README.md) for more instructions on building docker images from source. +Refer to the [Xeon Guide](./docker_compose/intel/cpu/xeon/README.md) if you would like to build docker images from +source, otherwise images will be pulled from Docker Hub. Find the corresponding [compose.yaml](./docker_compose/intel/cpu/xeon/compose.yaml). ```bash -cd GenAIExamples/MultimodalQnA/docker_compose/intel/cpu/xeon/ +# While still in the docker_compose/intel/cpu/xeon directory, use docker compose to bring up the services docker compose -f compose.yaml up -d ``` diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index 7fdfaabad4..6c8293bb87 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -63,7 +63,7 @@ Since the `compose.yaml` will consume some environment variables, you need to se **Export the value of the public IP address of your Xeon server to the `host_ip` environment variable** -> Change the External_Public_IP below with the actual IPV4 value +> Change the External_Public_IP below with the actual IPV4 value when setting the `host_ip` value (do not use localhost). ``` export host_ip="External_Public_IP" @@ -72,13 +72,10 @@ export host_ip="External_Public_IP" **Append the value of the public IP address to the no_proxy list** ```bash -export your_no_proxy=${your_no_proxy},"External_Public_IP" +export no_proxy=${no_proxy},${host_ip} ``` ```bash -export no_proxy=${your_no_proxy} -export http_proxy=${your_http_proxy} -export https_proxy=${your_http_proxy} export MM_EMBEDDING_SERVICE_HOST_IP=${host_ip} export MM_RETRIEVER_SERVICE_HOST_IP=${host_ip} export LVM_SERVICE_HOST_IP=${host_ip} @@ -114,8 +111,6 @@ export UI_PORT=5173 export UI_TIMEOUT=200 ``` -Note: Please replace with `host_ip` with you external IP address, do not use localhost. - > Note: The `MAX_IMAGES` environment variable is used to specify the maximum number of images that will be sent from the LVM service to the LLaVA server. > If an image list longer than `MAX_IMAGES` is sent to the LVM server, a shortened image list will be sent to the LLaVA service. If the image list > needs to be shortened, the most recent images (the ones at the end of the list) are prioritized to send to the LLaVA service. Some LLaVA models have not diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh index 115fd87e93..0c61c7dc91 100755 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh @@ -8,10 +8,6 @@ popd > /dev/null export host_ip=$(hostname -I | awk '{print $1}') -export no_proxy=${your_no_proxy} -export http_proxy=${your_http_proxy} -export https_proxy=${your_http_proxy} - export MM_EMBEDDING_SERVICE_HOST_IP=${host_ip} export MM_RETRIEVER_SERVICE_HOST_IP=${host_ip} export LVM_SERVICE_HOST_IP=${host_ip} diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index a47ff05fc0..56f9b0789d 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -8,7 +8,7 @@ Since the `compose.yaml` will consume some environment variables, you need to se **Export the value of the public IP address of your Gaudi server to the `host_ip` environment variable** -> Change the External_Public_IP below with the actual IPV4 value +> Change the External_Public_IP below with the actual IPV4 value when setting the `host_ip` value (do not use localhost). ``` export host_ip="External_Public_IP" @@ -17,13 +17,10 @@ export host_ip="External_Public_IP" **Append the value of the public IP address to the no_proxy list** ```bash -export your_no_proxy=${your_no_proxy},"External_Public_IP" +export no_proxy=${no_proxy},${host_ip} ``` ```bash -export no_proxy=${your_no_proxy} -export http_proxy=${your_http_proxy} -export https_proxy=${your_http_proxy} export MM_EMBEDDING_SERVICE_HOST_IP=${host_ip} export MM_RETRIEVER_SERVICE_HOST_IP=${host_ip} export LVM_SERVICE_HOST_IP=${host_ip} @@ -60,8 +57,6 @@ export UI_PORT=5173 export UI_TIMEOUT=200 ``` -Note: Please replace with `host_ip` with you external IP address, do not use localhost. - > Note: The `MAX_IMAGES` environment variable is used to specify the maximum number of images that will be sent from the LVM service to the LLaVA server. > If an image list longer than `MAX_IMAGES` is sent to the LVM server, a shortened image list will be sent to the LLaVA service. If the image list > needs to be shortened, the most recent images (the ones at the end of the list) are prioritized to send to the LLaVA service. Some LLaVA models have not diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh index 002b7e1cfe..b9be945ac7 100755 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh @@ -13,10 +13,6 @@ export MM_RETRIEVER_SERVICE_HOST_IP=${host_ip} export LVM_SERVICE_HOST_IP=${host_ip} export MEGA_SERVICE_HOST_IP=${host_ip} -export no_proxy=${your_no_proxy} -export http_proxy=${your_http_proxy} -export https_proxy=${your_http_proxy} - export REDIS_DB_PORT=6379 export REDIS_INSIGHTS_PORT=8001 export REDIS_URL="redis://${host_ip}:${REDIS_DB_PORT}" From aa4158814c5d8a2180414d90c086f1b9da2ac065 Mon Sep 17 00:00:00 2001 From: Omar Khleif Date: Thu, 20 Feb 2025 14:07:41 -0800 Subject: [PATCH 19/47] Backend Implementation for Text to Speech (#53) * added TTS linkage to backend Signed-off-by: okhleif-IL * added modalities as a toggle Signed-off-by: okhleif-IL * doc updates and code refactor Signed-off-by: okhleif-IL * added tts test to megaservice tests Signed-off-by: okhleif-IL * addressed recent review comments Signed-off-by: okhleif-IL --------- Signed-off-by: okhleif-IL --- MultimodalQnA/README.md | 2 +- .../docker_compose/intel/cpu/xeon/README.md | 47 ++++++++++++++----- .../intel/cpu/xeon/compose.yaml | 15 ++++++ .../docker_compose/intel/cpu/xeon/set_env.sh | 3 ++ .../docker_compose/intel/hpu/gaudi/README.md | 43 ++++++++++++----- .../intel/hpu/gaudi/compose.yaml | 13 +++++ .../docker_compose/intel/hpu/gaudi/set_env.sh | 3 ++ MultimodalQnA/docker_image_build/build.yaml | 12 +++++ MultimodalQnA/multimodalqna.py | 27 ++++++++++- MultimodalQnA/tests/test_compose_on_gaudi.sh | 2 +- MultimodalQnA/tests/test_compose_on_xeon.sh | 7 +-- 11 files changed, 143 insertions(+), 31 deletions(-) diff --git a/MultimodalQnA/README.md b/MultimodalQnA/README.md index df0cb91127..af90a0ecea 100644 --- a/MultimodalQnA/README.md +++ b/MultimodalQnA/README.md @@ -2,7 +2,7 @@ Suppose you possess a set of videos, images, audio files, PDFs, or some combination thereof and wish to perform question-answering to extract insights from these documents. To respond to your questions, the system needs to comprehend a mix of textual, visual, and audio facts drawn from the document contents. The MultimodalQnA framework offers an optimal solution for this purpose. -`MultimodalQnA` addresses your questions by dynamically fetching the most pertinent multimodal information (e.g. images, transcripts, and captions) from your collection of video, image, audio, and PDF files. For this purpose, MultimodalQnA utilizes [BridgeTower model](https://huggingface.co/BridgeTower/bridgetower-large-itm-mlm-gaudi), a multimodal encoding transformer model which merges visual and textual data into a unified semantic space. During the ingestion phase, the BridgeTower model embeds both visual cues and auditory facts as texts, and those embeddings are then stored in a vector database. When it comes to answering a question, the MultimodalQnA will fetch its most relevant multimodal content from the vector store and feed it into a downstream Large Vision-Language Model (LVM) as input context to generate a response for the user. +`MultimodalQnA` addresses your questions by dynamically fetching the most pertinent multimodal information (e.g. images, transcripts, and captions) from your collection of video, image, audio, and PDF files. For this purpose, MultimodalQnA utilizes [BridgeTower model](https://huggingface.co/BridgeTower/bridgetower-large-itm-mlm-gaudi), a multimodal encoding transformer model which merges visual and textual data into a unified semantic space. During the ingestion phase, the BridgeTower model embeds both visual cues and auditory facts as texts, and those embeddings are then stored in a vector database. When it comes to answering a question, the MultimodalQnA will fetch its most relevant multimodal content from the vector store and feed it into a downstream Large Vision-Language Model (LVM) as input context to generate a response for the user, which can be text or audio. The MultimodalQnA architecture shows below: diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index 6c8293bb87..7b97be6b76 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -44,6 +44,10 @@ whisper === port 7066 - Open to 0.0.0.0/0 +speecht5-service +=== +port 7055 - Open to 0.0.0.0/0 + dataprep-multimodal-redis === Port 6007 - Open to 0.0.0.0/0 @@ -83,6 +87,8 @@ export MEGA_SERVICE_HOST_IP=${host_ip} export WHISPER_PORT=7066 export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" export WHISPER_MODEL="base" +export TTS_PORT=7055 +export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" export MAX_IMAGES=1 export REDIS_DB_PORT=6379 export REDIS_INSIGHTS_PORT=8001 @@ -168,7 +174,13 @@ Build whisper server image docker build --no-cache -t opea/whisper:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/asr/src/integrations/dependency/whisper/Dockerfile . ``` -### 6. Build MegaService Docker Image +### 6. Build TTS Image + +```bash +docker build --no-cache -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . +``` + +### 7. Build MegaService Docker Image To construct the Mega Service, we utilize the [GenAIComps](https://github.com/opea-project/GenAIComps.git) microservice pipeline within the [multimodalqna.py](../../../../multimodalqna.py) Python script. Build MegaService Docker image via below command: @@ -179,7 +191,7 @@ docker build --no-cache -t opea/multimodalqna:latest --build-arg https_proxy=$ht cd ../.. ``` -### 7. Build UI Docker Image +### 8. Build UI Docker Image Build frontend Docker image via below command: @@ -196,11 +208,12 @@ Then run the command `docker images`, you will have the following 11 Docker Imag 3. `opea/lvm-llava:latest` 4. `opea/retriever:latest` 5. `opea/whisper:latest` -6. `opea/redis-vector-db` -7. `opea/embedding:latest` -8. `opea/embedding-multimodal-bridgetower:latest` -9. `opea/multimodalqna:latest` -10. `opea/multimodalqna-ui:latest` +6. `opea/speech5:latest` +7. `opea/redis-vector-db` +8. `opea/embedding:latest` +9. `opea/embedding-multimodal-bridgetower:latest` +10. `opea/multimodalqna:latest` +11. `opea/multimodalqna-ui:latest` ## 🚀 Start Microservices @@ -275,7 +288,16 @@ curl ${WHISPER_SERVER_ENDPOINT} \ -d '{"audio" : "UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"}' ``` -5. lvm-llava +5. tts + +```bash +curl ${TTS_ENDPOINT} \ + -X POST \ + -d '{"text": "Who are you?"}' \ + -H 'Content-Type: application/json' +``` + +6. lvm-llava ```bash curl http://${host_ip}:${LLAVA_SERVER_PORT}/generate \ @@ -284,7 +306,7 @@ curl http://${host_ip}:${LLAVA_SERVER_PORT}/generate \ -d '{"prompt":"Describe the image please.", "img_b64_str": "iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAFUlEQVR42mP8/5+hnoEIwDiqkL4KAcT9GO0U4BxoAAAAAElFTkSuQmCC"}' ``` -6. lvm +7. lvm ```bash curl http://${host_ip}:${LVM_PORT}/v1/lvm \ @@ -309,7 +331,7 @@ curl http://${host_ip}:${LVM_PORT}/v1/lvm \ -d '{"retrieved_docs": [], "initial_query": "What is this?", "top_n": 1, "metadata": [], "chat_template":"The caption of the image is: '\''{context}'\''. {question}"}' ``` -7. dataprep-multimodal-redis +8. dataprep-multimodal-redis Download a sample video (.mp4), image (.png, .gif, .jpg), pdf, and audio file (.wav, .mp3) and create a caption @@ -389,7 +411,7 @@ curl -X POST \ ${DATAPREP_DELETE_FILE_ENDPOINT} ``` -8. MegaService +9. MegaService Test the MegaService with a text query: @@ -424,8 +446,9 @@ curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -d '{"messages": [{"role": "user", "content": [{"type": "audio", "audio": "UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"}]}]}' ``` +Test the MegaService with a back and forth conversation between the user and assistant including a text to speech response from the assistant using `"modalities": ["text", "audio"]'`: ```bash curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -H "Content-Type: application/json" \ - -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10}' + -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' ``` diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml index 3be04537fd..0bc7321500 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/compose.yaml @@ -13,6 +13,19 @@ services: http_proxy: ${http_proxy} https_proxy: ${https_proxy} restart: unless-stopped + speecht5-service: + image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} + container_name: speecht5-service + ports: + - "${TTS_PORT}:7055" + ipc: host + environment: + no_proxy: ${no_proxy} + http_proxy: ${http_proxy} + https_proxy: ${https_proxy} + TTS_PORT: ${TTS_PORT} + TTS_ENDPOINT: ${TTS_ENDPOINT} + restart: unless-stopped redis-vector-db: image: redis/redis-stack:7.2.0-v9 container_name: redis-vector-db @@ -152,6 +165,8 @@ services: LVM_MODEL_ID: ${LVM_MODEL_ID} WHISPER_PORT: ${WHISPER_PORT} WHISPER_SERVER_ENDPOINT: ${WHISPER_SERVER_ENDPOINT} + TTS_PORT: ${TTS_PORT} + TTS_ENDPOINT: ${TTS_ENDPOINT} ipc: host restart: always multimodalqna-ui: diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh index 0c61c7dc91..0cd1267460 100755 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/set_env.sh @@ -13,6 +13,9 @@ export MM_RETRIEVER_SERVICE_HOST_IP=${host_ip} export LVM_SERVICE_HOST_IP=${host_ip} export MEGA_SERVICE_HOST_IP=${host_ip} +export TTS_PORT=7055 +export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" + export WHISPER_PORT=7066 export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" export WHISPER_MODEL="base" diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index 56f9b0789d..bcbea213b8 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -116,7 +116,15 @@ Build whisper server image docker build --no-cache -t opea/whisper:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/asr/src/integrations/dependency/whisper/Dockerfile . ``` -### 6. Build MegaService Docker Image +### 6. Build TTS Server Image + +Build TTS server image + +```bash +docker build --no-cache -t opea/speecht5:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/tts/src/integrations/dependency/speecht5/Dockerfile . +``` + +### 7. Build MegaService Docker Image To construct the Mega Service, we utilize the [GenAIComps](https://github.com/opea-project/GenAIComps.git) microservice pipeline within the [multimodalqna.py](../../../../multimodalqna.py) Python script. Build MegaService Docker image via below command: @@ -126,7 +134,7 @@ cd GenAIExamples/MultimodalQnA docker build --no-cache -t opea/multimodalqna:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile . ``` -### 6. Build UI Docker Image +### 8. Build UI Docker Image Build frontend Docker image via below command: @@ -142,11 +150,12 @@ Then run the command `docker images`, you will have the following 11 Docker Imag 3. `ghcr.io/huggingface/tgi-gaudi:2.0.6` 4. `opea/retriever:latest` 5. `opea/whisper:latest` -6. `opea/redis-vector-db` -7. `opea/embedding:latest` -8. `opea/embedding-multimodal-bridgetower:latest` -9. `opea/multimodalqna:latest` -10. `opea/multimodalqna-ui:latest` +6. `opea/speech5:latest` +7. `opea/redis-vector-db` +8. `opea/embedding:latest` +9. `opea/embedding-multimodal-bridgetower:latest` +10. `opea/multimodalqna:latest` +11. `opea/multimodalqna-ui:latest` ## 🚀 Start Microservices @@ -154,6 +163,7 @@ Then run the command `docker images`, you will have the following 11 Docker Imag By default, the multimodal-embedding and LVM models are set to a default value as listed below: + | Service | Model | | --------- | ------------------------------------------- | | embedding | BridgeTower/bridgetower-large-itm-mlm-gaudi | @@ -230,7 +240,16 @@ curl http://${host_ip}:${LLAVA_SERVER_PORT}/generate \ -H 'Content-Type: application/json' ``` -6. lvm +6. tts + +```bash +curl ${TTS_ENDPOINT} \ + -X POST \ + -d '{"text": "Who are you?"}' \ + -H 'Content-Type: application/json' +``` + +7. lvm ```bash curl http://${host_ip}:${LVM_PORT}/v1/lvm \ @@ -255,7 +274,7 @@ curl http://${host_ip}:${LVM_PORT}/v1/lvm \ -d '{"retrieved_docs": [], "initial_query": "What is this?", "top_n": 1, "metadata": [], "chat_template":"The caption of the image is: '\''{context}'\''. {question}"}' ``` -7. Multimodal Dataprep Microservice +8. Multimodal Dataprep Microservice Download a sample video (.mp4), image (.png, .gif, .jpg), pdf, and audio file (.wav, .mp3) and create a caption @@ -335,7 +354,7 @@ curl -X POST \ ${DATAPREP_DELETE_FILE_ENDPOINT} ``` -8. MegaService +9. MegaService Test the MegaService with a text query: @@ -362,10 +381,10 @@ curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "Green bananas in a tree"}, {"type": "image_url", "image_url": {"url": "http://images.cocodataset.org/test-stuff2017/000000004248.jpg"}}]}]}' ``` -Test the MegaService with a back and forth conversation between the user and assistant: +Test the MegaService with a back and forth conversation between the user and assistant including a text to speech response from the assistant using `"modalities": ["text", "audio"]'`: ```bash curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -H "Content-Type: application/json" \ - -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10}' + -d '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' ``` diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml index 052d4c93c2..b31c3b59cb 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml @@ -21,6 +21,19 @@ services: WHISPER_PORT: ${WHISPER_PORT} WHISPER_SERVER_ENDPOINT: ${WHISPER_SERVER_ENDPOINT} restart: unless-stopped + speecht5-service: + image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} + container_name: speecht5-service + ports: + - "${TTS_PORT}:7055" + ipc: host + environment: + no_proxy: ${no_proxy} + http_proxy: ${http_proxy} + https_proxy: ${https_proxy} + TTS_PORT: ${TTS_PORT} + TTS_ENDPOINT: ${TTS_ENDPOINT} + restart: unless-stopped dataprep-multimodal-redis: image: ${REGISTRY:-opea}/dataprep:${TAG:-latest} container_name: dataprep-multimodal-redis diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh index b9be945ac7..ab89b14596 100755 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/set_env.sh @@ -19,6 +19,9 @@ export REDIS_URL="redis://${host_ip}:${REDIS_DB_PORT}" export REDIS_HOST=${host_ip} export INDEX_NAME="mm-rag-redis" +export TTS_PORT=7055 +export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" + export WHISPER_MODEL="base" export WHISPER_PORT=7066 export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" diff --git a/MultimodalQnA/docker_image_build/build.yaml b/MultimodalQnA/docker_image_build/build.yaml index 1fc599c3e5..cb7d0ebf93 100644 --- a/MultimodalQnA/docker_image_build/build.yaml +++ b/MultimodalQnA/docker_image_build/build.yaml @@ -65,3 +65,15 @@ services: dockerfile: comps/asr/src/integrations/dependency/whisper/Dockerfile extends: multimodalqna image: ${REGISTRY:-opea}/whisper:${TAG:-latest} + speecht5: + build: + context: GenAIComps + dockerfile: comps/tts/src/integrations/dependency/speecht5/Dockerfile + extends: multimodalqna + image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} + tts: + build: + context: GenAIComps + dockerfile: comps/tts/src/Dockerfile + extends: multimodalqna + image: ${REGISTRY:-opea}/tts:${TAG:-latest} diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index 0e3f87d190..fb78c29c97 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -28,7 +28,9 @@ LVM_SERVICE_HOST_IP = os.getenv("LVM_SERVICE_HOST_IP", "0.0.0.0") LVM_SERVICE_PORT = int(os.getenv("LVM_PORT", 9399)) WHISPER_PORT = int(os.getenv("WHISPER_PORT", 7066)) -WHISPER_SERVER_ENDPOINT = os.getenv("WHISPER_SERVER_ENDPOINT", "http://0.0.0.0:$WHISPER_PORT/v1/asr") +WHISPER_SERVER_ENDPOINT = os.getenv("WHISPER_SERVER_ENDPOINT", f"http://0.0.0.0:{WHISPER_PORT}/v1/asr") +TTS_PORT = int(os.getenv("TTS_PORT", 7055)) +TTS_ENDPOINT = os.getenv("TTS_ENDPOINT", f"http://0.0.0.0:{TTS_PORT}/v1/tts") def align_inputs(self, inputs, cur_node, runtime_graph, llm_parameters_dict, **kwargs): @@ -251,6 +253,22 @@ def convert_audio_to_text(self, audio): response = response.json() return response["asr_result"] + + def convert_text_to_audio(self, text): + if isinstance(text, dict): + input_dict = {"text": text["text"]} + else: + input_dict = {"text": text} + + response = requests.post(TTS_ENDPOINT, data=json.dumps(input_dict)) + + if response.status_code != 200: + return JSONResponse( + status_code=503, content={"message": "Unable to convert text to audio. {}".format(response.text)} + ) + + response = response.json() + return response["tts_result"] async def handle_request(self, request: Request): """MultimodalQnA accepts input queries as text, images, and/or audio. @@ -271,6 +289,7 @@ async def handle_request(self, request: Request): print("[ MultimodalQnAService ] stream=True not used, this has not support stream yet!") stream_opt = False chat_request = ChatCompletionRequest.model_validate(data) + modalities = chat_request.modalities num_messages = len(data["messages"]) if isinstance(data["messages"], list) else 1 messages = self._handle_message(chat_request.messages) decoded_audio_input = "" @@ -333,8 +352,12 @@ async def handle_request(self, request: Request): return response last_node = runtime_graph.all_leaves()[-1] + tts_audio = None if "text" in result_dict[last_node].keys(): response = result_dict[last_node]["text"] + # Toggle for TTS + if "audio" in modalities: + tts_audio = {"data": self.convert_text_to_audio(response)} else: # text is not in response message # something wrong, for example due to empty retrieval results @@ -359,7 +382,7 @@ async def handle_request(self, request: Request): choices.append( ChatCompletionResponseChoice( index=0, - message=ChatMessage(role="assistant", content=response), + message=ChatMessage(role="assistant", content=response, audio=tts_audio), finish_reason="stop", metadata=metadata, ) diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 423ebec2ac..2bbe925295 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -60,7 +60,7 @@ function build_docker_images() { git clone --depth 1 --branch ${opea_branch} https://github.com/opea-project/GenAIComps.git echo "Build all the images with --no-cache, check docker_image_build.log for details..." - service_list="multimodalqna multimodalqna-ui embedding-multimodal-bridgetower-gaudi embedding retriever lvm dataprep whisper" + service_list="multimodalqna multimodalqna-ui embedding-multimodal-bridgetower-gaudi embedding retriever speecht5 lvm dataprep whisper" docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log docker pull ghcr.io/huggingface/tgi-gaudi:2.0.6 diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index f7e0662378..b2cbe6bb63 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -60,7 +60,7 @@ function build_docker_images() { git clone --depth 1 --branch ${opea_branch} https://github.com/opea-project/GenAIComps.git echo "Build all the images with --no-cache, check docker_image_build.log for details..." - service_list="multimodalqna multimodalqna-ui embedding-multimodal-bridgetower embedding retriever lvm-llava lvm dataprep whisper" + service_list="multimodalqna multimodalqna-ui embedding-multimodal-bridgetower embedding retriever speecht5 lvm-llava lvm dataprep whisper" docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log docker images && sleep 1s } @@ -75,6 +75,8 @@ function setup_env() { export MAX_IMAGES=1 export WHISPER_MODEL="base" export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" + export TTS_PORT=7055 + export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" export REDIS_DB_PORT=6379 export REDIS_INSIGHTS_PORT=8001 export REDIS_URL="redis://${host_ip}:${REDIS_DB_PORT}" @@ -321,8 +323,7 @@ function validate_megaservice() { '"time_of_frame_ms":' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": [{"role": "user", "content": [{"type": "text", "text": "Find a similar image"}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}]}' - + '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' echo "Validating megaservice with follow-up query" validate_service \ "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ From f84d52d10335fa90b7e4732e752112221e0480e9 Mon Sep 17 00:00:00 2001 From: Dina Suehiro Jones Date: Thu, 20 Feb 2025 14:21:51 -0800 Subject: [PATCH 20/47] Test and documentation updates for image and audio data ingestion (#56) * Add test for image and audio data ingestion Signed-off-by: dmsuehir * README updates Signed-off-by: dmsuehir * Add Gaudi tests Signed-off-by: dmsuehir * Add note about matching base names in test Signed-off-by: dmsuehir --------- Signed-off-by: dmsuehir --- .../docker_compose/intel/cpu/xeon/README.md | 2 +- .../docker_compose/intel/hpu/gaudi/README.md | 2 +- MultimodalQnA/tests/test_compose_on_gaudi.sh | 22 ++++++++++++++----- MultimodalQnA/tests/test_compose_on_xeon.sh | 22 ++++++++++++++----- 4 files changed, 34 insertions(+), 14 deletions(-) diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index 7b97be6b76..ac4b388689 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -372,7 +372,7 @@ curl --silent --write-out "HTTPSTATUS:%{http_code}" \ -X POST -F "files=@./${image_fn}" ``` -Now, test the microservice with posting a custom caption along with an image and a PDF containing images and text. +Now, test the microservice with posting a custom caption along with an image and a PDF containing images and text. The image caption can be provided as a text (`.txt`) or as spoken audio (`.wav` or `.mp3`). ```bash curl --silent --write-out "HTTPSTATUS:%{http_code}" \ diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index bcbea213b8..442f889c77 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -315,7 +315,7 @@ curl --silent --write-out "HTTPSTATUS:%{http_code}" \ -X POST -F "files=@./${image_fn}" ``` -Now, test the microservice with posting a custom caption along with an image and a PDF containing images and text. +Now, test the microservice with posting a custom caption along with an image and a PDF containing images and text. The image caption can be provided as a text (`.txt`) or as spoken audio (`.wav` or `.mp3`). ```bash curl --silent --write-out "HTTPSTATUS:%{http_code}" \ diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 2bbe925295..6104969b85 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -14,10 +14,10 @@ WORKPATH=$(dirname "$PWD") LOG_PATH="$WORKPATH/tests" ip_address=$(hostname -I | awk '{print $1}') -export image_fn="apple.png" +export image_fn="sample.png" export video_fn="WeAreGoingOnBullrun.mp4" -export audio_fn="sample_audio.mp3" -export caption_fn="apple.txt" +export audio_fn="sample.mp3" # audio_fn and caption_fn are used as captions for image_fn, so they all need the same base name +export caption_fn="sample.txt" export pdf_fn="nke-10k-2023.pdf" function check_service_ready() { @@ -139,16 +139,19 @@ function validate_service() { elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-caption"* ]]; then cd $LOG_PATH HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -H 'Content-Type: multipart/form-data' "$URL") + elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-ingest-image-audio"* ]]; then + cd $LOG_PATH + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -F "files=@./${audio_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-ingest"* ]]; then cd $LOG_PATH - HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -F "files=@./apple.txt" -H 'Content-Type: multipart/form-data' "$URL") + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -F "files=@./${caption_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-pdf"* ]]; then cd $LOG_PATH HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${pdf_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep_get"* ]]; then HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -H 'Content-Type: application/json' "$URL") elif [[ $SERVICE_NAME == *"dataprep_del"* ]]; then - HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -d '{"file_path": "apple.txt"}' -H 'Content-Type: application/json' "$URL") + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -d '{"file_path": "${caption_fn}"}' -H 'Content-Type: application/json' "$URL") else HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -d "$INPUT_DATA" -H 'Content-Type: application/json' "$URL") fi @@ -220,12 +223,19 @@ function validate_microservices() { "dataprep-multimodal-redis-transcript" \ "dataprep-multimodal-redis" - echo "Validating Data Prep with Image & Caption Ingestion" + echo "Validating Data Prep with Image & Text Caption Ingestion" validate_service \ "${DATAPREP_INGEST_SERVICE_ENDPOINT}" \ "Data preparation succeeded" \ "dataprep-multimodal-redis-ingest" \ "dataprep-multimodal-redis" + + echo "Validating Data Prep with Image & Audio Caption Ingestion" + validate_service \ + "${DATAPREP_INGEST_SERVICE_ENDPOINT}" \ + "Data preparation succeeded" \ + "dataprep-multimodal-redis-ingest-image-audio" \ + "dataprep-multimodal-redis" echo "Validating Data Prep with PDF" validate_service \ diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index b2cbe6bb63..dd410185d6 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -14,10 +14,10 @@ WORKPATH=$(dirname "$PWD") LOG_PATH="$WORKPATH/tests" ip_address=$(hostname -I | awk '{print $1}') -export image_fn="apple.png" +export image_fn="sample.png" export video_fn="WeAreGoingOnBullrun.mp4" -export audio_fn="sample_audio.mp3" -export caption_fn="apple.txt" +export audio_fn="sample.mp3" # audio_fn and caption_fn are used as captions for image_fn, so they all need the same base name +export caption_fn="sample.txt" export pdf_fn="nke-10k-2023.pdf" function check_service_ready() { @@ -138,16 +138,19 @@ function validate_service() { elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-caption"* ]]; then cd $LOG_PATH HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -H 'Content-Type: multipart/form-data' "$URL") + elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-ingest-image-audio"* ]]; then + cd $LOG_PATH + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -F "files=@./${audio_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-ingest"* ]]; then cd $LOG_PATH - HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -F "files=@./apple.txt" -H 'Content-Type: multipart/form-data' "$URL") + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${image_fn}" -F "files=@./${caption_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep-multimodal-redis-pdf"* ]]; then cd $LOG_PATH HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -F "files=@./${pdf_fn}" -H 'Content-Type: multipart/form-data' "$URL") elif [[ $SERVICE_NAME == *"dataprep_get"* ]]; then HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -H 'Content-Type: application/json' "$URL") elif [[ $SERVICE_NAME == *"dataprep_del"* ]]; then - HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -d '{"file_path": "apple.txt"}' -H 'Content-Type: application/json' "$URL") + HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -d '{"file_path": "${caption_fn}"}' -H 'Content-Type: application/json' "$URL") else HTTP_RESPONSE=$(curl --silent --write-out "HTTPSTATUS:%{http_code}" -X POST -d "$INPUT_DATA" -H 'Content-Type: application/json' "$URL") fi @@ -219,13 +222,20 @@ function validate_microservices() { "dataprep-multimodal-redis-transcript" \ "dataprep-multimodal-redis" - echo "Validating Data Prep with Image & Caption Ingestion" + echo "Validating Data Prep with Image & Text Caption Ingestion" validate_service \ "${DATAPREP_INGEST_SERVICE_ENDPOINT}" \ "Data preparation succeeded" \ "dataprep-multimodal-redis-ingest" \ "dataprep-multimodal-redis" + echo "Validating Data Prep with Image & Audio Caption Ingestion" + validate_service \ + "${DATAPREP_INGEST_SERVICE_ENDPOINT}" \ + "Data preparation succeeded" \ + "dataprep-multimodal-redis-ingest-image-audio" \ + "dataprep-multimodal-redis" + echo "Validating Data Prep with PDF" validate_service \ "${DATAPREP_INGEST_SERVICE_ENDPOINT}" \ From a0b817747ee1fa982430acc76a455d1c7c94d8c0 Mon Sep 17 00:00:00 2001 From: Omar Khleif Date: Wed, 26 Feb 2025 09:48:32 -0800 Subject: [PATCH 21/47] Added TTS validation test (#59) * fixed test and added tts validation Signed-off-by: okhleif-IL * added gaudi test, reverted -speech change Signed-off-by: okhleif-IL --------- Signed-off-by: okhleif-IL --- MultimodalQnA/tests/test_compose_on_gaudi.sh | 10 ++++++++++ MultimodalQnA/tests/test_compose_on_xeon.sh | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 6104969b85..8d3b3da6b8 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -83,6 +83,8 @@ function setup_env() { export MAX_IMAGES=1 export WHISPER_MODEL="base" export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" + export TTS_PORT=7055 + export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" export DATAPREP_MMR_PORT=6007 export DATAPREP_INGEST_SERVICE_ENDPOINT="http://${host_ip}:${DATAPREP_MMR_PORT}/v1/dataprep/ingest" export DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT="http://${host_ip}:${DATAPREP_MMR_PORT}/v1/dataprep/generate_transcripts" @@ -258,6 +260,14 @@ function validate_microservices() { "dataprep_get" \ "dataprep-multimodal-redis" + echo "Validating Text to speech service" + validate_service \ + "${TTS_ENDPOINT}" \ + '"tts_result":' \ + "speecht5-service" \ + "speecht5-service" \ + '{"text": "Who are you?"}' + sleep 1m # multimodal retrieval microservice diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index dd410185d6..ce37fd056e 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -305,6 +305,15 @@ function validate_microservices() { "Data preparation succeeded" \ "dataprep-multimodal-redis-caption" \ "dataprep-multimodal-redis" + + echo "Validating Text to speech service" + validate_service \ + "${TTS_ENDPOINT}" \ + '"tts_result":' \ + "speecht5-service" \ + "speecht5-service" \ + '{"text": "Who are you?"}' + sleep 3m } From 2137998a0f9f453edd00236fa3e3b72f12748f8c Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 4 Mar 2025 11:46:09 -0800 Subject: [PATCH 22/47] Added Logic for audio responses & refactored code to align with new gradio version Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/conversation.py | 176 +++++------------ .../ui/gradio/multimodalqna_ui_gradio.py | 187 ++++++++++-------- MultimodalQnA/ui/gradio/requirements.txt | 2 +- MultimodalQnA/ui/gradio/utils.py | 16 ++ 4 files changed, 175 insertions(+), 206 deletions(-) diff --git a/MultimodalQnA/ui/gradio/conversation.py b/MultimodalQnA/ui/gradio/conversation.py index 678f7872c2..d83926dde3 100644 --- a/MultimodalQnA/ui/gradio/conversation.py +++ b/MultimodalQnA/ui/gradio/conversation.py @@ -2,11 +2,11 @@ # SPDX-License-Identifier: Apache-2.0 import dataclasses +from pathlib import Path from enum import Enum, auto -from typing import Dict, List +from typing import Dict, List, Any, Literal -from PIL import Image -from utils import convert_audio_to_base64, get_b64_frame_from_timestamp +from utils import convert_audio_to_base64, get_b64_frame_from_timestamp, GRADIO_IMAGE_FORMATS, GRADIO_AUDIO_FORMATS class SeparatorStyle(Enum): @@ -21,8 +21,7 @@ class Conversation: system: str roles: List[str] - messages: List[List[str]] - image_query_files: Dict[int, str] + chatbot_history: List[Dict[str, Any]] offset: int sep_style: SeparatorStyle = SeparatorStyle.SINGLE sep: str = "\n" @@ -42,66 +41,49 @@ def _template_caption(self): out = f"The caption associated with the image is '{self.caption}'. " return out - def get_prompt(self): - messages = self.messages - if len(messages) > 1 and messages[1][1] is None: - # Need to do RAG. If the query is text, prompt is the query only - if self.audio_query_file: - ret = [{"role": "user", "content": [{"type": "audio", "audio": self.get_b64_audio_query()}]}] - elif 0 in self.image_query_files: - b64_image = get_b64_frame_from_timestamp(self.image_query_files[0], 0) - ret = [ - { - "role": "user", - "content": [ - {"type": "text", "text": messages[0][1]}, - {"type": "image_url", "image_url": {"url": b64_image}}, - ], - } - ] - else: - ret = messages[0][1] + def get_prompt(self, is_very_first_query): + conv_dict = [] + + if is_very_first_query: + conv_dict.append({'role': 'user', 'content': []}) + for item in self.chatbot_history: + content = item['content'] + + if isinstance(content, str): + conv_dict[-1]['content'].append({'type': 'text', 'text': content}) + elif isinstance(content, dict) and 'path' in content: + if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: + conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(content['path'], 0)}}) + if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: + conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) else: - # No need to do RAG. Thus, prompt of chatcompletion format - conv_dict = [] - if self.sep_style == SeparatorStyle.SINGLE: - for i, (role, message) in enumerate(messages): - if message: - dic = {"role": role} - content = [{"type": "text", "text": message}] - # There might be audio - if self.audio_query_file: - content.append({"type": "audio", "audio": self.get_b64_audio_query()}) - # There might be a returned item from the first query - if i == 0 and self.time_of_frame_ms and self.video_file: - base64_frame = ( - self.base64_frame - if self.base64_frame - else get_b64_frame_from_timestamp(self.video_file, self.time_of_frame_ms) - ) - if base64_frame is None: - base64_frame = "" - # Include the original caption for the returned image/video - if self.caption and content[0]["type"] == "text": - content[0]["text"] = content[0]["text"] + " " + self._template_caption() - content.append({"type": "image_url", "image_url": {"url": base64_frame}}) - # There might be a query image - if i in self.image_query_files: - content.append( - { - "type": "image_url", - "image_url": {"url": get_b64_frame_from_timestamp(self.image_query_files[i], 0)}, - } - ) - dic["content"] = content - conv_dict.append(dic) - else: - raise ValueError(f"Invalid style: {self.sep_style}") - ret = conv_dict - return ret - - def append_message(self, role, message): - self.messages.append([role, message]) + # print(f'chatbot history: \n{self.chatbot_history}') + for i, item in enumerate(self.chatbot_history): + role = item['role'] + content = item['content'] + + if i == 0: + conv_dict.append({'role': role, 'content': []}) + + + if role == 'user': + if conv_dict[-1]['role'] != 'user': + conv_dict.append({'role': role, 'content': []}) + + if isinstance(content, str): + conv_dict[-1]['content'].append({'type': 'text', 'text': content}) + elif isinstance(content, dict) and 'path' in content: + if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: + conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(content['path'], 0)}}) + if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: + conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) + elif role == 'assistant': + if conv_dict[-1]['role'] != 'assistant': + conv_dict.append({'role': role, 'content': []}) + if isinstance(content, str): + conv_dict[-1]['content'] = content + + return conv_dict def get_b64_image(self): b64_img = None @@ -118,68 +100,13 @@ def get_b64_audio_query(self): return b64_audio def to_gradio_chatbot(self): - ret = [] - for i, (role, msg) in enumerate(self.messages[self.offset :]): - if i % 2 == 0: - if type(msg) is tuple: - import base64 - from io import BytesIO - - msg, image, image_process_mode = msg - max_hw, min_hw = max(image.size), min(image.size) - aspect_ratio = max_hw / min_hw - max_len, min_len = 800, 400 - shortest_edge = int(min(max_len / aspect_ratio, min_len, min_hw)) - longest_edge = int(shortest_edge * aspect_ratio) - W, H = image.size - if H > W: - H, W = longest_edge, shortest_edge - else: - H, W = shortest_edge, longest_edge - image = image.resize((W, H)) - buffered = BytesIO() - image.save(buffered, format="JPEG") - img_b64_str = base64.b64encode(buffered.getvalue()).decode() - img_str = f'user upload image' - msg = img_str + msg.replace("", "").strip() - ret.append([msg, None]) - elif i in self.image_query_files: - import base64 - from io import BytesIO - - image = Image.open(self.image_query_files[i]) - max_hw, min_hw = max(image.size), min(image.size) - aspect_ratio = max_hw / min_hw - max_len, min_len = 800, 400 - shortest_edge = int(min(max_len / aspect_ratio, min_len, min_hw)) - longest_edge = int(shortest_edge * aspect_ratio) - W, H = image.size - if H > W: - H, W = longest_edge, shortest_edge - else: - H, W = shortest_edge, longest_edge - image = image.resize((W, H)) - buffered = BytesIO() - if image.format not in ["JPEG", "JPG"]: - image = image.convert("RGB") - image.save(buffered, format="JPEG") - img_b64_str = base64.b64encode(buffered.getvalue()).decode() - img_str = f'user upload image' - msg = img_str + msg.replace("", "").strip() - ret.append([msg, None]) - - else: - ret.append([msg, None]) - else: - ret[-1][-1] = msg - return ret - + return self.chatbot_history + def copy(self): return Conversation( system=self.system, roles=self.roles, - messages=[[x, y] for x, y in self.messages], - image_query_files=self.image_query_files, + chatbot_history=self.chatbot_history, offset=self.offset, sep_style=self.sep_style, sep=self.sep, @@ -192,7 +119,7 @@ def dict(self): return { "system": self.system, "roles": self.roles, - "messages": self.messages, + "chatbot_history": self.chatbot_history, "offset": self.offset, "sep": self.sep, "time_of_frame_ms": self.time_of_frame_ms, @@ -209,8 +136,7 @@ def dict(self): multimodalqna_conv = Conversation( system="", roles=("user", "assistant"), - messages=(), - image_query_files={}, + chatbot_history=[], offset=0, sep_style=SeparatorStyle.SINGLE, sep="\n", diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index b32faa71f4..f768adcbf9 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -14,7 +14,7 @@ from fastapi import FastAPI from fastapi.staticfiles import StaticFiles from gradio_pdf import PDF -from utils import build_logger, make_temp_image, server_error_msg, split_video +from utils import build_logger, make_temp_image, server_error_msg, split_video, convert_base64_to_audio, GRADIO_IMAGE_FORMATS, GRADIO_AUDIO_FORMATS logger = build_logger("gradio_web_server", "gradio_web_server.log") logflag = os.getenv("LOGFLAG", False) @@ -56,79 +56,101 @@ def clear_history(state, request: gr.Request): if state.pdf and os.path.exists(state.pdf): os.remove(state.pdf) state = multimodalqna_conv.copy() + state.chatbot_history = [] video = gr.Video(height=512, width=512, elem_id="video", visible=True, label="Media") image = gr.Image(height=512, width=512, elem_id="image", visible=False, label="Media") pdf = PDF(height=512, elem_id="pdf", interactive=False, visible=False, label="Media") - return (state, state.to_gradio_chatbot(), {"text": "", "files": []}, None, video, image, pdf) + (disable_btn,) * 1 + return (state, state.to_gradio_chatbot(), None, video, image, pdf) + (disable_btn,) * 1 -def add_text(state, textbox, audio, request: gr.Request): - text = textbox["text"] - logger.info(f"add_text. ip: {request.client.host}. len: {len(text)}") - if audio: - state.audio_query_file = audio - state.append_message(state.roles[0], "--input placeholder--") - state.append_message(state.roles[1], None) - state.skip_next = False - return (state, state.to_gradio_chatbot(), None, None) + (disable_btn,) * 1 - # If it is a image query - elif textbox["files"]: - image_file = textbox["files"][0] - state.image_query_files[len(state.messages)] = image_file - state.append_message(state.roles[0], text) - state.append_message(state.roles[1], None) - state.skip_next = False - return (state, state.to_gradio_chatbot(), None, None) + (disable_btn,) * 1 - elif len(text) <= 0: +def add_text(state, multimodal_textbox, request: gr.Request): + text = multimodal_textbox["text"] + files = multimodal_textbox["files"] + + image_file, audio_file = None, None + + if not text and not files: state.skip_next = True - return (state, state.to_gradio_chatbot(), None, None) + (no_change_btn,) * 1 - + return (state, state.to_gradio_chatbot(), None) + (no_change_btn,) * 1 + text = text[:2000] # Hard cut-off - state.append_message(state.roles[0], text) - state.append_message(state.roles[1], None) state.skip_next = False - - return (state, state.to_gradio_chatbot(), None, None) + (disable_btn,) * 1 + + if files: + if Path(files[0]).suffix in GRADIO_IMAGE_FORMATS: + image_file = files[0] + if Path(files[0]).suffix in GRADIO_AUDIO_FORMATS or len(files) > 1: + audio_file = files[-1] # Guaranteed that last file would be recorded audio + + + # Add to chatbot history + if image_file: + state.image_query_file = image_file + state.chatbot_history.append({ + "role": state.roles[0], + "content": {"path": image_file} + }) + if audio_file: + state.audio_query_file = audio_file + state.chatbot_history.append({ + "role": state.roles[0], + "content": {"path": audio_file} + }) + + state.chatbot_history.append({ + "role": state.roles[0], + "content": text + }) + + logger.info(f"add_text. ip: {request.client.host}. len: {len(text)}") + + return ( + state, + state.to_gradio_chatbot(), + gr.MultimodalTextbox(value=None) + ) + (disable_btn,) * 1 -def http_bot(state, request: gr.Request): +def http_bot(state, audio_response_toggler, request: gr.Request): global gateway_addr logger.info(f"http_bot. ip: {request.client.host}") url = gateway_addr - is_very_first_query = False - is_audio_query = state.audio_query_file is not None + if state.skip_next: # This generate call is skipped due to invalid inputs yield (state, state.to_gradio_chatbot(), None, None, None) + (no_change_btn,) * 1 return - - if len(state.messages) == state.offset + 2: - # First round of conversation - is_very_first_query = True - new_state = multimodalqna_conv.copy() - new_state.append_message(new_state.roles[0], state.messages[-2][1]) - new_state.append_message(new_state.roles[1], None) - new_state.audio_query_file = state.audio_query_file - new_state.image_query_files = state.image_query_files - state = new_state - + + is_very_first_query = all(True if h['role'] == 'user' else False for h in state.chatbot_history) + + + # Construct prompt - prompt = state.get_prompt() + prompt = state.get_prompt(is_very_first_query) + + modalities = ["text", "audio"] if audio_response_toggler else ["text"] # Make requests pload = { "messages": prompt, + "modalities": modalities } + + state.chatbot_history.append({ + "role": state.roles[1], + "content": "▌" + }) + + yield (state, state.to_gradio_chatbot(), state.split_video, state.image, state.pdf) + (disable_btn,) * 1 + if logflag: logger.info(f"==== request ====\n{pload}") logger.info(f"==== url request ====\n{gateway_addr}") - state.messages[-1][-1] = "▌" - - yield (state, state.to_gradio_chatbot(), state.split_video, state.image, state.pdf) + (disable_btn,) * 1 - + + try: response = requests.post( url, @@ -136,18 +158,21 @@ def http_bot(state, request: gr.Request): json=pload, timeout=ui_timeout, ) + logger.info(response.status_code) if logflag: logger.info(response.json()) - + if response.status_code == 200: response = response.json() choice = response["choices"][-1] metadata = choice["metadata"] message = choice["message"]["content"] + audio_response = choice["message"]["audio"]["data"] if audio_response_toggler else None if ( is_very_first_query and not state.video_file + and metadata and "source_video" in metadata and not state.time_of_frame_ms and "time_of_frame_ms" in metadata @@ -180,32 +205,37 @@ def http_bot(state, request: gr.Request): print(f"pdf {state.video_file} does not exist in UI host!") output_pdf_path = None state.pdf = output_pdf_path - else: raise requests.exceptions.RequestException + except requests.exceptions.RequestException as e: - state.messages[-1][-1] = server_error_msg + if logflag: + logger.info(f"Request Exception occured:\n{str(e)}") + + gr.Error("Request Exception occured! See logs for more info") + yield (state, state.to_gradio_chatbot(), None, None, None) + (enable_btn,) return - - state.messages[-1][-1] = message - - if is_audio_query: - state.messages[-2][-1] = metadata.get("audio", "--transcribed audio not available--") - state.audio_query_file = None - + + # print(f"chatbot_history: \n {state.chatbot_history}") + # print(f"message: {message}") + + if audio_response: + state.chatbot_history[-1]["content"] = {'path': convert_base64_to_audio(audio_response)} + else: + state.chatbot_history[-1]["content"] = message + yield ( state, state.to_gradio_chatbot(), gr.Video(state.split_video, visible=state.split_video is not None), gr.Image(state.image, visible=state.image is not None), - PDF(state.pdf, visible=state.pdf is not None, interactive=False, starting_page=int(state.time_of_frame_ms)), + PDF(state.pdf, visible=state.pdf is not None, interactive=False, starting_page=int(state.time_of_frame_ms) if state.time_of_frame_ms else 0), ) + (enable_btn,) * 1 - - logger.info(f"{state.messages[-1][-1]}") + + logger.info(f"{state.chatbot_history[-1]['content']}") return - def ingest_gen_transcript(filepath, filetype, request: gr.Request): yield ( gr.Textbox(visible=True, value=f"Please wait while your uploaded {filetype} is ingested into the database...") @@ -572,24 +602,19 @@ def select_upload_type(choice, request: gr.Request): image = gr.Image(height=512, width=512, elem_id="image", visible=False, label="Media") pdf = PDF(height=512, elem_id="pdf", interactive=False, visible=False, label="Media") with gr.Column(scale=9): - chatbot = gr.Chatbot(elem_id="chatbot", label="MultimodalQnA Chatbot", height=390) + chatbot = gr.Chatbot(elem_id="chatbot", label="MultimodalQnA Chatbot", height=390, type="messages") with gr.Row(): with gr.Column(scale=8): with gr.Tabs(): - with gr.TabItem("Text & Image Query"): - textbox = gr.MultimodalTextbox( - show_label=False, container=True, submit_btn=False, file_types=["image"] - ) - with gr.TabItem("Audio Query"): - audio = gr.Audio( - type="filepath", - sources=["microphone", "upload"], + with gr.TabItem("Text, Image & Audio Query"): + multimodal_textbox = gr.MultimodalTextbox( show_label=False, - container=False, + file_types=["image", "audio"], + sources=["microphone", "upload"], ) - with gr.Column(scale=1, min_width=100): + with gr.Column(scale=1, min_width=150): with gr.Row(): - submit_btn = gr.Button(value="Send", variant="primary", interactive=True) + audio_response_toggler = gr.Checkbox(label="Audio Responses", container=False) with gr.Row(elem_id="buttons") as button_row: clear_btn = gr.Button(value="🗑️ Clear", interactive=False) @@ -598,19 +623,21 @@ def select_upload_type(choice, request: gr.Request): [ state, ], - [state, chatbot, textbox, audio, video, image, pdf, clear_btn], + [state, chatbot, multimodal_textbox, video, image, pdf, clear_btn], ) - - submit_btn.click( + + multimodal_textbox.submit( add_text, - [state, textbox, audio], - [state, chatbot, textbox, audio, clear_btn], + [state, multimodal_textbox], + [state, chatbot, multimodal_textbox, clear_btn] ).then( http_bot, - [ - state, - ], - [state, chatbot, video, image, pdf, clear_btn], + [state, audio_response_toggler], + [state, chatbot, video, image, pdf, clear_btn] + ).then( + lambda: gr.MultimodalTextbox(interactive=True), + None, + [multimodal_textbox] ) with gr.Blocks() as vector_store: diff --git a/MultimodalQnA/ui/gradio/requirements.txt b/MultimodalQnA/ui/gradio/requirements.txt index 12081ed73d..34e92d2ff3 100644 --- a/MultimodalQnA/ui/gradio/requirements.txt +++ b/MultimodalQnA/ui/gradio/requirements.txt @@ -1,4 +1,4 @@ -gradio==5.11.0 +gradio==5.17.1 gradio_pdf==0.0.19 moviepy==1.0.3 numpy==1.26.4 diff --git a/MultimodalQnA/ui/gradio/utils.py b/MultimodalQnA/ui/gradio/utils.py index c22d102a5a..9e0f7ebd46 100644 --- a/MultimodalQnA/ui/gradio/utils.py +++ b/MultimodalQnA/ui/gradio/utils.py @@ -7,6 +7,7 @@ import os import shutil import sys +import tempfile from pathlib import Path import cv2 @@ -17,6 +18,9 @@ server_error_msg = "**NETWORK ERROR DUE TO HIGH TRAFFIC. PLEASE REGENERATE OR REFRESH THIS PAGE.**" moderation_msg = "YOUR INPUT VIOLATES OUR CONTENT MODERATION GUIDELINES. PLEASE TRY AGAIN." +GRADIO_IMAGE_FORMATS = [".tiff", ".jfif", ".bmp", ".pjp", ".apng", ".jpeg", ".png", ".webp", ".svgz", ".jpg", ".heic", ".gif", ".svg", ".heif", ".ico", ".xbm", ".dib", ".tif", ".pjpeg", ".avif",] +GRADIO_AUDIO_FORMATS = [".opus", ".flac", ".webm", ".weba", ".wav", ".ogg", ".m4a", ".oga", ".mid", ".mp3", ".aiff", ".wma", ".au",] + handler = None save_log = False @@ -186,3 +190,15 @@ def convert_audio_to_base64(audio_path): """Convert .wav file to base64 string.""" encoded_string = base64.b64encode(open(audio_path, "rb").read()) return encoded_string.decode("utf-8") + +def convert_base64_to_audio(b64_str): + """Decodes the base64 encoded audio data and returns a saved filepath.""" + + audio_data = base64.b64decode(b64_str) + + # Create a temporary file + with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as temp_audio: + temp_audio.write(audio_data) + temp_audio_path = temp_audio.name # Store the path + + return temp_audio_path \ No newline at end of file From 59fb70946082a86c254b3379a54709ad522c41d2 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 4 Mar 2025 16:47:22 -0800 Subject: [PATCH 23/47] Minr bug fixes and UI changes Signed-off-by: Harsha Ramayanam --- .../ui/gradio/multimodalqna_ui_gradio.py | 31 ++++++++++--------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index f768adcbf9..1120701fce 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -57,7 +57,7 @@ def clear_history(state, request: gr.Request): os.remove(state.pdf) state = multimodalqna_conv.copy() state.chatbot_history = [] - video = gr.Video(height=512, width=512, elem_id="video", visible=True, label="Media") + video = gr.Video(height=512, width=512, elem_id="video", visible=True, label="Media", value=None) image = gr.Image(height=512, width=512, elem_id="image", visible=False, label="Media") pdf = PDF(height=512, elem_id="pdf", interactive=False, visible=False, label="Media") return (state, state.to_gradio_chatbot(), None, video, image, pdf) + (disable_btn,) * 1 @@ -168,7 +168,11 @@ def http_bot(state, audio_response_toggler, request: gr.Request): choice = response["choices"][-1] metadata = choice["metadata"] message = choice["message"]["content"] - audio_response = choice["message"]["audio"]["data"] if audio_response_toggler else None + audio_response = None + if audio_response_toggler: + if choice["message"]["audio"]: + audio_response = choice["message"]["audio"]["data"] + if ( is_very_first_query and not state.video_file @@ -596,22 +600,21 @@ def select_upload_type(choice, request: gr.Request): with gr.Blocks() as qna: state = gr.State(multimodalqna_conv.copy()) - with gr.Row(): + with gr.Row(equal_height=True): with gr.Column(scale=2): - video = gr.Video(height=512, width=512, elem_id="video", visible=True, label="Media") - image = gr.Image(height=512, width=512, elem_id="image", visible=False, label="Media") - pdf = PDF(height=512, elem_id="pdf", interactive=False, visible=False, label="Media") + video = gr.Video(elem_id="video", visible=True, label="Media") + image = gr.Image(elem_id="image", visible=False, label="Media") + pdf = PDF(elem_id="pdf", interactive=False, visible=False, label="Media") with gr.Column(scale=9): chatbot = gr.Chatbot(elem_id="chatbot", label="MultimodalQnA Chatbot", height=390, type="messages") - with gr.Row(): + with gr.Row(equal_height=True): with gr.Column(scale=8): - with gr.Tabs(): - with gr.TabItem("Text, Image & Audio Query"): - multimodal_textbox = gr.MultimodalTextbox( - show_label=False, - file_types=["image", "audio"], - sources=["microphone", "upload"], - ) + multimodal_textbox = gr.MultimodalTextbox( + show_label=False, + file_types=["image", "audio"], + sources=["microphone", "upload"], + placeholder="Text, Image & Audio Query" + ) with gr.Column(scale=1, min_width=150): with gr.Row(): audio_response_toggler = gr.Checkbox(label="Audio Responses", container=False) From 4013a0d1a1fab895681dafecded1c7dbd7445823 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Wed, 5 Mar 2025 09:44:15 -0800 Subject: [PATCH 24/47] UI layout update & handling empty text with spaces Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 1120701fce..5d40e281b2 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -69,6 +69,8 @@ def add_text(state, multimodal_textbox, request: gr.Request): image_file, audio_file = None, None + text = text.strip() + if not text and not files: state.skip_next = True return (state, state.to_gradio_chatbot(), None) + (no_change_btn,) * 1 @@ -606,7 +608,7 @@ def select_upload_type(choice, request: gr.Request): image = gr.Image(elem_id="image", visible=False, label="Media") pdf = PDF(elem_id="pdf", interactive=False, visible=False, label="Media") with gr.Column(scale=9): - chatbot = gr.Chatbot(elem_id="chatbot", label="MultimodalQnA Chatbot", height=390, type="messages") + chatbot = gr.Chatbot(elem_id="chatbot", label="MultimodalQnA Chatbot", type="messages") with gr.Row(equal_height=True): with gr.Column(scale=8): multimodal_textbox = gr.MultimodalTextbox( From cd4c645d363859af3d457b143d816f7a261cff2b Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Wed, 5 Mar 2025 15:02:17 -0800 Subject: [PATCH 25/47] Updates on review comments Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/conversation.py | 2 -- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 11 +---------- MultimodalQnA/ui/gradio/utils.py | 2 +- 3 files changed, 2 insertions(+), 13 deletions(-) diff --git a/MultimodalQnA/ui/gradio/conversation.py b/MultimodalQnA/ui/gradio/conversation.py index d83926dde3..daa1602422 100644 --- a/MultimodalQnA/ui/gradio/conversation.py +++ b/MultimodalQnA/ui/gradio/conversation.py @@ -57,7 +57,6 @@ def get_prompt(self, is_very_first_query): if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) else: - # print(f'chatbot history: \n{self.chatbot_history}') for i, item in enumerate(self.chatbot_history): role = item['role'] content = item['content'] @@ -65,7 +64,6 @@ def get_prompt(self, is_very_first_query): if i == 0: conv_dict.append({'role': role, 'content': []}) - if role == 'user': if conv_dict[-1]['role'] != 'user': conv_dict.append({'role': role, 'content': []}) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 5d40e281b2..0f0bc9efad 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -74,7 +74,7 @@ def add_text(state, multimodal_textbox, request: gr.Request): if not text and not files: state.skip_next = True return (state, state.to_gradio_chatbot(), None) + (no_change_btn,) * 1 - + text = text[:2000] # Hard cut-off state.skip_next = False @@ -85,7 +85,6 @@ def add_text(state, multimodal_textbox, request: gr.Request): if Path(files[0]).suffix in GRADIO_AUDIO_FORMATS or len(files) > 1: audio_file = files[-1] # Guaranteed that last file would be recorded audio - # Add to chatbot history if image_file: state.image_query_file = image_file @@ -126,8 +125,6 @@ def http_bot(state, audio_response_toggler, request: gr.Request): is_very_first_query = all(True if h['role'] == 'user' else False for h in state.chatbot_history) - - # Construct prompt prompt = state.get_prompt(is_very_first_query) @@ -146,13 +143,10 @@ def http_bot(state, audio_response_toggler, request: gr.Request): yield (state, state.to_gradio_chatbot(), state.split_video, state.image, state.pdf) + (disable_btn,) * 1 - if logflag: logger.info(f"==== request ====\n{pload}") logger.info(f"==== url request ====\n{gateway_addr}") - - try: response = requests.post( url, @@ -223,9 +217,6 @@ def http_bot(state, audio_response_toggler, request: gr.Request): yield (state, state.to_gradio_chatbot(), None, None, None) + (enable_btn,) return - # print(f"chatbot_history: \n {state.chatbot_history}") - # print(f"message: {message}") - if audio_response: state.chatbot_history[-1]["content"] = {'path': convert_base64_to_audio(audio_response)} else: diff --git a/MultimodalQnA/ui/gradio/utils.py b/MultimodalQnA/ui/gradio/utils.py index 9e0f7ebd46..78ecb5b11a 100644 --- a/MultimodalQnA/ui/gradio/utils.py +++ b/MultimodalQnA/ui/gradio/utils.py @@ -201,4 +201,4 @@ def convert_base64_to_audio(b64_str): temp_audio.write(audio_data) temp_audio_path = temp_audio.name # Store the path - return temp_audio_path \ No newline at end of file + return temp_audio_path From a2cf4dd715508173dedad78ae1812aae7dd678c1 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Wed, 5 Mar 2025 15:05:35 -0800 Subject: [PATCH 26/47] Update on review comments Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 0f0bc9efad..1024e6b470 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -158,7 +158,7 @@ def http_bot(state, audio_response_toggler, request: gr.Request): logger.info(response.status_code) if logflag: logger.info(response.json()) - + if response.status_code == 200: response = response.json() choice = response["choices"][-1] From 58734e97a479fb9a6b01e5ca781e46218a913b82 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Thu, 6 Mar 2025 16:33:52 -0800 Subject: [PATCH 27/47] Update MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py Co-authored-by: Dina Suehiro Jones --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 1024e6b470..ceacb0a4c7 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -212,7 +212,7 @@ def http_bot(state, audio_response_toggler, request: gr.Request): if logflag: logger.info(f"Request Exception occured:\n{str(e)}") - gr.Error("Request Exception occured! See logs for more info") + gr.Error("Request exception occurred. See logs for details.") yield (state, state.to_gradio_chatbot(), None, None, None) + (enable_btn,) return From 1e092830e593c17a3b1df8c2cfe95d1d42bfdf01 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Thu, 6 Mar 2025 17:21:59 -0800 Subject: [PATCH 28/47] Some updates to review comments. More to come after testing Signed-off-by: Harsha Ramayanam --- MultimodalQnA/Dockerfile | 3 ++- MultimodalQnA/ui/gradio/conversation.py | 3 ++- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 13 ++++++++++--- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/MultimodalQnA/Dockerfile b/MultimodalQnA/Dockerfile index f0048692e6..fd45b14bc1 100644 --- a/MultimodalQnA/Dockerfile +++ b/MultimodalQnA/Dockerfile @@ -20,7 +20,8 @@ WORKDIR $HOME FROM base AS git RUN apt-get update && apt-get install -y --no-install-recommends git -RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git +# RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git +RUN git clone --single-branch --branch="mmqna-phase3" https://github.com/mhbuehler/GenAIComps.git # Stage 3: common layer shared by services using GenAIComps FROM base AS comps-base diff --git a/MultimodalQnA/ui/gradio/conversation.py b/MultimodalQnA/ui/gradio/conversation.py index daa1602422..4c7d632540 100644 --- a/MultimodalQnA/ui/gradio/conversation.py +++ b/MultimodalQnA/ui/gradio/conversation.py @@ -2,8 +2,9 @@ # SPDX-License-Identifier: Apache-2.0 import dataclasses -from pathlib import Path + from enum import Enum, auto +from pathlib import Path from typing import Dict, List, Any, Literal from utils import convert_audio_to_base64, get_b64_frame_from_timestamp, GRADIO_IMAGE_FORMATS, GRADIO_AUDIO_FORMATS diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index ceacb0a4c7..540f83bc39 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -14,7 +14,15 @@ from fastapi import FastAPI from fastapi.staticfiles import StaticFiles from gradio_pdf import PDF -from utils import build_logger, make_temp_image, server_error_msg, split_video, convert_base64_to_audio, GRADIO_IMAGE_FORMATS, GRADIO_AUDIO_FORMATS +from utils import ( + build_logger, + convert_base64_to_audio, + GRADIO_AUDIO_FORMATS, + GRADIO_IMAGE_FORMATS, + make_temp_image, + server_error_msg, + split_video +) logger = build_logger("gradio_web_server", "gradio_web_server.log") logflag = os.getenv("LOGFLAG", False) @@ -154,11 +162,10 @@ def http_bot(state, audio_response_toggler, request: gr.Request): json=pload, timeout=ui_timeout, ) - logger.info(response.status_code) if logflag: logger.info(response.json()) - + if response.status_code == 200: response = response.json() choice = response["choices"][-1] From 2c4ead5f7cc665c62060c7a8e5d047fd42f8a2e2 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Fri, 7 Mar 2025 10:52:41 -0800 Subject: [PATCH 29/47] Restrict file media types to known/working formats Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 2 +- MultimodalQnA/ui/gradio/utils.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 540f83bc39..9e6f941e78 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -611,7 +611,7 @@ def select_upload_type(choice, request: gr.Request): with gr.Column(scale=8): multimodal_textbox = gr.MultimodalTextbox( show_label=False, - file_types=["image", "audio"], + file_types=GRADIO_IMAGE_FORMATS + GRADIO_AUDIO_FORMATS, sources=["microphone", "upload"], placeholder="Text, Image & Audio Query" ) diff --git a/MultimodalQnA/ui/gradio/utils.py b/MultimodalQnA/ui/gradio/utils.py index 78ecb5b11a..0c8dd1ece7 100644 --- a/MultimodalQnA/ui/gradio/utils.py +++ b/MultimodalQnA/ui/gradio/utils.py @@ -18,8 +18,8 @@ server_error_msg = "**NETWORK ERROR DUE TO HIGH TRAFFIC. PLEASE REGENERATE OR REFRESH THIS PAGE.**" moderation_msg = "YOUR INPUT VIOLATES OUR CONTENT MODERATION GUIDELINES. PLEASE TRY AGAIN." -GRADIO_IMAGE_FORMATS = [".tiff", ".jfif", ".bmp", ".pjp", ".apng", ".jpeg", ".png", ".webp", ".svgz", ".jpg", ".heic", ".gif", ".svg", ".heif", ".ico", ".xbm", ".dib", ".tif", ".pjpeg", ".avif",] -GRADIO_AUDIO_FORMATS = [".opus", ".flac", ".webm", ".weba", ".wav", ".ogg", ".m4a", ".oga", ".mid", ".mp3", ".aiff", ".wma", ".au",] +GRADIO_IMAGE_FORMATS = [".jpeg", ".png", ".jpg", ".gif"] +GRADIO_AUDIO_FORMATS = [".wav", ".mp3",] handler = None save_log = False From 1ce67e25ddbd3675f5210382269d8833de8b4d3e Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Fri, 7 Mar 2025 11:00:48 -0800 Subject: [PATCH 30/47] Remove extra whitespace Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 9e6f941e78..f522a3589d 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -236,7 +236,7 @@ def http_bot(state, audio_response_toggler, request: gr.Request): gr.Image(state.image, visible=state.image is not None), PDF(state.pdf, visible=state.pdf is not None, interactive=False, starting_page=int(state.time_of_frame_ms) if state.time_of_frame_ms else 0), ) + (enable_btn,) * 1 - + logger.info(f"{state.chatbot_history[-1]['content']}") return @@ -628,7 +628,7 @@ def select_upload_type(choice, request: gr.Request): ], [state, chatbot, multimodal_textbox, video, image, pdf, clear_btn], ) - + multimodal_textbox.submit( add_text, [state, multimodal_textbox], From e9f0cd0a441871f82bada3afd89e86b464594bf0 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Fri, 7 Mar 2025 11:25:52 -0800 Subject: [PATCH 31/47] Fix test_compose_on_gaudi.sh script's diff not syncing with phase3 Signed-off-by: Harsha Ramayanam --- MultimodalQnA/tests/test_compose_on_gaudi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 2d1f89f376..8d3b3da6b8 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -352,7 +352,7 @@ function validate_megaservice() { '"content":"' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' + '{"messages": [{"role": "user", "content": [{"type": "audio", "audio": "UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": [{"type": "text", "text": "goodbye"}]}]}' echo "Validating megaservice with multiple text queries" validate_service \ From 5ad1c188791d234efb230febb462463d8450515a Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Mon, 10 Mar 2025 16:53:16 -0700 Subject: [PATCH 32/47] Changes per review comments Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/conversation.py | 60 +++++++------------ .../ui/gradio/multimodalqna_ui_gradio.py | 6 +- 2 files changed, 26 insertions(+), 40 deletions(-) diff --git a/MultimodalQnA/ui/gradio/conversation.py b/MultimodalQnA/ui/gradio/conversation.py index 4c7d632540..3aae4bc4ef 100644 --- a/MultimodalQnA/ui/gradio/conversation.py +++ b/MultimodalQnA/ui/gradio/conversation.py @@ -43,44 +43,30 @@ def _template_caption(self): return out def get_prompt(self, is_very_first_query): - conv_dict = [] + conv_dict = [{'role': 'user', 'content': []}] - if is_very_first_query: - conv_dict.append({'role': 'user', 'content': []}) - for item in self.chatbot_history: - content = item['content'] - - if isinstance(content, str): - conv_dict[-1]['content'].append({'type': 'text', 'text': content}) - elif isinstance(content, dict) and 'path' in content: - if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: - conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(content['path'], 0)}}) - if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: - conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) - else: - for i, item in enumerate(self.chatbot_history): - role = item['role'] - content = item['content'] - - if i == 0: - conv_dict.append({'role': role, 'content': []}) - - if role == 'user': - if conv_dict[-1]['role'] != 'user': - conv_dict.append({'role': role, 'content': []}) - - if isinstance(content, str): - conv_dict[-1]['content'].append({'type': 'text', 'text': content}) - elif isinstance(content, dict) and 'path' in content: - if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: - conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(content['path'], 0)}}) - if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: - conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) - elif role == 'assistant': - if conv_dict[-1]['role'] != 'assistant': - conv_dict.append({'role': role, 'content': []}) - if isinstance(content, str): - conv_dict[-1]['content'] = content + for record in self.chatbot_history: + role = record['role'] + content = record['content'] + + if role == 'user': + # Check if last entry of conv_dict has role user + if conv_dict[-1]['role'] != 'user': + conv_dict.append({'role': 'user', 'content': []}) + elif role == 'assistant': + # Check if last entry of conv_dict has role assistant + if conv_dict[-1]['role'] != 'assistant': + conv_dict.append({'role': 'assistant', 'content': []}) + + # Add content to the last conv_dict record + if isinstance(content, str): + conv_dict[-1]['content'].append({'type': 'text', 'text': content + self._template_caption()}) + + if isinstance(content, dict) and 'path' in content: + if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: + conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(content['path'], 0)}}) + if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: + conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) return conv_dict diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index f522a3589d..af7d4b5c54 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -65,9 +65,9 @@ def clear_history(state, request: gr.Request): os.remove(state.pdf) state = multimodalqna_conv.copy() state.chatbot_history = [] - video = gr.Video(height=512, width=512, elem_id="video", visible=True, label="Media", value=None) - image = gr.Image(height=512, width=512, elem_id="image", visible=False, label="Media") - pdf = PDF(height=512, elem_id="pdf", interactive=False, visible=False, label="Media") + video = gr.Video(value=None, elem_id="video", visible=True, label="Media") + image = gr.Image(value=None, elem_id="image", visible=False, label="Media") + pdf = PDF(value=None, elem_id="pdf", interactive=False, visible=False, label="Media") return (state, state.to_gradio_chatbot(), None, video, image, pdf) + (disable_btn,) * 1 From 3a34ec2247b371d8e055127634efcd44afbba2bf Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Thu, 13 Mar 2025 10:06:00 -0700 Subject: [PATCH 33/47] Added single space to the pload Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/conversation.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MultimodalQnA/ui/gradio/conversation.py b/MultimodalQnA/ui/gradio/conversation.py index 3aae4bc4ef..495b277018 100644 --- a/MultimodalQnA/ui/gradio/conversation.py +++ b/MultimodalQnA/ui/gradio/conversation.py @@ -58,9 +58,10 @@ def get_prompt(self, is_very_first_query): if conv_dict[-1]['role'] != 'assistant': conv_dict.append({'role': 'assistant', 'content': []}) - # Add content to the last conv_dict record + # Add content to the last conv_dict record. The single space has only effect on first image-only + # query for the similarity search results to get expected response. if isinstance(content, str): - conv_dict[-1]['content'].append({'type': 'text', 'text': content + self._template_caption()}) + conv_dict[-1]['content'].append({'type': 'text', 'text': content + self._template_caption() + " "}) if isinstance(content, dict) and 'path' in content: if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: From 5b474071b2dfb563f3800267032fd153ac9cc6a5 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Thu, 13 Mar 2025 12:01:55 -0700 Subject: [PATCH 34/47] Added logic to flush chatbot assistant's voice reponse .wav Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index af7d4b5c54..66a3e36f25 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -2,6 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 import argparse +import glob import os import shutil import time @@ -65,6 +66,8 @@ def clear_history(state, request: gr.Request): os.remove(state.pdf) state = multimodalqna_conv.copy() state.chatbot_history = [] + for file in glob.glob("/tmp/*.wav"): + os.remove(file) # This removes all chatbot assistant's voice response files video = gr.Video(value=None, elem_id="video", visible=True, label="Media") image = gr.Image(value=None, elem_id="image", visible=False, label="Media") pdf = PDF(value=None, elem_id="pdf", interactive=False, visible=False, label="Media") From 943fa9ecdcba9a94ecdb7229fae9322328b7e661 Mon Sep 17 00:00:00 2001 From: Melanie Hart Buehler Date: Fri, 14 Mar 2025 16:52:47 -0700 Subject: [PATCH 35/47] Enable audio caption upload in the UI (#61) * Enable audio caption upload in the UI Signed-off-by: Melanie Buehler * Improve handling of unsupported audio formats Signed-off-by: Melanie Buehler * Improve label and exception Signed-off-by: Melanie Buehler * Replace exception with error message so audio component still works Signed-off-by: Melanie Buehler --------- Signed-off-by: Melanie Buehler --- .../ui/gradio/multimodalqna_ui_gradio.py | 104 ++++++++++++++---- 1 file changed, 83 insertions(+), 21 deletions(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index b32faa71f4..84f4092ea3 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -16,6 +16,9 @@ from gradio_pdf import PDF from utils import build_logger, make_temp_image, server_error_msg, split_video +IMAGE_FORMATS = ['.png', '.gif', '.jpg', '.jpeg'] +AUDIO_FORMATS = ['.wav', '.mp3'] + logger = build_logger("gradio_web_server", "gradio_web_server.log") logflag = os.getenv("LOGFLAG", False) @@ -166,7 +169,7 @@ def http_bot(state, request: gr.Request): print(f"video {state.video_file} does not exist in UI host!") splited_video_path = None state.split_video = splited_video_path - elif file_ext in [".jpg", ".jpeg", ".png", ".gif"]: + elif file_ext in IMAGE_FORMATS: try: output_image_path = make_temp_image(state.video_file, file_ext) except: @@ -316,8 +319,10 @@ def ingest_gen_caption(filepath, filetype, request: gr.Request): return -def ingest_with_text(filepath, text, request: gr.Request): +def ingest_with_caption(filepath, text_caption, audio_caption, request: gr.Request): yield (gr.Textbox(visible=True, value="Please wait for your uploaded image to be ingested into the database...")) + + # Process the image verified_filepath = os.path.normpath(filepath) if not verified_filepath.startswith(tmp_upload_folder): print("Found malicious image file name!") @@ -331,19 +336,29 @@ def ingest_with_text(filepath, text, request: gr.Request): basename = os.path.basename(verified_filepath) dest = os.path.join(static_dir, basename) shutil.copy(verified_filepath, dest) - text_basename = "{}.txt".format(os.path.splitext(basename)[0]) - text_dest = os.path.join(static_dir, text_basename) - with open(text_dest, "w") as file: - file.write(text) + + # Process the caption (can be text or audio) + is_audio_caption = audio_caption is not None + if is_audio_caption: + verified_audio_path = os.path.normpath(audio_caption) + caption_basename = "{}{}".format(os.path.splitext(basename)[0], os.path.splitext(verified_audio_path)[-1]) + caption_file = audio_caption + else: + caption_basename = "{}.txt".format(os.path.splitext(basename)[0]) + caption_file = os.path.join(static_dir, caption_basename) + with open(caption_file, "w") as file: + file.write(text_caption) + print("Done copying uploaded files to static folder!") headers = { # 'Content-Type': 'multipart/form-data' } - files = [("files", (basename, open(dest, "rb"))), ("files", (text_basename, open(text_dest, "rb")))] + files = [("files", (basename, open(dest, "rb"))), ("files", (caption_basename, open(caption_file, "rb")))] try: response = requests.post(dataprep_ingest_addr, headers=headers, files=files) finally: - os.remove(text_dest) + if not is_audio_caption: + os.remove(caption_file) logger.info(response.status_code) if response.status_code == 200: response = response.json() @@ -429,8 +444,8 @@ def hide_text(request: gr.Request): return gr.Textbox(visible=False) -def clear_text(request: gr.Request): - return None +def clear_captions(request: gr.Request): + return None, None def get_files(): @@ -507,13 +522,48 @@ def select_upload_type(choice, request: gr.Request): with gr.Blocks() as upload_image: gr.Markdown("# Ingest Images Using Generated or Custom Captions") - gr.Markdown("Use this interface to ingest an image and generate a caption for it") + gr.Markdown("Use this interface to ingest an image and generate a caption for it. If uploading a caption, populate it before the image.") + text_caption_label = "Text Caption" + audio_caption_label = "Voice Audio Caption ({}, or microphone)".format(", ".join(AUDIO_FORMATS)) def select_upload_type(choice, request: gr.Request): if choice == "gen_caption": - return gr.Image(sources="upload", visible=True), gr.Image(sources="upload", visible=False) + return ( + gr.Image(sources="upload", visible=True), + gr.Image(sources="upload", visible=False), + gr.Textbox(visible=False, interactive=True, label=text_caption_label), + gr.Audio(visible=False, type="filepath", label=audio_caption_label) + ) + elif choice == "custom_caption": + return ( + gr.Image(sources="upload", visible=False), + gr.Image(sources="upload", visible=True), + gr.Textbox(visible=True, interactive=True, label=text_caption_label), + gr.Audio(visible=False, type="filepath", label=audio_caption_label) + ) else: - return gr.Image(sources="upload", visible=False), gr.Image(sources="upload", visible=True) + return ( + gr.Image(sources="upload", visible=False), + gr.Image(sources="upload", visible=True), + gr.Textbox(visible=False, interactive=True, label=text_caption_label), + gr.Audio(visible=True, type="filepath", label=audio_caption_label) + ) + + def verify_audio_caption_type(file, request: gr.Request): + audio_type = os.path.splitext(file)[-1] + if audio_type not in AUDIO_FORMATS: + return ( + None, + gr.Textbox( + visible=True, + value="The audio file format must be {}".format(" or ".join(AUDIO_FORMATS)) + ) + ) + else: + return ( + gr.Audio(value=file, visible=True, type="filepath", label=audio_caption_label), + gr.Textbox(visible=False, value=None) + ) with gr.Row(): with gr.Column(scale=6): @@ -521,22 +571,34 @@ def select_upload_type(choice, request: gr.Request): image_upload_text = gr.Image(type="filepath", sources="upload", elem_id="image_upload_cap", visible=False) with gr.Column(scale=3): text_options_radio = gr.Radio( - [("Generate caption", "gen_caption"), ("Custom caption or label", "custom_caption")], - label="Text Options", - info="How should text be ingested?", + [ + ("Auto-generate a caption", "gen_caption"), + ("Upload a text caption (populate before image)", "custom_caption"), + ("Upload an audio caption (populate before image)", "custom_audio_caption") + ], + label="Caption Options", + info="How should captions be ingested?", value="gen_caption", ) - custom_caption = gr.Textbox(visible=True, interactive=True, label="Custom Caption or Label") + custom_caption = gr.Textbox(visible=False, interactive=True, label=text_caption_label) + custom_caption_audio = gr.Audio(visible=False, type="filepath", label=audio_caption_label) text_upload_result = gr.Textbox(visible=False, interactive=False, label="Upload Status") + custom_caption_audio.input(verify_audio_caption_type, [custom_caption_audio], [custom_caption_audio, text_upload_result]) image_upload_cap.upload( ingest_gen_caption, [image_upload_cap, gr.Textbox(value="image", visible=False)], [text_upload_result] ) image_upload_cap.clear(hide_text, [], [text_upload_result]) - image_upload_text.upload(ingest_with_text, [image_upload_text, custom_caption], [text_upload_result]).then( - clear_text, [], [custom_caption] - ) + image_upload_text.upload( + ingest_with_caption, + [image_upload_text, custom_caption, custom_caption_audio], + [text_upload_result] + ).then(clear_captions, [], [custom_caption, custom_caption_audio]) image_upload_text.clear(hide_text, [], [text_upload_result]) - text_options_radio.change(select_upload_type, [text_options_radio], [image_upload_cap, image_upload_text]) + text_options_radio.change( + select_upload_type, + [text_options_radio], + [image_upload_cap, image_upload_text, custom_caption, custom_caption_audio] + ) with gr.Blocks() as upload_audio: gr.Markdown("# Ingest Audio Using Generated Transcripts") From 401570fe3fee760136b2227528bf1e64ceabaeb7 Mon Sep 17 00:00:00 2001 From: Dina Suehiro Jones Date: Mon, 17 Mar 2025 14:56:55 -0700 Subject: [PATCH 36/47] Fix spoken audio responses on Gaudi and add tests (#63) Signed-off-by: dmsuehir --- MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml | 2 ++ MultimodalQnA/tests/test_compose_on_gaudi.sh | 8 ++++++++ MultimodalQnA/tests/test_compose_on_xeon.sh | 8 ++++++++ 3 files changed, 18 insertions(+) diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml index b31c3b59cb..d3509e7683 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml @@ -195,6 +195,8 @@ services: LVM_MODEL_ID: ${LVM_MODEL_ID} WHISPER_PORT: ${WHISPER_PORT} WHISPER_SERVER_ENDPOINT: ${WHISPER_SERVER_ENDPOINT} + TTS_PORT: ${TTS_PORT} + TTS_ENDPOINT: ${TTS_ENDPOINT} ipc: host restart: always multimodalqna-ui: diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 8d3b3da6b8..08366f10db 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -330,6 +330,14 @@ function validate_megaservice() { "multimodalqna-backend-server" \ '{"messages": "Find an apple. What color is it?"}' + echo "Validating megaservice with audio response" + validate_service \ + "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ + '"audio":{"data"' \ + "multimodalqna" \ + "multimodalqna-backend-server" \ + '{"messages": "Find an apple. What color is it?", "modalities": ["text", "audio"]}' + echo "Validating megaservice with first audio query" validate_service \ "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index ce37fd056e..d02a016303 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -328,6 +328,14 @@ function validate_megaservice() { "multimodalqna-backend-server" \ '{"messages": "Find an apple. What color is it?"}' + echo "Validating megaservice with audio response" + validate_service \ + "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ + '"audio":{"data"' \ + "multimodalqna" \ + "multimodalqna-backend-server" \ + '{"messages": "Find an apple. What color is it?", "modalities": ["text", "audio"]}' + echo "Validating megaservice with first audio query" validate_service \ "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ From 4aa013cf9314b0cd70a5ba904105ae7478c88417 Mon Sep 17 00:00:00 2001 From: Melanie Hart Buehler Date: Mon, 17 Mar 2025 16:42:39 -0700 Subject: [PATCH 37/47] Clearing PDF clears textbox and version upgrade fixes interactive=False (#64) Signed-off-by: Melanie Buehler --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 8 ++++++++ MultimodalQnA/ui/gradio/requirements.txt | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 84f4092ea3..cb992dd990 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -444,6 +444,13 @@ def hide_text(request: gr.Request): return gr.Textbox(visible=False) +def hide_text_pdf(pdf, text, request: gr.Request): + if pdf is not None: + return text + else: + return gr.Textbox(visible=False) + + def clear_captions(request: gr.Request): return None, None @@ -624,6 +631,7 @@ def verify_audio_caption_type(file, request: gr.Request): pdf_upload = PDF(label="PDF File") with gr.Column(scale=3): pdf_upload_result = gr.Textbox(visible=False, interactive=False, label="Upload Status") + pdf_upload.change(hide_text_pdf, [pdf_upload, pdf_upload_result], [pdf_upload_result]) pdf_upload.upload(ingest_pdf, [pdf_upload], [pdf_upload_result]) with gr.Blocks() as qna: diff --git a/MultimodalQnA/ui/gradio/requirements.txt b/MultimodalQnA/ui/gradio/requirements.txt index 12081ed73d..7c9814d696 100644 --- a/MultimodalQnA/ui/gradio/requirements.txt +++ b/MultimodalQnA/ui/gradio/requirements.txt @@ -1,5 +1,5 @@ gradio==5.11.0 -gradio_pdf==0.0.19 +gradio_pdf==0.0.20 moviepy==1.0.3 numpy==1.26.4 opencv-python==4.10.0.82 From d2a2bc4e5d98c52591e4e627b38af4be4d9fe148 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 18 Mar 2025 10:40:31 -0700 Subject: [PATCH 38/47] Fixed issue where assistant's image is not sent Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/conversation.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/MultimodalQnA/ui/gradio/conversation.py b/MultimodalQnA/ui/gradio/conversation.py index 495b277018..36e0754953 100644 --- a/MultimodalQnA/ui/gradio/conversation.py +++ b/MultimodalQnA/ui/gradio/conversation.py @@ -44,6 +44,8 @@ def _template_caption(self): def get_prompt(self, is_very_first_query): conv_dict = [{'role': 'user', 'content': []}] + caption_flag = True + is_image_query = False for record in self.chatbot_history: role = record['role'] @@ -54,6 +56,7 @@ def get_prompt(self, is_very_first_query): if conv_dict[-1]['role'] != 'user': conv_dict.append({'role': 'user', 'content': []}) elif role == 'assistant': + caption_flag = False # Check if last entry of conv_dict has role assistant if conv_dict[-1]['role'] != 'assistant': conv_dict.append({'role': 'assistant', 'content': []}) @@ -61,13 +64,20 @@ def get_prompt(self, is_very_first_query): # Add content to the last conv_dict record. The single space has only effect on first image-only # query for the similarity search results to get expected response. if isinstance(content, str): - conv_dict[-1]['content'].append({'type': 'text', 'text': content + self._template_caption() + " "}) + if caption_flag: + content += " " + self._template_caption() + conv_dict[-1]['content'].append({'type': 'text', 'text': content}) if isinstance(content, dict) and 'path' in content: if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: + is_image_query = True conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(content['path'], 0)}}) if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) + + # include the image from the assistant's response given the user's is not a image query + if not is_image_query and caption_flag and self.image: + conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(self.image, 0)}}) return conv_dict From 4ed21171d85fff789aae21c126beb5959a6dfe4e Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 18 Mar 2025 11:51:32 -0700 Subject: [PATCH 39/47] Revert build yaml Signed-off-by: Harsha Ramayanam --- MultimodalQnA/docker_image_build/build.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/MultimodalQnA/docker_image_build/build.yaml b/MultimodalQnA/docker_image_build/build.yaml index 0885b2d911..532b80f45d 100644 --- a/MultimodalQnA/docker_image_build/build.yaml +++ b/MultimodalQnA/docker_image_build/build.yaml @@ -65,12 +65,6 @@ services: dockerfile: comps/asr/src/integrations/dependency/whisper/Dockerfile extends: multimodalqna image: ${REGISTRY:-opea}/whisper:${TAG:-latest} - speecht5-gaudi: - build: - context: GenAIComps - dockerfile: comps/tts/src/integrations/dependency/speecht5/Dockerfile.intel_hpu - extends: multimodalqna - image: ${REGISTRY:-opea}/speecht5-gaudi:${TAG:-latest} speecht5: build: context: GenAIComps @@ -82,4 +76,4 @@ services: context: GenAIComps dockerfile: comps/tts/src/Dockerfile extends: multimodalqna - image: ${REGISTRY:-opea}/tts:${TAG:-latest} + image: ${REGISTRY:-opea}/tts:${TAG:-latest} \ No newline at end of file From b4ba36cd09141425e1f2d093c94e6ded026b716e Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 18 Mar 2025 11:52:45 -0700 Subject: [PATCH 40/47] Clear diff Signed-off-by: Harsha Ramayanam --- MultimodalQnA/docker_image_build/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultimodalQnA/docker_image_build/build.yaml b/MultimodalQnA/docker_image_build/build.yaml index 532b80f45d..cb7d0ebf93 100644 --- a/MultimodalQnA/docker_image_build/build.yaml +++ b/MultimodalQnA/docker_image_build/build.yaml @@ -76,4 +76,4 @@ services: context: GenAIComps dockerfile: comps/tts/src/Dockerfile extends: multimodalqna - image: ${REGISTRY:-opea}/tts:${TAG:-latest} \ No newline at end of file + image: ${REGISTRY:-opea}/tts:${TAG:-latest} From 8d5690e5cb194fdd58627f61a4118f799b0e161c Mon Sep 17 00:00:00 2001 From: Dina Suehiro Jones Date: Tue, 18 Mar 2025 14:16:18 -0700 Subject: [PATCH 41/47] Add missing env vars for MMQnA UI data prep endpoints (#62) * Add missing env vars for MMQnA UI data prep endpoints Signed-off-by: dmsuehir * Remove dockerfile branch Signed-off-by: dmsuehir --------- Signed-off-by: dmsuehir --- MultimodalQnA/docker_compose/amd/gpu/rocm/compose.yaml | 2 ++ MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/MultimodalQnA/docker_compose/amd/gpu/rocm/compose.yaml b/MultimodalQnA/docker_compose/amd/gpu/rocm/compose.yaml index af4855bb59..e743d111e7 100644 --- a/MultimodalQnA/docker_compose/amd/gpu/rocm/compose.yaml +++ b/MultimodalQnA/docker_compose/amd/gpu/rocm/compose.yaml @@ -175,6 +175,8 @@ services: - DATAPREP_INGEST_SERVICE_ENDPOINT=${DATAPREP_INGEST_SERVICE_ENDPOINT} - DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT=${DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT} - DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT=${DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT} + - DATAPREP_GET_FILE_ENDPOINT=${DATAPREP_GET_FILE_ENDPOINT} + - DATAPREP_DELETE_FILE_ENDPOINT=${DATAPREP_DELETE_FILE_ENDPOINT} ipc: host restart: always diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml index d3509e7683..822d3e2896 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml @@ -214,6 +214,8 @@ services: - DATAPREP_INGEST_SERVICE_ENDPOINT=${DATAPREP_INGEST_SERVICE_ENDPOINT} - DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT=${DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT} - DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT=${DATAPREP_GEN_CAPTION_SERVICE_ENDPOINT} + - DATAPREP_GET_FILE_ENDPOINT=${DATAPREP_GET_FILE_ENDPOINT} + - DATAPREP_DELETE_FILE_ENDPOINT=${DATAPREP_DELETE_FILE_ENDPOINT} - MEGA_SERVICE_PORT:=${MEGA_SERVICE_PORT} - UI_PORT=${UI_PORT} - UI_TIMEOUT=${UI_TIMEOUT} From 36ee073b609602d0b7befc637f0df0ba6fd2d325 Mon Sep 17 00:00:00 2001 From: Melanie Hart Buehler Date: Tue, 18 Mar 2025 14:20:21 -0700 Subject: [PATCH 42/47] Fix first query test (#65) Signed-off-by: Melanie Buehler --- MultimodalQnA/tests/test_compose_on_xeon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index d02a016303..63dbdf6e00 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -350,7 +350,7 @@ function validate_megaservice() { '"time_of_frame_ms":' \ "multimodalqna" \ "multimodalqna-backend-server" \ - '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}, {"role": "assistant", "content": "opea project! "}, {"role": "user", "content": "chao, "}], "max_tokens": 10, "modalities": ["text", "audio"]}' + '{"messages": [{"role": "user", "content": [{"type": "text", "text": "hello, "}, {"type": "image_url", "image_url": {"url": "https://www.ilankelman.org/stopsigns/australia.jpg"}}]}], "max_tokens": 10, "modalities": ["text", "audio"]}' echo "Validating megaservice with follow-up query" validate_service \ "http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \ From bc43cc184652b23d906ff8369d4ee4ba24d62270 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 18 Mar 2025 14:57:35 -0700 Subject: [PATCH 43/47] changes per review Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MultimodalQnA/ui/gradio/utils.py b/MultimodalQnA/ui/gradio/utils.py index 0c8dd1ece7..6e4e5ba764 100644 --- a/MultimodalQnA/ui/gradio/utils.py +++ b/MultimodalQnA/ui/gradio/utils.py @@ -14,6 +14,7 @@ from moviepy.video.io.VideoFileClip import VideoFileClip LOGDIR = "." +TMP_DIR = "/tmp" server_error_msg = "**NETWORK ERROR DUE TO HIGH TRAFFIC. PLEASE REGENERATE OR REFRESH THIS PAGE.**" moderation_msg = "YOUR INPUT VIOLATES OUR CONTENT MODERATION GUIDELINES. PLEASE TRY AGAIN." @@ -197,7 +198,7 @@ def convert_base64_to_audio(b64_str): audio_data = base64.b64decode(b64_str) # Create a temporary file - with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as temp_audio: + with tempfile.NamedTemporaryFile(dir=TMP_DIR, delete=False, suffix=".wav") as temp_audio: temp_audio.write(audio_data) temp_audio_path = temp_audio.name # Store the path From 9aad1747c04bcb7cfc5cbc88d5672d8af6a417ce Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 18 Mar 2025 15:41:20 -0700 Subject: [PATCH 44/47] small change Signed-off-by: Harsha Ramayanam --- MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 066967d8d0..1b5b00b5ca 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -22,7 +22,8 @@ GRADIO_IMAGE_FORMATS, make_temp_image, server_error_msg, - split_video + split_video, + TMP_DIR ) IMAGE_FORMATS = ['.png', '.gif', '.jpg', '.jpeg'] @@ -69,7 +70,7 @@ def clear_history(state, request: gr.Request): os.remove(state.pdf) state = multimodalqna_conv.copy() state.chatbot_history = [] - for file in glob.glob("/tmp/*.wav"): + for file in glob.glob(os.path.join(TMP_DIR, "*.wav")): os.remove(file) # This removes all chatbot assistant's voice response files video = gr.Video(value=None, elem_id="video", visible=True, label="Media") image = gr.Image(value=None, elem_id="image", visible=False, label="Media") From abf02003be0614933f8f04204b81dde1bf25c8b2 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 18 Mar 2025 15:54:47 -0700 Subject: [PATCH 45/47] Update Dockerfile Revert Dockerfile --- MultimodalQnA/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MultimodalQnA/Dockerfile b/MultimodalQnA/Dockerfile index fd45b14bc1..f0048692e6 100644 --- a/MultimodalQnA/Dockerfile +++ b/MultimodalQnA/Dockerfile @@ -20,8 +20,7 @@ WORKDIR $HOME FROM base AS git RUN apt-get update && apt-get install -y --no-install-recommends git -# RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git -RUN git clone --single-branch --branch="mmqna-phase3" https://github.com/mhbuehler/GenAIComps.git +RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git # Stage 3: common layer shared by services using GenAIComps FROM base AS comps-base From 700511918b2fe6b9d27374c8fdd4724215117b31 Mon Sep 17 00:00:00 2001 From: Harsha Ramayanam Date: Tue, 18 Mar 2025 16:31:53 -0700 Subject: [PATCH 46/47] Update Dockerfile --- MultimodalQnA/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MultimodalQnA/Dockerfile b/MultimodalQnA/Dockerfile index f0048692e6..fd45b14bc1 100644 --- a/MultimodalQnA/Dockerfile +++ b/MultimodalQnA/Dockerfile @@ -20,7 +20,8 @@ WORKDIR $HOME FROM base AS git RUN apt-get update && apt-get install -y --no-install-recommends git -RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git +# RUN git clone --depth 1 https://github.com/opea-project/GenAIComps.git +RUN git clone --single-branch --branch="mmqna-phase3" https://github.com/mhbuehler/GenAIComps.git # Stage 3: common layer shared by services using GenAIComps FROM base AS comps-base From a5e201fedb714827a6d6599a7a65c9a01c080256 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 19 Mar 2025 18:09:06 +0000 Subject: [PATCH 47/47] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- MultimodalQnA/README.md | 30 ++-- .../docker_compose/intel/cpu/xeon/README.md | 1 + .../docker_compose/intel/hpu/gaudi/README.md | 1 - MultimodalQnA/multimodalqna.py | 4 +- MultimodalQnA/tests/test_compose_on_gaudi.sh | 4 +- MultimodalQnA/tests/test_compose_on_xeon.sh | 6 +- MultimodalQnA/ui/gradio/conversation.py | 59 +++---- .../ui/gradio/multimodalqna_ui_gradio.py | 151 ++++++++---------- MultimodalQnA/ui/gradio/utils.py | 8 +- 9 files changed, 124 insertions(+), 140 deletions(-) diff --git a/MultimodalQnA/README.md b/MultimodalQnA/README.md index af90a0ecea..125d9fba07 100644 --- a/MultimodalQnA/README.md +++ b/MultimodalQnA/README.md @@ -98,20 +98,20 @@ In the below, we provide a table that describes for each microservice component
Gaudi and Xeon default compose.yaml settings -| MicroService | Open Source Project | HW | Port | Endpoint | -| ------------ | --------------------- | ----- | ---- | ----------------------------------------------------------- | -| Dataprep | Redis, Langchain, TGI | Xeon | 6007 | /v1/generate_transcripts, /v1/generate_captions, /v1/ingest | -| Embedding | Langchain | Xeon | 6000 | /v1/embeddings | -| LVM | Langchain, Transformers | Xeon | 9399 | /v1/lvm | -| Retriever | Langchain, Redis | Xeon | 7000 | /v1/retrieval | -| SpeechT5 | Transformers | Xeon | 7055 | /v1/tts | -| Whisper | Transformers | Xeon | 7066 | /v1/asr | -| Dataprep | Redis, Langchain, TGI | Gaudi | 6007 | /v1/generate_transcripts, /v1/generate_captions, /v1/ingest | -| Embedding | Langchain | Gaudi | 6000 | /v1/embeddings | -| LVM | Langchain, TGI | Gaudi | 9399 | /v1/lvm | -| Retriever | Langchain, Redis | Gaudi | 7000 | /v1/retrieval | -| SpeechT5 | Transformers | Gaudi | 7055 | /v1/tts | -| Whisper | Transformers | Gaudi | 7066 | /v1/asr | +| MicroService | Open Source Project | HW | Port | Endpoint | +| ------------ | ----------------------- | ----- | ---- | ----------------------------------------------------------- | +| Dataprep | Redis, Langchain, TGI | Xeon | 6007 | /v1/generate_transcripts, /v1/generate_captions, /v1/ingest | +| Embedding | Langchain | Xeon | 6000 | /v1/embeddings | +| LVM | Langchain, Transformers | Xeon | 9399 | /v1/lvm | +| Retriever | Langchain, Redis | Xeon | 7000 | /v1/retrieval | +| SpeechT5 | Transformers | Xeon | 7055 | /v1/tts | +| Whisper | Transformers | Xeon | 7066 | /v1/asr | +| Dataprep | Redis, Langchain, TGI | Gaudi | 6007 | /v1/generate_transcripts, /v1/generate_captions, /v1/ingest | +| Embedding | Langchain | Gaudi | 6000 | /v1/embeddings | +| LVM | Langchain, TGI | Gaudi | 9399 | /v1/lvm | +| Retriever | Langchain, Redis | Gaudi | 7000 | /v1/retrieval | +| SpeechT5 | Transformers | Gaudi | 7055 | /v1/tts | +| Whisper | Transformers | Gaudi | 7066 | /v1/asr |
@@ -128,7 +128,7 @@ By default, the embedding and LVM models are set to a default value as listed be | embedding | Gaudi | BridgeTower/bridgetower-large-itm-mlm-itc | | LVM | Gaudi | llava-hf/llava-v1.6-vicuna-13b-hf | | SpeechT5 | Gaudi | microsoft/speecht5_tts | -| Whisper | Gaudi | openai/whisper-small | +| Whisper | Gaudi | openai/whisper-small | You can choose other LVM models, such as `llava-hf/llava-1.5-7b-hf ` and `llava-hf/llava-1.5-13b-hf`, as needed. diff --git a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md index ac4b388689..eeefddeb2d 100644 --- a/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md +++ b/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md @@ -447,6 +447,7 @@ curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ ``` Test the MegaService with a back and forth conversation between the user and assistant including a text to speech response from the assistant using `"modalities": ["text", "audio"]'`: + ```bash curl http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna \ -H "Content-Type: application/json" \ diff --git a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md index 442f889c77..b81c372e20 100644 --- a/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md +++ b/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md @@ -163,7 +163,6 @@ Then run the command `docker images`, you will have the following 11 Docker Imag By default, the multimodal-embedding and LVM models are set to a default value as listed below: - | Service | Model | | --------- | ------------------------------------------- | | embedding | BridgeTower/bridgetower-large-itm-mlm-gaudi | diff --git a/MultimodalQnA/multimodalqna.py b/MultimodalQnA/multimodalqna.py index fb78c29c97..e89c32aeab 100644 --- a/MultimodalQnA/multimodalqna.py +++ b/MultimodalQnA/multimodalqna.py @@ -253,13 +253,13 @@ def convert_audio_to_text(self, audio): response = response.json() return response["asr_result"] - + def convert_text_to_audio(self, text): if isinstance(text, dict): input_dict = {"text": text["text"]} else: input_dict = {"text": text} - + response = requests.post(TTS_ENDPOINT, data=json.dumps(input_dict)) if response.status_code != 200: diff --git a/MultimodalQnA/tests/test_compose_on_gaudi.sh b/MultimodalQnA/tests/test_compose_on_gaudi.sh index 08366f10db..e3a854a07e 100644 --- a/MultimodalQnA/tests/test_compose_on_gaudi.sh +++ b/MultimodalQnA/tests/test_compose_on_gaudi.sh @@ -84,7 +84,7 @@ function setup_env() { export WHISPER_MODEL="base" export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" export TTS_PORT=7055 - export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" + export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" export DATAPREP_MMR_PORT=6007 export DATAPREP_INGEST_SERVICE_ENDPOINT="http://${host_ip}:${DATAPREP_MMR_PORT}/v1/dataprep/ingest" export DATAPREP_GEN_TRANSCRIPT_SERVICE_ENDPOINT="http://${host_ip}:${DATAPREP_MMR_PORT}/v1/dataprep/generate_transcripts" @@ -231,7 +231,7 @@ function validate_microservices() { "Data preparation succeeded" \ "dataprep-multimodal-redis-ingest" \ "dataprep-multimodal-redis" - + echo "Validating Data Prep with Image & Audio Caption Ingestion" validate_service \ "${DATAPREP_INGEST_SERVICE_ENDPOINT}" \ diff --git a/MultimodalQnA/tests/test_compose_on_xeon.sh b/MultimodalQnA/tests/test_compose_on_xeon.sh index 63dbdf6e00..9094faef3d 100644 --- a/MultimodalQnA/tests/test_compose_on_xeon.sh +++ b/MultimodalQnA/tests/test_compose_on_xeon.sh @@ -76,7 +76,7 @@ function setup_env() { export WHISPER_MODEL="base" export WHISPER_SERVER_ENDPOINT="http://${host_ip}:${WHISPER_PORT}/v1/asr" export TTS_PORT=7055 - export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" + export TTS_ENDPOINT="http://${host_ip}:${TTS_PORT}/v1/tts" export REDIS_DB_PORT=6379 export REDIS_INSIGHTS_PORT=8001 export REDIS_URL="redis://${host_ip}:${REDIS_DB_PORT}" @@ -305,7 +305,7 @@ function validate_microservices() { "Data preparation succeeded" \ "dataprep-multimodal-redis-caption" \ "dataprep-multimodal-redis" - + echo "Validating Text to speech service" validate_service \ "${TTS_ENDPOINT}" \ @@ -313,7 +313,7 @@ function validate_microservices() { "speecht5-service" \ "speecht5-service" \ '{"text": "Who are you?"}' - + sleep 3m } diff --git a/MultimodalQnA/ui/gradio/conversation.py b/MultimodalQnA/ui/gradio/conversation.py index 36e0754953..42622f9ed1 100644 --- a/MultimodalQnA/ui/gradio/conversation.py +++ b/MultimodalQnA/ui/gradio/conversation.py @@ -2,12 +2,11 @@ # SPDX-License-Identifier: Apache-2.0 import dataclasses - from enum import Enum, auto from pathlib import Path -from typing import Dict, List, Any, Literal +from typing import Any, Dict, List, Literal -from utils import convert_audio_to_base64, get_b64_frame_from_timestamp, GRADIO_IMAGE_FORMATS, GRADIO_AUDIO_FORMATS +from utils import GRADIO_AUDIO_FORMATS, GRADIO_IMAGE_FORMATS, convert_audio_to_base64, get_b64_frame_from_timestamp class SeparatorStyle(Enum): @@ -43,43 +42,49 @@ def _template_caption(self): return out def get_prompt(self, is_very_first_query): - conv_dict = [{'role': 'user', 'content': []}] + conv_dict = [{"role": "user", "content": []}] caption_flag = True is_image_query = False - + for record in self.chatbot_history: - role = record['role'] - content = record['content'] - - if role == 'user': + role = record["role"] + content = record["content"] + + if role == "user": # Check if last entry of conv_dict has role user - if conv_dict[-1]['role'] != 'user': - conv_dict.append({'role': 'user', 'content': []}) - elif role == 'assistant': + if conv_dict[-1]["role"] != "user": + conv_dict.append({"role": "user", "content": []}) + elif role == "assistant": caption_flag = False # Check if last entry of conv_dict has role assistant - if conv_dict[-1]['role'] != 'assistant': - conv_dict.append({'role': 'assistant', 'content': []}) - + if conv_dict[-1]["role"] != "assistant": + conv_dict.append({"role": "assistant", "content": []}) + # Add content to the last conv_dict record. The single space has only effect on first image-only # query for the similarity search results to get expected response. if isinstance(content, str): if caption_flag: content += " " + self._template_caption() - conv_dict[-1]['content'].append({'type': 'text', 'text': content}) - - if isinstance(content, dict) and 'path' in content: - if Path(content['path']).suffix in GRADIO_IMAGE_FORMATS: + conv_dict[-1]["content"].append({"type": "text", "text": content}) + + if isinstance(content, dict) and "path" in content: + if Path(content["path"]).suffix in GRADIO_IMAGE_FORMATS: is_image_query = True - conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(content['path'], 0)}}) - if Path(content['path']).suffix in GRADIO_AUDIO_FORMATS: - conv_dict[-1]['content'].append({'type': 'audio', 'audio': convert_audio_to_base64(content['path'])}) - + conv_dict[-1]["content"].append( + {"type": "image_url", "image_url": {"url": get_b64_frame_from_timestamp(content["path"], 0)}} + ) + if Path(content["path"]).suffix in GRADIO_AUDIO_FORMATS: + conv_dict[-1]["content"].append( + {"type": "audio", "audio": convert_audio_to_base64(content["path"])} + ) + # include the image from the assistant's response given the user's is not a image query if not is_image_query and caption_flag and self.image: - conv_dict[-1]['content'].append({'type': 'image_url', 'image_url': {'url': get_b64_frame_from_timestamp(self.image, 0)}}) - - return conv_dict + conv_dict[-1]["content"].append( + {"type": "image_url", "image_url": {"url": get_b64_frame_from_timestamp(self.image, 0)}} + ) + + return conv_dict def get_b64_image(self): b64_img = None @@ -97,7 +102,7 @@ def get_b64_audio_query(self): def to_gradio_chatbot(self): return self.chatbot_history - + def copy(self): return Conversation( system=self.system, diff --git a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py index 1b5b00b5ca..7bc54d2a0c 100644 --- a/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py +++ b/MultimodalQnA/ui/gradio/multimodalqna_ui_gradio.py @@ -16,18 +16,18 @@ from fastapi.staticfiles import StaticFiles from gradio_pdf import PDF from utils import ( - build_logger, - convert_base64_to_audio, GRADIO_AUDIO_FORMATS, GRADIO_IMAGE_FORMATS, + TMP_DIR, + build_logger, + convert_base64_to_audio, make_temp_image, server_error_msg, split_video, - TMP_DIR ) -IMAGE_FORMATS = ['.png', '.gif', '.jpg', '.jpeg'] -AUDIO_FORMATS = ['.wav', '.mp3'] +IMAGE_FORMATS = [".png", ".gif", ".jpg", ".jpeg"] +AUDIO_FORMATS = [".wav", ".mp3"] logger = build_logger("gradio_web_server", "gradio_web_server.log") logflag = os.getenv("LOGFLAG", False) @@ -81,11 +81,11 @@ def clear_history(state, request: gr.Request): def add_text(state, multimodal_textbox, request: gr.Request): text = multimodal_textbox["text"] files = multimodal_textbox["files"] - + image_file, audio_file = None, None - + text = text.strip() - + if not text and not files: state.skip_next = True return (state, state.to_gradio_chatbot(), None) + (no_change_btn,) * 1 @@ -93,71 +93,52 @@ def add_text(state, multimodal_textbox, request: gr.Request): text = text[:2000] # Hard cut-off state.skip_next = False - + if files: if Path(files[0]).suffix in GRADIO_IMAGE_FORMATS: image_file = files[0] if Path(files[0]).suffix in GRADIO_AUDIO_FORMATS or len(files) > 1: audio_file = files[-1] # Guaranteed that last file would be recorded audio - + # Add to chatbot history if image_file: state.image_query_file = image_file - state.chatbot_history.append({ - "role": state.roles[0], - "content": {"path": image_file} - }) + state.chatbot_history.append({"role": state.roles[0], "content": {"path": image_file}}) if audio_file: state.audio_query_file = audio_file - state.chatbot_history.append({ - "role": state.roles[0], - "content": {"path": audio_file} - }) - - state.chatbot_history.append({ - "role": state.roles[0], - "content": text - }) - + state.chatbot_history.append({"role": state.roles[0], "content": {"path": audio_file}}) + + state.chatbot_history.append({"role": state.roles[0], "content": text}) + logger.info(f"add_text. ip: {request.client.host}. len: {len(text)}") - - return ( - state, - state.to_gradio_chatbot(), - gr.MultimodalTextbox(value=None) - ) + (disable_btn,) * 1 + + return (state, state.to_gradio_chatbot(), gr.MultimodalTextbox(value=None)) + (disable_btn,) * 1 def http_bot(state, audio_response_toggler, request: gr.Request): global gateway_addr logger.info(f"http_bot. ip: {request.client.host}") url = gateway_addr - + if state.skip_next: # This generate call is skipped due to invalid inputs yield (state, state.to_gradio_chatbot(), None, None, None) + (no_change_btn,) * 1 return - - is_very_first_query = all(True if h['role'] == 'user' else False for h in state.chatbot_history) - + + is_very_first_query = all(True if h["role"] == "user" else False for h in state.chatbot_history) + # Construct prompt prompt = state.get_prompt(is_very_first_query) - + modalities = ["text", "audio"] if audio_response_toggler else ["text"] # Make requests - pload = { - "messages": prompt, - "modalities": modalities - } - - state.chatbot_history.append({ - "role": state.roles[1], - "content": "▌" - }) - + pload = {"messages": prompt, "modalities": modalities} + + state.chatbot_history.append({"role": state.roles[1], "content": "▌"}) + yield (state, state.to_gradio_chatbot(), state.split_video, state.image, state.pdf) + (disable_btn,) * 1 - + if logflag: logger.info(f"==== request ====\n{pload}") logger.info(f"==== url request ====\n{gateway_addr}") @@ -182,7 +163,7 @@ def http_bot(state, audio_response_toggler, request: gr.Request): if audio_response_toggler: if choice["message"]["audio"]: audio_response = choice["message"]["audio"]["data"] - + if ( is_very_first_query and not state.video_file @@ -221,32 +202,38 @@ def http_bot(state, audio_response_toggler, request: gr.Request): state.pdf = output_pdf_path else: raise requests.exceptions.RequestException - + except requests.exceptions.RequestException as e: if logflag: - logger.info(f"Request Exception occured:\n{str(e)}") - + logger.info(f"Request Exception occurred:\n{str(e)}") + gr.Error("Request exception occurred. See logs for details.") - + yield (state, state.to_gradio_chatbot(), None, None, None) + (enable_btn,) return - + if audio_response: - state.chatbot_history[-1]["content"] = {'path': convert_base64_to_audio(audio_response)} + state.chatbot_history[-1]["content"] = {"path": convert_base64_to_audio(audio_response)} else: state.chatbot_history[-1]["content"] = message - + yield ( state, state.to_gradio_chatbot(), gr.Video(state.split_video, visible=state.split_video is not None), gr.Image(state.image, visible=state.image is not None), - PDF(state.pdf, visible=state.pdf is not None, interactive=False, starting_page=int(state.time_of_frame_ms) if state.time_of_frame_ms else 0), + PDF( + state.pdf, + visible=state.pdf is not None, + interactive=False, + starting_page=int(state.time_of_frame_ms) if state.time_of_frame_ms else 0, + ), ) + (enable_btn,) * 1 logger.info(f"{state.chatbot_history[-1]['content']}") return + def ingest_gen_transcript(filepath, filetype, request: gr.Request): yield ( gr.Textbox(visible=True, value=f"Please wait while your uploaded {filetype} is ingested into the database...") @@ -500,14 +487,10 @@ def get_files(): files = response.json() if files: html_content = "
    " + "".join(f"
  • {item}
  • " for item in files) + "
" - yield ( - gr.HTML(html_content, visible=True, max_height=200) - ) + yield (gr.HTML(html_content, visible=True, max_height=200)) return else: - yield ( - gr.HTML("Vector store is empty.", visible=True) - ) + yield (gr.HTML("Vector store is empty.", visible=True)) return except Exception as e: logger.info(f"Error getting files from vector store: {str(e)}") @@ -567,31 +550,34 @@ def select_upload_type(choice, request: gr.Request): with gr.Blocks() as upload_image: gr.Markdown("# Ingest Images Using Generated or Custom Captions") - gr.Markdown("Use this interface to ingest an image and generate a caption for it. If uploading a caption, populate it before the image.") + gr.Markdown( + "Use this interface to ingest an image and generate a caption for it. If uploading a caption, populate it before the image." + ) text_caption_label = "Text Caption" audio_caption_label = "Voice Audio Caption ({}, or microphone)".format(", ".join(AUDIO_FORMATS)) + def select_upload_type(choice, request: gr.Request): if choice == "gen_caption": return ( gr.Image(sources="upload", visible=True), gr.Image(sources="upload", visible=False), gr.Textbox(visible=False, interactive=True, label=text_caption_label), - gr.Audio(visible=False, type="filepath", label=audio_caption_label) + gr.Audio(visible=False, type="filepath", label=audio_caption_label), ) elif choice == "custom_caption": return ( gr.Image(sources="upload", visible=False), gr.Image(sources="upload", visible=True), gr.Textbox(visible=True, interactive=True, label=text_caption_label), - gr.Audio(visible=False, type="filepath", label=audio_caption_label) + gr.Audio(visible=False, type="filepath", label=audio_caption_label), ) else: return ( gr.Image(sources="upload", visible=False), gr.Image(sources="upload", visible=True), gr.Textbox(visible=False, interactive=True, label=text_caption_label), - gr.Audio(visible=True, type="filepath", label=audio_caption_label) + gr.Audio(visible=True, type="filepath", label=audio_caption_label), ) def verify_audio_caption_type(file, request: gr.Request): @@ -599,15 +585,12 @@ def verify_audio_caption_type(file, request: gr.Request): if audio_type not in AUDIO_FORMATS: return ( None, - gr.Textbox( - visible=True, - value="The audio file format must be {}".format(" or ".join(AUDIO_FORMATS)) - ) + gr.Textbox(visible=True, value="The audio file format must be {}".format(" or ".join(AUDIO_FORMATS))), ) else: return ( gr.Audio(value=file, visible=True, type="filepath", label=audio_caption_label), - gr.Textbox(visible=False, value=None) + gr.Textbox(visible=False, value=None), ) with gr.Row(): @@ -619,7 +602,7 @@ def verify_audio_caption_type(file, request: gr.Request): [ ("Auto-generate a caption", "gen_caption"), ("Upload a text caption (populate before image)", "custom_caption"), - ("Upload an audio caption (populate before image)", "custom_audio_caption") + ("Upload an audio caption (populate before image)", "custom_audio_caption"), ], label="Caption Options", info="How should captions be ingested?", @@ -628,21 +611,21 @@ def verify_audio_caption_type(file, request: gr.Request): custom_caption = gr.Textbox(visible=False, interactive=True, label=text_caption_label) custom_caption_audio = gr.Audio(visible=False, type="filepath", label=audio_caption_label) text_upload_result = gr.Textbox(visible=False, interactive=False, label="Upload Status") - custom_caption_audio.input(verify_audio_caption_type, [custom_caption_audio], [custom_caption_audio, text_upload_result]) + custom_caption_audio.input( + verify_audio_caption_type, [custom_caption_audio], [custom_caption_audio, text_upload_result] + ) image_upload_cap.upload( ingest_gen_caption, [image_upload_cap, gr.Textbox(value="image", visible=False)], [text_upload_result] ) image_upload_cap.clear(hide_text, [], [text_upload_result]) image_upload_text.upload( - ingest_with_caption, - [image_upload_text, custom_caption, custom_caption_audio], - [text_upload_result] + ingest_with_caption, [image_upload_text, custom_caption, custom_caption_audio], [text_upload_result] ).then(clear_captions, [], [custom_caption, custom_caption_audio]) image_upload_text.clear(hide_text, [], [text_upload_result]) text_options_radio.change( select_upload_type, [text_options_radio], - [image_upload_cap, image_upload_text, custom_caption, custom_caption_audio] + [image_upload_cap, image_upload_text, custom_caption, custom_caption_audio], ) with gr.Blocks() as upload_audio: @@ -687,7 +670,7 @@ def verify_audio_caption_type(file, request: gr.Request): show_label=False, file_types=GRADIO_IMAGE_FORMATS + GRADIO_AUDIO_FORMATS, sources=["microphone", "upload"], - placeholder="Text, Image & Audio Query" + placeholder="Text, Image & Audio Query", ) with gr.Column(scale=1, min_width=150): with gr.Row(): @@ -704,17 +687,9 @@ def verify_audio_caption_type(file, request: gr.Request): ) multimodal_textbox.submit( - add_text, - [state, multimodal_textbox], - [state, chatbot, multimodal_textbox, clear_btn] - ).then( - http_bot, - [state, audio_response_toggler], - [state, chatbot, video, image, pdf, clear_btn] - ).then( - lambda: gr.MultimodalTextbox(interactive=True), - None, - [multimodal_textbox] + add_text, [state, multimodal_textbox], [state, chatbot, multimodal_textbox, clear_btn] + ).then(http_bot, [state, audio_response_toggler], [state, chatbot, video, image, pdf, clear_btn]).then( + lambda: gr.MultimodalTextbox(interactive=True), None, [multimodal_textbox] ) with gr.Blocks() as vector_store: diff --git a/MultimodalQnA/ui/gradio/utils.py b/MultimodalQnA/ui/gradio/utils.py index 6e4e5ba764..a0ce9d6b7f 100644 --- a/MultimodalQnA/ui/gradio/utils.py +++ b/MultimodalQnA/ui/gradio/utils.py @@ -20,7 +20,10 @@ moderation_msg = "YOUR INPUT VIOLATES OUR CONTENT MODERATION GUIDELINES. PLEASE TRY AGAIN." GRADIO_IMAGE_FORMATS = [".jpeg", ".png", ".jpg", ".gif"] -GRADIO_AUDIO_FORMATS = [".wav", ".mp3",] +GRADIO_AUDIO_FORMATS = [ + ".wav", + ".mp3", +] handler = None save_log = False @@ -192,9 +195,10 @@ def convert_audio_to_base64(audio_path): encoded_string = base64.b64encode(open(audio_path, "rb").read()) return encoded_string.decode("utf-8") + def convert_base64_to_audio(b64_str): """Decodes the base64 encoded audio data and returns a saved filepath.""" - + audio_data = base64.b64decode(b64_str) # Create a temporary file