Skip to content
Merged
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
7 changes: 4 additions & 3 deletions images/memax-dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,25 @@ USER root

# ========= Claude Code =========
ENV PATH="/home/coder/.local/bin:${PATH}"
ENV NPM_CONFIG_PREFIX="/home/coder/.local"
RUN mkdir -p /home/coder/.local/bin /home/coder/.claude && \
chown -R coder:coder /home/coder/.local /home/coder/.claude
USER coder
RUN curl -fsSL https://claude.ai/install.sh | bash

# ========= Codex CLI =========
RUN mkdir -p /home/coder/.codex && \
chown -R coder:coder home/coder/.codex
chown -R coder:coder /home/coder/.codex
RUN npm install -g @openai/codex

# ========= Gemini CLI =========
RUN mkdir -p /home/coder/.gemini && \
chown -R coder:coder home/coder/.gemini
chown -R coder:coder /home/coder/.gemini
RUN npm install -g @google/gemini-cli

# ========= GitHub Copilot CLI =========
RUN mkdir -p /home/coder/.copilot && \
chown -R coder:coder home/coder/.copilot
chown -R coder:coder /home/coder/.copilot
RUN curl -fsSL https://gh.io/copilot-install | bash || true

# Set back to coder user
Expand Down
Loading