mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2024-12-12 16:47:28 +01:00
33b8cec452
KoboldAI United now has a working official docker available at henk717/koboldai:united . In the spirit of our project, this commit open sources the files used to build the docker. docker-helper.sh is in the main folder, so that it is not overwritten during updates. Instead this file is copied by the Dockerfile and should be updated trough container updates.
9 lines
291 B
Docker
9 lines
291 B
Docker
FROM debian
|
|
RUN apt update && apt install wget aria2 git bzip2 -y
|
|
RUN git clone https://github.com/henk717/koboldai /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
|