Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .devcontainer/backend/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
&& apt-get install -y nodejs

# Install Yarn, update npm, and install Codex CLI
RUN npm install -g yarn npm@11.12.0 @openai/codex
RUN npm install -g yarn npm@11.12.0 @openai/codex @github/copilot
Comment on lines 42 to +43
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This installs @github/copilot (and @openai/codex) without pinning a version, which makes the devcontainer image build non-reproducible and can break unexpectedly when upstream publishes a new release. Consider pinning these CLIs to explicit versions (or at least @github/copilot) similar to how npm itself is pinned.

Copilot uses AI. Check for mistakes.

# Install Claude Code (as vscode user so it installs to their home directory)
RUN su - vscode -c "curl -fsSL https://claude.ai/install.sh | bash"
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/frontend/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y bubblewrap \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

# Update npm and install Codex CLI
RUN npm install -g npm@11.12.0 @openai/codex
RUN npm install -g npm@11.12.0 @openai/codex @github/copilot
Comment on lines 7 to +8
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title says "Add copilot-cli", but this change installs the npm package @github/copilot. If the intent is GitHub Copilot for the terminal, the commonly supported approach is the GitHub CLI extension (gh extension install github/gh-copilot) rather than an npm package; otherwise please update the PR title/description to match what’s actually being installed.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This installs @github/copilot (and @openai/codex) without pinning a version, which makes the devcontainer image build non-reproducible and can break unexpectedly when upstream publishes a new release. Consider pinning these CLIs to explicit versions (or at least @github/copilot) similar to how npm itself is pinned.

Copilot uses AI. Check for mistakes.

# Install Claude Code (as node user so it installs to their home directory)
RUN su - node -c "curl -fsSL https://claude.ai/install.sh | bash"
Expand Down
Loading