We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4258874 commit d235f6eCopy full SHA for d235f6e
2 files changed
.github/workflows/pr-image-size.yml
@@ -37,6 +37,7 @@ jobs:
37
git fetch origin ${{ github.base_ref }}
38
merged_commit=$(git log -1 --format='%H')
39
files=$(git diff --name-status --diff-filter=ARM ${{ github.event.pull_request.base.sha }} ${merged_commit} | awk '{print $2}' | grep -E 'Dockerfile$' || true)
40
+ echo "changed_files=$files"
41
echo "files<<EOF" >> $GITHUB_OUTPUT
42
echo "$files" >> $GITHUB_OUTPUT
43
echo "EOF" >> $GITHUB_OUTPUT
SearchQnA/Dockerfile
@@ -4,7 +4,7 @@
4
ARG IMAGE_REPO=opea
5
ARG BASE_TAG=latest
6
FROM $IMAGE_REPO/comps-base:$BASE_TAG
7
-
+RUN git clone https://github.com/opea-project/GenAIExamples
8
COPY ./searchqna.py $HOME/searchqna.py
9
10
ENTRYPOINT ["python", "searchqna.py"]
0 commit comments