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
941032da
"lib/vscode:/vscode.git/clone" did not exist on "d346782c7c4bcbbb5ad0fdf0deeace42506ce887"
Commit
941032da
authored
Mar 13, 2025
by
Anant Sharma
Committed by
GitHub
Mar 13, 2025
Browse files
build: remove hardcoded cargo jobs args (#136)
parent
b0d3eba1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
container/Dockerfile.vllm
container/Dockerfile.vllm
+4
-4
No files found.
container/Dockerfile.vllm
View file @
941032da
...
...
@@ -216,26 +216,26 @@ ARG CARGO_BUILD_JOBS
# Build Rust runtime
COPY lib/runtime /workspace/lib/runtime
RUN cd lib/runtime && \
cargo build
--jobs 2
--release --locked && cargo doc --no-deps
cargo build --release --locked && cargo doc --no-deps
# Build OpenAI HTTP Service binaries
COPY lib/llm /workspace/lib/llm
COPY components /workspace/components
RUN cd components && \
cargo build
--jobs 2
--release && \
cargo build --release && \
cp target/release/http /usr/local/bin/
# Build Dynamo Run binaries
COPY launch /workspace/launch
RUN cd launch && \
cargo build
--jobs 2
--release --features mistralrs,sglang,vllm,python && \
cargo build --release --features mistralrs,sglang,vllm,python && \
cp target/release/dynamo-run /usr/local/bin/ && \
cp target/release/llmctl /usr/local/bin/
# Generate C bindings for kv cache routing in vLLM
COPY lib/bindings /workspace/lib/bindings
RUN cd lib/bindings/c && \
cargo build
--jobs 2
--release --locked && cargo doc --no-deps
cargo build --release --locked && cargo doc --no-deps
COPY deploy/dynamo/sdk /workspace/deploy/dynamo/sdk
# Build dynamo wheel
...
...
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