Koboldcpp-Tiefighter / Dockerfile
Henk717's picture
Allow secret variables
6c2f343 verified
raw
history blame
No virus
795 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 imgmodel.ggml $IMGMODEL || true
RUN curl -fLo mmproj.ggml $MMPROJ || true
RUN curl -fLo whispermodel.ggml $WHISPERMODEL || true
CMD ./koboldcpp --model model.ggml --whispermodel whispermodel.ggml --sdmodel imgmodel.ggml --sdthreads 4 --sdquant --sdclamped --mmproj mmproj.ggml $ADDITIONAL --port 7860 --hordemodelname $MODEL_NAME --hordemaxctx 1 --hordegenlen 1 --preloadstory default.json --chatcompletionsadapter adapter.json --ignoremissing $SECRET