# Base image for Cursor Cloud Agents (Pyralysis).
# Do not COPY the project; Cursor checks out the repo at runtime.
FROM ubuntu:24.04

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
    python3.12 \
    python3.12-venv \
    python3.12-dev \
    build-essential \
    git \
    curl \
    && rm -rf /var/lib/apt/lists/*
