gpt-oss-20b / Dockerfile
Monster's picture
Update Dockerfile
fd2a4f7 verified
raw
history blame contribute delete
336 Bytes
FROM ghcr.io/ggml-org/llama.cpp:server
RUN apt update && apt install wget -y
RUN wget "https://huggingface.co/unsloth/gpt-oss-20b-GGUF/resolve/main/gpt-oss-20b-Q4_0.gguf" -O /gpt-oss-20b-Q4_0.gguf
CMD ["-m", "/gpt-oss-20b-Q4_0.gguf", "--port", "7860", "--host", "0.0.0.0", "-t", "2", "-tb", "2", "--mlock", "-c", "4096", "-b", "512"]