Files
GenAIExamples/DocSum/docker_image_build/build.yaml
XinyaoWa ff1310b11a Refactor docsum (#1336)
Signed-off-by: Xinyao Wang <xinyao.wang@intel.com>
2025-01-13 15:49:48 +08:00

50 lines
1.3 KiB
YAML

# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
services:
docsum:
build:
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
no_proxy: ${no_proxy}
context: ../
dockerfile: ./Dockerfile
image: ${REGISTRY:-opea}/docsum:${TAG:-latest}
docsum-gradio-ui:
build:
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
context: ../ui
dockerfile: ./docker/Dockerfile.gradio
extends: docsum
image: ${REGISTRY:-opea}/docsum-gradio-ui:${TAG:-latest}
docsum-ui:
build:
context: ../ui
dockerfile: ./docker/Dockerfile
extends: docsum
image: ${REGISTRY:-opea}/docsum-ui:${TAG:-latest}
docsum-react-ui:
build:
context: ../ui
dockerfile: ./docker/Dockerfile.react
extends: docsum
image: ${REGISTRY:-opea}/docsum-react-ui:${TAG:-latest}
whisper:
build:
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
context: GenAIComps
dockerfile: comps/asr/src/integrations/dependency/whisper/Dockerfile
extends: docsum
image: ${REGISTRY:-opea}/whisper:${TAG:-latest}
llm-docsum:
build:
context: GenAIComps
dockerfile: comps/llms/src/doc-summarization/Dockerfile
extends: docsum
image: ${REGISTRY:-opea}/llm-docsum:${TAG:-latest}