From 23cb4df7db77192c54efad3352add208f1d610b5 Mon Sep 17 00:00:00 2001 From: Cyberes Date: Sun, 1 Oct 2023 02:08:16 -0600 Subject: [PATCH] Update 'other/vllm/Docker/Dockerfile' --- other/vllm/Docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/vllm/Docker/Dockerfile b/other/vllm/Docker/Dockerfile index cd2b277..b25ef7c 100644 --- a/other/vllm/Docker/Dockerfile +++ b/other/vllm/Docker/Dockerfile @@ -10,7 +10,6 @@ RUN git clone https://git.evulid.cc/cyberes/local-llm-server.git /local-llm-serv WORKDIR /local-llm-server RUN python3 -m venv /venv -RUN /venv/bin/pip install git+https://github.com/vllm-project/vllm RUN python3 -m venv /jupyterlab RUN /jupyterlab/bin/pip install jupyterlab @@ -25,6 +24,7 @@ RUN cp /tmp/rathole /app # The local local-llm-server repo may be cached, so we will fetch and reset to the remote every time. # Also, make sure there weren't any pip deps added. ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache +RUN /venv/bin/pip install git+https://github.com/vllm-project/vllm RUN git fetch; git reset --hard origin/master RUN /venv/bin/pip install -r requirements.txt