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: 4 additions & 1 deletion src/claude_isolated/data/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,17 @@ USER claude
ARG UV_VERSION=0.10.11
RUN curl -LsSf https://astral.sh/uv/${UV_VERSION}/install.sh | sh

# Install mise
RUN curl https://mise.run | sh

# Install Claude Code
ARG CLAUDE_VERSION=2.1.77
RUN curl -fsSL https://claude.ai/install.sh -o /tmp/install-claude.sh \
&& bash /tmp/install-claude.sh ${CLAUDE_VERSION} \
&& rm /tmp/install-claude.sh

# uv and claude on PATH
ENV PATH="/home/claude/bin:/home/claude/.local/bin:/home/claude/.claude/local/bin:$PATH"
ENV PATH="/home/claude/bin:/home/claude/.local/bin:/home/claude/.claude/local/bin:/home/claude/.local/share/mise/shims:$PATH"

# Use multiple colours(!)
ENV TERM=xterm-256color
Expand Down