Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tekton/odh-openvino-model-server-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.konflux
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down