File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
platforms/coreultra/mtluh/usecases/openvino Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# Copyright (C) 2024 Intel Corporation
22# SPDX-License-Identifier: Apache-2.0
33
4- FROM openvino/ubuntu22_dev:latest
4+ FROM openvino/ubuntu22_dev:devkit
55
66COPY npu_container.sh /tmp/npu_container.sh
77
8- CMD ["/tmp/npu_container.sh" ]
8+ USER openvino
9+
10+ CMD ["/tmp/npu_container.sh" ]
11+
12+ HEALTHCHECK NONE
Original file line number Diff line number Diff line change @@ -48,14 +48,15 @@ install_openvino_docker(){
4848 echo -e " \n# Install OpenVINO™ docker image"
4949 if ! docker images | grep openvino/ubuntu22_dev; then
5050 docker pull openvino/ubuntu22_dev:latest
51+ docker tag openvino/ubuntu22_dev:latest openvino/ubuntu22_dev:devkit
5152 else
5253 echo " $S_VALID OpenVINO™ docker image already installed"
5354 fi
5455
5556 echo -e " \n# Build OpenVINO™ with NPU docker image"
5657 if ! docker images | grep openvino_npu/ubuntu22_dev; then
5758 docker build --progress=plain --no-cache -t openvino_npu/ubuntu22_dev:latest -f Dockerfile .
58- docker rmi openvino/ubuntu22_dev:latest
59+ docker rmi openvino/ubuntu22_dev:devkit openvino/ubuntu22_dev: latest
5960 else
6061 echo " $S_VALID OpenVINO™ with NPU docker image already installed"
6162 fi
You can’t perform that action at this time.
0 commit comments