From 4fe32f16b078d75e8da1ef54236c8068ec838cb3 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 21 Dec 2022 08:30:43 -0500 Subject: [PATCH] removed venv for koboldai horde bridge --- docker-standalone/Dockerfile.base | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker-standalone/Dockerfile.base b/docker-standalone/Dockerfile.base index 515dede4..049a76db 100644 --- a/docker-standalone/Dockerfile.base +++ b/docker-standalone/Dockerfile.base @@ -5,7 +5,5 @@ COPY ./install_requirements.sh /opt/koboldai USER root RUN apt update && apt install wget aria2 git bzip2 python3 python3-venv -y RUN ./install_requirements.sh cuda;rm -rf ~/.cache/pip -RUN git clone https://github.com/db0/KoboldAI-Horde-Bridge /opt/koboldai/KoboldAI-Horde -RUN python3 -m venv /opt/koboldai/KoboldAI-Horde/venv -RUN /opt/koboldai/KoboldAI-Horde/venv/bin/pip install -r /opt/koboldai/KoboldAI-Horde/requirements.txt +RUN git clone https://github.com/db0/KoboldAI-Horde-Bridge /opt/koboldai/KoboldAI-Horde-Bridge ENV PATH=/opt/conda/bin/:$PATH