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