From 4046d58123b9c521516e3bd78c1619ccc0c8c59c Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Sun, 12 Apr 2026 14:46:41 -0400 Subject: [PATCH] feat: Install claude last for cheaper updates --- images/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/Dockerfile b/images/Dockerfile index f811b7e..6628a3a 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -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 && \ @@ -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"]