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
e6be74ba
"...git@developer.sourcefind.cn:OpenDAS/openpcdet.git" did not exist on "c5d71a671ed77bd52adee20cfbce783eb9776f92"
Commit
e6be74ba
authored
Feb 21, 2025
by
Piotr Marcinkiewicz
Committed by
GitHub
Feb 21, 2025
Browse files
Add etcd to vLLM dockerfile (#231)
parent
7eee891a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
container/Dockerfile.vllm
container/Dockerfile.vllm
+7
-0
No files found.
container/Dockerfile.vllm
View file @
e6be74ba
...
@@ -61,6 +61,13 @@ RUN uv pip install "git+https://github.com/triton-inference-server/perf_analyzer
...
@@ -61,6 +61,13 @@ RUN uv pip install "git+https://github.com/triton-inference-server/perf_analyzer
# Install NATS
# Install NATS
RUN wget https://github.com/nats-io/nats-server/releases/download/v2.10.24/nats-server-v2.10.24-amd64.deb && dpkg -i nats-server-v2.10.24-amd64.deb
RUN wget https://github.com/nats-io/nats-server/releases/download/v2.10.24/nats-server-v2.10.24-amd64.deb && dpkg -i nats-server-v2.10.24-amd64.deb
# Install etcd
ENV ETCD_VERSION="v3.5.18"
RUN wget https://github.com/etcd-io/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -O /tmp/etcd.tar.gz && \
mkdir -p /usr/local/bin/etcd && \
tar -xvf /tmp/etcd.tar.gz -C /usr/local/bin/etcd --strip-components=1
ENV PATH=/usr/local/bin/etcd/:$PATH
# Enable Git operations in the /workspace directory
# Enable Git operations in the /workspace directory
RUN printf "[safe]\n directory=/workspace\n" > /root/.gitconfig
RUN printf "[safe]\n directory=/workspace\n" > /root/.gitconfig
...
...
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