49 lines
1.7 KiB
Bash
49 lines
1.7 KiB
Bash
#!/bin/bash
|
|
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
WORKPATH=$(dirname "$PWD")
|
|
export WORKDIR=$WORKPATH/../../
|
|
echo "WORKDIR=${WORKDIR}"
|
|
export ip_address=$(hostname -I | awk '{print $1}')
|
|
|
|
|
|
function get_genai_comps() {
|
|
if [ ! -d "GenAIComps" ] ; then
|
|
git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../
|
|
fi
|
|
}
|
|
|
|
|
|
function build_docker_images_for_retrieval_tool(){
|
|
cd $WORKDIR/GenAIExamples/DocIndexRetriever/docker_image_build/
|
|
# git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../
|
|
get_genai_comps
|
|
echo "Build all the images with --no-cache..."
|
|
service_list="doc-index-retriever dataprep-redis embedding-tei retriever-redis reranking-tei"
|
|
docker compose -f build.yaml build ${service_list} --no-cache
|
|
docker pull ghcr.io/huggingface/text-embeddings-inference:cpu-1.5
|
|
|
|
docker images && sleep 1s
|
|
}
|
|
|
|
function build_agent_docker_image() {
|
|
cd $WORKDIR/GenAIExamples/AgentQnA/docker_image_build/
|
|
get_genai_comps
|
|
echo "Build agent image with --no-cache..."
|
|
docker compose -f build.yaml build --no-cache
|
|
}
|
|
|
|
function main() {
|
|
echo "==================== Build docker images for retrieval tool ===================="
|
|
build_docker_images_for_retrieval_tool
|
|
echo "==================== Build docker images for retrieval tool completed ===================="
|
|
|
|
echo "==================== Build agent docker image ===================="
|
|
build_agent_docker_image
|
|
echo "==================== Build agent docker image completed ===================="
|
|
}
|
|
|
|
main
|