codeboxgptpythonapi / Dockerfile
sca255's picture
Update Dockerfile
c2420e7 verified
raw
history blame contribute delete
331 Bytes
FROM ghcr.io/ggerganov/llama.cpp:server
ARG MODEL
ARG IMGMODEL
ARG WHISPERMODEL
ARG MMPROJ
ARG MODEL_NAME
ARG ADDITIONAL
RUN apt update && apt install curl unzip -y
RUN curl -fLo model.ggml $MODEL || true
RUN curl -fLo whispermodel.ggml $WHISPERMODEL || true
ENTRYPOINT /llama-server -m model.ggml --port 7860 --host 0.0.0.0