kodingo-infer / Dockerfile
abokidev's picture
feat: Kodingo inference service with Qwen2.5-Coder-7B
e7106ca
Raw
History Blame Contribute Delete
238 Bytes
FROM ollama/ollama:latest
# Install curl for healthcheck
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
# Copy startup script
COPY start.sh /start.sh
RUN chmod +x /start.sh
EXPOSE 11434
CMD ["/start.sh"]