From c56ad3c66a804624049231bc623b75b7b44d93ae Mon Sep 17 00:00:00 2001 From: Cyberes Date: Sun, 15 Oct 2023 14:53:05 -0600 Subject: [PATCH] docker: no need to install requirements --- other/vllm/Docker/Dockerfile | 1 - other/vllm/Docker/update-container.sh | 2 -- 2 files changed, 3 deletions(-) diff --git a/other/vllm/Docker/Dockerfile b/other/vllm/Docker/Dockerfile index 6eeaf0c..6e4b29a 100644 --- a/other/vllm/Docker/Dockerfile +++ b/other/vllm/Docker/Dockerfile @@ -19,7 +19,6 @@ RUN cp /tmp/rathole /app RUN python3 -m venv /venv RUN /venv/bin/pip3 install --upgrade pip setuptools wheel -RUN /venv/bin/pip3 install -r requirements.txt # Install PyTorch before installing VLLM in an attempt to ensure we use the right # version for our CUDA install. (VLLM wants 2.0.1) diff --git a/other/vllm/Docker/update-container.sh b/other/vllm/Docker/update-container.sh index 7f8fbe4..d44d6d9 100755 --- a/other/vllm/Docker/update-container.sh +++ b/other/vllm/Docker/update-container.sh @@ -8,6 +8,4 @@ cd /local-llm-server || exit git fetch git reset --hard origin/master -/venv/bin/pip install -r requirements.txt - supervisorctl restart vllm