23 lines
646 B
YAML
23 lines
646 B
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
finetuning:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: GenAIComps
|
|
dockerfile: comps/finetuning/src/Dockerfile
|
|
image: ${REGISTRY:-opea}/finetuning:${TAG:-latest}
|
|
finetuning-gaudi:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: GenAIComps
|
|
dockerfile: comps/finetuning/src/Dockerfile.intel_hpu
|
|
image: ${REGISTRY:-opea}/finetuning-gaudi:${TAG:-latest}
|