Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions containers/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ LABEL org.opencontainers.image.title="Forge Development Sandbox"
LABEL org.opencontainers.image.description="AI-powered development environment for Forge SDLC orchestrator"
LABEL org.opencontainers.image.source="https://github.com/your-org/forge"

# Install system packages
RUN apt-get update && apt-get install -y --no-install-recommends \
ripgrep \
&& rm -rf /var/lib/apt/lists/*

# Install Deep Agents and dependencies
# Using pip as the universal image has Python pre-installed
RUN pip install --no-cache-dir \
Expand Down
Loading