28 lines
933 B
Plaintext
28 lines
933 B
Plaintext
# MiniCPM-V 4.5 CPU Variant
|
|
# Vision-Language Model optimized for CPU-only inference
|
|
FROM ollama/ollama:latest
|
|
|
|
LABEL maintainer="Task Venture Capital GmbH <hello@task.vc>"
|
|
LABEL description="MiniCPM-V 4.5 Vision-Language Model - CPU optimized (GGUF)"
|
|
LABEL org.opencontainers.image.source="https://code.foss.global/host.today/ht-docker-ai"
|
|
|
|
# Environment configuration for CPU-only mode
|
|
ENV MODEL_NAME="minicpm-v"
|
|
ENV OLLAMA_HOST="0.0.0.0"
|
|
ENV OLLAMA_ORIGINS="*"
|
|
# Disable GPU usage for CPU-only variant
|
|
ENV CUDA_VISIBLE_DEVICES=""
|
|
|
|
# Copy and setup entrypoint
|
|
COPY image_support_files/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
|
|
|
# Expose Ollama API port
|
|
EXPOSE 11434
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=120s --retries=3 \
|
|
CMD curl -f http://localhost:11434/api/tags || exit 1
|
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
|