Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
0c94f00f
Unverified
Commit
0c94f00f
authored
Mar 10, 2026
by
Dmitry Tokarev
Committed by
GitHub
Mar 10, 2026
Browse files
fix: curl - retry DNS failures too (#7009)
Signed-off-by:
Dmitry Tokarev
<
dtokarev@nvidia.com
>
parent
fce90859
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
container/README.md
container/README.md
+1
-1
container/templates/trtllm_runtime.Dockerfile
container/templates/trtllm_runtime.Dockerfile
+1
-1
container/templates/wheel_builder.Dockerfile
container/templates/wheel_builder.Dockerfile
+1
-1
No files found.
container/README.md
View file @
0c94f00f
...
...
@@ -254,7 +254,7 @@ The frontend image is a specialized container that includes the Dynamo component
**Build EPP Image**
```
bash
sudo
apt-get update
&&
sudo
apt-get
install
-y
git build-essential protobuf-compiler libclang-dev
curl https://sh.rustup.rs
-sSf
| sh
-s
--
-y
--default-toolchain
stable
curl
--retry
5
--retry-delay
3
-sSf
https://sh.rustup.rs | sh
-s
--
-y
--default-toolchain
stable
.
"
$HOME
/.cargo/env"
cargo
install
cbindgen
...
...
container/templates/trtllm_runtime.Dockerfile
View file @
0c94f00f
...
...
@@ -98,7 +98,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
else
\
ARCH_FOR_GPG
=
"sbsa"
;
\
fi
&&
\
curl
-fsSL
\
curl
-fsSL
--retry
5
--retry-delay
3
\
https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/
${
ARCH_FOR_GPG
}
/cuda-archive-keyring.gpg
\
-o
/usr/share/keyrings/cuda-archive-keyring.gpg
&&
\
echo
"deb [signed-by=/usr/share/keyrings/cuda-archive-keyring.gpg]
\
...
...
container/templates/wheel_builder.Dockerfile
View file @
0c94f00f
...
...
@@ -244,7 +244,7 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
dnf
install
-y
pkg-config
;
\
fi
&&
\
cd
/tmp
&&
\
curl
-LO
https://ffmpeg.org/releases/ffmpeg-
${
FFMPEG_VERSION
}
.tar.xz
&&
\
curl
--retry
5
--retry-delay
3
-LO
https://ffmpeg.org/releases/ffmpeg-
${
FFMPEG_VERSION
}
.tar.xz
&&
\
tar
xf ffmpeg-
${
FFMPEG_VERSION
}
.tar.xz
&&
\
cd
ffmpeg-
${
FFMPEG_VERSION
}
&&
\
./configure
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment