Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
0ff6f53d
Commit
0ff6f53d
authored
Apr 10, 2025
by
Anant Sharma
Committed by
GitHub
Apr 10, 2025
Browse files
fix: update yum install in wheel-builder image (#605)
parent
ff30778c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
container/Dockerfile.tensorrt_llm
container/Dockerfile.tensorrt_llm
+4
-1
container/Dockerfile.vllm
container/Dockerfile.vllm
+6
-3
No files found.
container/Dockerfile.tensorrt_llm
View file @
0ff6f53d
...
@@ -141,7 +141,10 @@ ENV CARGO_BUILD_JOBS=${CARGO_BUILD_JOBS:-16}
...
@@ -141,7 +141,10 @@ ENV CARGO_BUILD_JOBS=${CARGO_BUILD_JOBS:-16}
WORKDIR /workspace
WORKDIR /workspace
RUN yum install -y protobuf-compiler \
RUN yum update -y \
&& yum install -y protobuf-compiler \
|| yum install -y https://raw.repo.almalinux.org/almalinux/8.10/AppStream/x86_64/os/Packages/protobuf-3.5.0-15.el8.x86_64.rpm \
https://raw.repo.almalinux.org/almalinux/8.10/AppStream/x86_64/os/Packages/protobuf-compiler-3.5.0-15.el8.x86_64.rpm \
&& yum clean all \
&& yum clean all \
&& rm -rf /var/cache/yum
&& rm -rf /var/cache/yum
...
...
container/Dockerfile.vllm
View file @
0ff6f53d
...
@@ -308,9 +308,12 @@ ENV CARGO_BUILD_JOBS=${CARGO_BUILD_JOBS:-16}
...
@@ -308,9 +308,12 @@ ENV CARGO_BUILD_JOBS=${CARGO_BUILD_JOBS:-16}
ARG RELEASE_BUILD
ARG RELEASE_BUILD
WORKDIR /workspace
WORKDIR /workspace
RUN yum install -y protobuf-compiler \
RUN yum update -y \
&& yum clean all \
&& yum install -y protobuf-compiler \
&& rm -rf /var/cache/yum
|| yum install -y https://raw.repo.almalinux.org/almalinux/8.10/AppStream/x86_64/os/Packages/protobuf-3.5.0-15.el8.x86_64.rpm \
https://raw.repo.almalinux.org/almalinux/8.10/AppStream/x86_64/os/Packages/protobuf-compiler-3.5.0-15.el8.x86_64.rpm \
&& yum clean all \
&& rm -rf /var/cache/yum
ENV RUSTUP_HOME=/usr/local/rustup \
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
CARGO_HOME=/usr/local/cargo \
...
...
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