mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-01-10 15:22:59 +01:00
6af0e842f2
Switch to the official branch on KoboldAI now that it is compatible
9 lines
299 B
Docker
9 lines
299 B
Docker
FROM debian
|
|
RUN apt update && apt install wget aria2 git bzip2 -y
|
|
RUN git clone https://github.com/koboldai/koboldai-client /opt/koboldai
|
|
WORKDIR /opt/koboldai
|
|
RUN ./install_requirements.sh cuda
|
|
COPY docker-helper.sh /opt/koboldai/docker-helper.sh
|
|
EXPOSE 5000/tcp
|
|
CMD /opt/koboldai/docker-helper.sh
|