MediLITE / Dockerfile
segestic's picture
Update Dockerfile
1b25c1b verified
raw
history blame contribute delete
303 Bytes
FROM ghcr.io/ggerganov/llama.cpp:full
RUN apt update && apt install wget -y
RUN wget "https://huggingface.co/segestic/DrSeg_Phi3.5_GGUF/resolve/main/phi-3.5-mini-DrSeg.q4_k_m.gguf" -O /DrSeg.q4_k_m.gguf
CMD ["--server", "-m", "/DrSeg.q4_k_m.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "1024"]