"...git@developer.sourcefind.cn:OpenDAS/openpcdet.git" did not exist on "c5d71a671ed77bd52adee20cfbce783eb9776f92"
Commit e6be74ba authored by Piotr Marcinkiewicz's avatar Piotr Marcinkiewicz Committed by GitHub
Browse files

Add etcd to vLLM dockerfile (#231)

parent 7eee891a
...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment