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
6 changes: 3 additions & 3 deletions images/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,6 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
-a "export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \
-x

# Install Claude
RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}

# Install Playwright and Chromium browser if enabled
RUN if [ "$EXTRA_PLAYWRIGHT" = "1" ]; then \
npm install -g playwright && \
Expand Down Expand Up @@ -199,6 +196,9 @@ RUN if [ "$EXTRA_ENTIRE" = "1" ]; then \
rm -rf /tmp/go.tar.gz /tmp/goroot /tmp/gopath; \
fi

# Install Claude
RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}

# Use tini as init process to properly reap zombie processes
ENTRYPOINT ["/usr/bin/tini", "--"]
CMD ["claude"]
Loading