docker: no need to install requirements
This commit is contained in:
parent
de37ab3771
commit
c56ad3c66a
|
@ -19,7 +19,6 @@ RUN cp /tmp/rathole /app
|
||||||
|
|
||||||
RUN python3 -m venv /venv
|
RUN python3 -m venv /venv
|
||||||
RUN /venv/bin/pip3 install --upgrade pip setuptools wheel
|
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
|
# Install PyTorch before installing VLLM in an attempt to ensure we use the right
|
||||||
# version for our CUDA install. (VLLM wants 2.0.1)
|
# version for our CUDA install. (VLLM wants 2.0.1)
|
||||||
|
|
|
@ -8,6 +8,4 @@ cd /local-llm-server || exit
|
||||||
git fetch
|
git fetch
|
||||||
git reset --hard origin/master
|
git reset --hard origin/master
|
||||||
|
|
||||||
/venv/bin/pip install -r requirements.txt
|
|
||||||
|
|
||||||
supervisorctl restart vllm
|
supervisorctl restart vllm
|
||||||
|
|
Reference in New Issue