gemma-4-cpu-basic-api / Dockerfile
AlexandreScriptsMT's picture
Simplify Dockerfile for llama.cpp base image
6280c2f verified
raw
history blame contribute delete
178 Bytes
FROM ghcr.io/ggml-org/llama.cpp:server-b8840
WORKDIR /app
COPY entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
EXPOSE 7860
ENTRYPOINT ["/app/entrypoint.sh"]