Henk717 commited on
Commit
4a86ca2
1 Parent(s): 1708639

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
2
  ARG MODEL
3
  ARG IMGMODEL
4
  ARG WHISPERMODEL
@@ -9,10 +9,10 @@ RUN mkdir /opt/koboldcpp
9
  RUN apt update && apt install curl -y
10
  WORKDIR /opt/koboldcpp
11
  COPY default.json /opt/koboldcpp/default.json
12
- RUN curl -fLO koboldcpp https://koboldai.org/cpplinuxcu12
13
  RUN chmod +x ./koboldcpp
14
- RUN curl -fLO model.ggml $MODEL || true
15
- RUN curl -fLO imgmodel.ggml $IMGMODEL || true
16
- RUN curl -fLO mmproj.ggml $MMPROJ || true
17
- RUN curl -fLO whispermodel.ggml $WHISPERMODEL || true
18
  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 --ignoremissing
 
1
+ FROM ubuntu
2
  ARG MODEL
3
  ARG IMGMODEL
4
  ARG WHISPERMODEL
 
9
  RUN apt update && apt install curl -y
10
  WORKDIR /opt/koboldcpp
11
  COPY default.json /opt/koboldcpp/default.json
12
+ RUN curl -fLo koboldcpp https://koboldai.org/cpplinuxcu12
13
  RUN chmod +x ./koboldcpp
14
+ RUN curl -fLo model.ggml $MODEL || true
15
+ RUN curl -fLo imgmodel.ggml $IMGMODEL || true
16
+ RUN curl -fLo mmproj.ggml $MMPROJ || true
17
+ RUN curl -fLo whispermodel.ggml $WHISPERMODEL || true
18
  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 --ignoremissing