2025-11-21 07:25:43 +00:00
|
|
|
FROM ghcr.io/cirruslabs/flutter:3.35.5
|
|
|
|
|
|
|
|
|
|
# Install system dependencies
|
|
|
|
|
RUN sudo apt-get update && sudo apt-get install -y \
|
|
|
|
|
python3 \
|
|
|
|
|
python3-pip \
|
|
|
|
|
python3-venv \
|
|
|
|
|
nodejs \
|
|
|
|
|
npm \
|
|
|
|
|
jq \
|
|
|
|
|
curl \
|
|
|
|
|
git \
|
|
|
|
|
&& sudo rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
# Install Cursor CLI
|
2025-11-21 09:31:34 +00:00
|
|
|
RUN curl https://cursor.com/install -fsS | bash
|
|
|
|
|
|
|
|
|
|
# Add Cursor to PATH
|
|
|
|
|
ENV PATH="/root/.local/bin:${PATH}"
|
2025-11-21 07:25:43 +00:00
|
|
|
|
|
|
|
|
# Verify installations
|
|
|
|
|
RUN python3 --version && \
|
|
|
|
|
pip3 --version && \
|
|
|
|
|
node --version && \
|
|
|
|
|
npm --version && \
|
|
|
|
|
flutter --version && \
|
|
|
|
|
cursor-agent --version
|