Skip to content

Commit 727f4bf

Browse files
authored
enable build within the Intel network (open-edge-platform#125)
1 parent d5ed768 commit 727f4bf

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

libraries/dl-streamer/docker/dlstreamer_dev_ubuntu22.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ RUN \
111111

112112
# Intel® Data Center GPU Flex Series drivers (optional)
113113
# hadolint ignore=SC1091
114-
RUN \
114+
RUN export -n no_proxy && \
115115
apt-get update && \
116116
. /etc/os-release && \
117117
if [[ ! "jammy" =~ ${VERSION_CODENAME} ]]; then \

libraries/dl-streamer/docker/dlstreamer_dev_ubuntu24.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ RUN \
9595

9696
# Intel® Data Center GPU Flex Series drivers (optional)
9797
# hadolint ignore=SC1091
98-
RUN \
98+
RUN export -n no_proxy && \
9999
apt-get update && \
100100
. /etc/os-release && \
101101
if [[ ! " jammy noble " =~ ${VERSION_CODENAME} ]]; then \

libraries/dl-streamer/docker/dlstreamer_ubuntu22.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN \
2828

2929
# Intel® Data Center GPU Flex Series drivers (optional)
3030
# hadolint ignore=SC1091
31-
RUN \
31+
RUN export -n no_proxy && \
3232
apt-get update && \
3333
. /etc/os-release && \
3434
if [[ ! "jammy" =~ ${VERSION_CODENAME} ]]; then \
@@ -47,7 +47,7 @@ RUN \
4747
apt-get clean && \
4848
rm -rf /var/lib/apt/lists/*
4949

50-
RUN \
50+
RUN export -n no_proxy && \
5151
echo "deb https://apt.repos.intel.com/openvino/2025 ubuntu22 main" | tee /etc/apt/sources.list.d/intel-openvino-2025.list && \
5252
wget -q https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
5353
apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
@@ -58,7 +58,7 @@ RUN \
5858

5959
ARG DEBIAN_FRONTEND=noninteractive
6060

61-
RUN \
61+
RUN export -n no_proxy && \
6262
apt-get update -y && \
6363
apt-get install -y -q --no-install-recommends intel-dlstreamer=\* && \
6464
apt-get clean -y && \

libraries/dl-streamer/docker/dlstreamer_ubuntu24.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN \
2828

2929
# Intel® Data Center GPU Flex Series drivers (optional)
3030
# hadolint ignore=SC1091
31-
RUN \
31+
RUN export -n no_proxy && \
3232
apt-get update && \
3333
. /etc/os-release && \
3434
if [[ ! " jammy noble " =~ ${VERSION_CODENAME} ]]; then \
@@ -48,7 +48,7 @@ RUN \
4848
apt-get clean && \
4949
rm -rf /var/lib/apt/lists/*
5050

51-
RUN \
51+
RUN export -n no_proxy && \
5252
echo "deb https://apt.repos.intel.com/openvino/2025 ubuntu24 main" | tee /etc/apt/sources.list.d/intel-openvino-2025.list && \
5353
wget -q https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
5454
apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
@@ -59,7 +59,7 @@ RUN \
5959

6060
ARG DEBIAN_FRONTEND=noninteractive
6161

62-
RUN \
62+
RUN export -n no_proxy && \
6363
apt-get update -y && \
6464
apt-get install -y -q --no-install-recommends intel-dlstreamer=\* && \
6565
apt-get clean -y && \

0 commit comments

Comments
 (0)