Skip to content
Merged
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 templates/rhel8/dist/dev.dockerfile.j2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dev package
WORKDIR ${INTEL_OPENVINO_DIR}
ARG OPENVINO_WHEELS_VERSION={{ product_version }}
ARG OPENVINO_WHEELS_VERSION={{ OPENVINO_WHEELS_VERSION }}
ARG OPENVINO_WHEELS_URL
# hadolint ignore=SC2102,DL3033
RUN yum install -y cmake git && yum clean all && \
Expand Down
3 changes: 0 additions & 3 deletions templates/rhel8/dist/runtime.dockerfile.j2
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
# Install OpenVINO python API dependency
RUN python3 -m pip install --no-cache-dir numpy==1.24.4

WORKDIR ${INTEL_OPENVINO_DIR}/licensing
RUN curl -L https://raw.githubusercontent.com/openvinotoolkit/docker_ci/master/dockerfiles/rhel8/third-party-programs-docker-runtime.txt --output third-party-programs-docker-runtime.txt
10 changes: 5 additions & 5 deletions utils/arg_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,11 +609,11 @@ def parse_args(name: str, description: str): # noqa
)

if not hasattr(args, "wheels_version") or not args.wheels_version:
args.wheels_version = (
args.product_version
if args.build_id == args.product_version
else f"{args.product_version}.*"
)
version = args.product_version.split(".")[:3]
if args.build_id == args.product_version:
args.wheels_version = ".".join(version)
else:
args.wheels_version = ".".join([version[0], version[1], "*"])

if not hasattr(args, "tags") or not args.tags:
layers = "_".join(args.layers)
Expand Down