Skip to content
Open
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
3 changes: 3 additions & 0 deletions homeadditions/.bashrc.d/claude-code.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ddev-generated
# claude-code native installer's installation directory is not user-configurable, so add it to PATH.
export PATH="$HOME/.local/bin:$PATH"
1 change: 1 addition & 0 deletions install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ project_files:
- config.claude-code.yaml
- claude-code/.claude.json
- claude-code/.gitignore
- homeadditions/.bashrc.d/claude-code.sh
10 changes: 8 additions & 2 deletions web-build/Dockerfile.claude-code
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#ddev-generated

RUN npm install -g @anthropic-ai/claude-code
# Use the native installer for Claude Code.
# Claude Code needs to be installed to the user's local/bin, not root's.
USER $username
RUN curl -fsSL https://claude.ai/install.sh | bash

RUN curl -sSL "https://raw.githubusercontent.com/upciti/wakemeops/main/assets/install_repository" | bash && apt install -y glab
# Install GitLab support as root.
USER root
RUN apt-get update
RUN curl -sSL "https://raw.githubusercontent.com/upciti/wakemeops/main/assets/install_repository" | bash && apt install -y glab