codeboxgptpythondemo / Dockerfile
sca255's picture
Update Dockerfile
e8ab070 verified
raw
history blame contribute delete
627 Bytes
FROM debian
ARG MODEL
ARG IMGMODEL
ARG WHISPERMODEL
ARG MMPROJ
ARG MODEL_NAME
ARG ADDITIONAL
RUN mkdir /opt/koboldcpp
RUN apt update && apt install curl -y
WORKDIR /opt/koboldcpp
COPY *.json /opt/koboldcpp/
RUN curl -fLo koboldcpp https://koboldai.org/cpplinuxcu12
RUN chmod +x ./koboldcpp
RUN curl -fLo model.ggml $MODEL || true
RUN curl -fLo whispermodel.ggml $WHISPERMODEL || true
CMD ./koboldcpp --model model.ggml --whispermodel whispermodel.ggml $ADDITIONAL --port 7860 --hordemodelname $MODEL_NAME --hordemaxctx 1 --hordegenlen 1 --preloadstory default.json --chatcompletionsadapter adapter.json --ignoremissing $SECRET