12 lines
271 B
Docker
12 lines
271 B
Docker
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REPO=opea
|
|
ARG BASE_TAG=latest
|
|
FROM $IMAGE_REPO/comps-base:$BASE_TAG
|
|
|
|
COPY ./chatqna.py $HOME/chatqna.py
|
|
COPY ./entrypoint.sh $HOME/entrypoint.sh
|
|
|
|
ENTRYPOINT ["bash", "entrypoint.sh"]
|