mirror of
https://github.com/lancedb/lancedb.git
synced 2026-03-22 16:40:39 +00:00
## Summary - Update dependencies across Rust, Python, Node.js, Java, Docker, and docs - Pin unpinned dependency lower bounds to prevent silent downgrades - Bump CI actions to current major versions 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
846 B
Docker
28 lines
846 B
Docker
# Simple base dockerfile that supports basic dependencies required to run lance with FTS and Hybrid Search
|
|
# Usage: docker build -t lancedb:latest -f Dockerfile .
|
|
FROM python:3.12-slim-bookworm
|
|
|
|
# Install build dependencies in a single layer
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
curl \
|
|
build-essential \
|
|
protobuf-compiler \
|
|
git \
|
|
ca-certificates && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Rust (pinned installer, non-interactive)
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
|
|
|
# Set the environment variable for Rust
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
# Verify installations
|
|
RUN python --version && \
|
|
rustc --version && \
|
|
protoc --version
|
|
|
|
RUN pip install --no-cache-dir tantivy lancedb
|