File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ USER root
8
8
ENV NPU_SETUP=false
9
9
RUN apt-get update \
10
10
&& apt-get install -y wget gnupg curl libtbbmalloc2 libtbb12 kmod
11
- RUN wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
11
+ RUN set -o pipefail && wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
12
12
gpg --yes --dearmor --output /usr/share/keyrings/intel-graphics.gpg && \
13
13
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/gpu/ubuntu noble client" | \
14
14
tee /etc/apt/sources.list.d/intel-gpu-noble.list
@@ -30,7 +30,7 @@ RUN wget https://github.com/intel/intel-graphics-compiler/releases/download/v2.5
30
30
&& wget https://github.com/intel/compute-runtime/releases/download/24.52.32224.5/libigdgmm12_22.5.5_amd64.deb
31
31
32
32
RUN echo -e "Verify sha256 sums for packages"
33
- RUN wget https://github.com/intel/compute-runtime/releases/download/24.52.32224.5/ww52.sum \
33
+ RUN set -o pipefail && wget https://github.com/intel/compute-runtime/releases/download/24.52.32224.5/ww52.sum \
34
34
&& sha256sum -c ww52.sum
35
35
36
36
RUN echo -e "\n Installing compute runtime"
@@ -40,4 +40,4 @@ USER openvino
40
40
CMD ["/tmp/npu_container.sh" ]
41
41
42
42
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s \
43
- CMD sh -c "clinfo | grep 'Driver Version' | awk '{print $NF}' || exit 1"
43
+ CMD sh -c "set -o pipefail && clinfo | grep 'Driver Version' | awk '{print \ $ NF}' || exit 1"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ USER root
8
8
ENV NPU_SETUP=false
9
9
RUN apt-get update \
10
10
&& apt-get install -y wget gnupg curl libtbbmalloc2 libtbb12 kmod
11
- RUN wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
11
+ RUN set -o pipefail && wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
12
12
gpg --yes --dearmor --output /usr/share/keyrings/intel-graphics.gpg && \
13
13
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/gpu/ubuntu noble client" | \
14
14
tee /etc/apt/sources.list.d/intel-gpu-noble.list
@@ -40,4 +40,4 @@ USER openvino
40
40
CMD ["/tmp/npu_container.sh" ]
41
41
42
42
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s \
43
- CMD sh -c "clinfo | grep 'Driver Version' | awk '{print $NF}' || exit 1"
43
+ CMD sh -c "set -o pipefail && clinfo | grep 'Driver Version' | awk '{print $NF}' || exit 1"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ USER root
8
8
ENV NPU_SETUP=false
9
9
RUN apt-get update \
10
10
&& apt-get install -y wget gnupg curl libtbbmalloc2 libtbb12 kmod
11
- RUN wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
11
+ RUN set -o pipefail && wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
12
12
gpg --yes --dearmor --output /usr/share/keyrings/intel-graphics.gpg && \
13
13
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/gpu/ubuntu jammy client" | \
14
14
tee /etc/apt/sources.list.d/intel-gpu-jammy.list
You can’t perform that action at this time.
0 commit comments