Skip to content

Commit f2a2772

Browse files
authored
Dockerfile: remove noproxy on curl cmdline (#221)
1 parent e7acff6 commit f2a2772

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ set -e
9797
mkdir -p /workspace/simics/ispm/
9898

9999
# Download SIMICS components
100-
curl --noproxy '*.intel.com' -L -o /workspace/simics/ispm.tar.gz "${PUBLIC_SIMICS_ISPM_URL}"
101-
curl --noproxy '*.intel.com' -L -o /workspace/simics/simics.ispm "${PUBLIC_SIMICS_PKGS_URL}"
100+
curl -L -o /workspace/simics/ispm.tar.gz "${PUBLIC_SIMICS_ISPM_URL}"
101+
curl -L -o /workspace/simics/simics.ispm "${PUBLIC_SIMICS_PKGS_URL}"
102102

103103
# Extract and install
104104
tar -C /workspace/simics/ispm --strip-components=1 -xf /workspace/simics/ispm.tar.gz

0 commit comments

Comments
 (0)