mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
11 lines
454 B
Docker
11 lines
454 B
Docker
FROM debian
|
|
WORKDIR /opt/koboldai
|
|
COPY ./environments /opt/koboldai/environments
|
|
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 python3 -m venv /opt/koboldai/KoboldAI-Horde/venv
|
|
RUN /opt/koboldai/KoboldAI-Horde/venv/bin/pip install -r /opt/koboldai/KoboldAI-Horde/requirements.txt
|
|
ENV PATH=/opt/conda/bin/:$PATH
|