FROM mcr.microsoft.com/devcontainers/base:noble

# Instalar Python y dependencias
RUN apt-get update && apt-get install -y \
    python3 \
    python3-pip \
    python3-venv \
    && rm -rf /var/lib/apt/lists/*

# Instalar boto3, chromadb-client y uv
RUN pip3 install --break-system-packages boto3 chromadb-client uv

# Crear directorio de trabajo
WORKDIR /workspace