diff --git a/.tekton/odh-openvino-model-server-pull-request.yaml b/.tekton/odh-openvino-model-server-pull-request.yaml index 11c1b08fdb..b44c203c71 100644 --- a/.tekton/odh-openvino-model-server-pull-request.yaml +++ b/.tekton/odh-openvino-model-server-pull-request.yaml @@ -41,7 +41,7 @@ spec: - name: path-context value: . - name: hermetic - value: true + value: false - name: build-source-image value: true - name: build-image-index diff --git a/Dockerfile.konflux b/Dockerfile.konflux index 86e0468cd1..dc5458ce17 100644 --- a/Dockerfile.konflux +++ b/Dockerfile.konflux @@ -427,9 +427,9 @@ COPY --from=pkg /licenses /licenses # Setup Python Demos Environment COPY demos/python_demos/requirements.txt . RUN if [ -f /usr/bin/dnf ] ; then export DNF_TOOL=dnf ; \ - else export DNF_TOOL=microdnf ; fi ; \ - $DNF_TOOL install -y python3-pip git iproute net-tools ; $DNF_TOOL clean all ; \ - pip3 install --no-cache-dir -r requirements.txt ; \ + else export DNF_TOOL=microdnf ; fi && \ + $DNF_TOOL install -y python3-pip git iproute net-tools && $DNF_TOOL clean all && \ + pip3 install --no-cache-dir -r requirements.txt && \ rm -f requirements.txt USER ovms