-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (16 loc) · 825 Bytes
/
Copy pathDockerfile
File metadata and controls
23 lines (16 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM ubuntu:resolute-20260724.1@sha256:678c6550cc43645e08669028bc177f50be4e7c5b8cca677067b1914d4afc7a03
RUN apt-get update \
&& apt-get full-upgrade -y \
&& apt-get install -y --no-install-recommends \
curl git jq nodejs npm python3 ripgrep tmux vim wget zsh \
&& rm -rf /var/lib/apt/lists/*
RUN npm install -g context-mode@1.0.169 @anthropic-ai/claude-code@2.1.227
# Renovate tracking for GitHub releases (mise)
# renovate: datasource=github-releases depName=jdx/mise
ENV MISE_VERSION=v2026.8.5
RUN curl https://mise.run | MISE_INSTALL_PATH=/usr/bin/mise MISE_VERSION=$MISE_VERSION sh
RUN curl -fsSL https://antigravity.google/cli/install.sh | bash -s -- -d /usr/bin
USER ubuntu
RUN echo 'eval "$(mise activate bash)"' >> ~/.bashrc
RUN ln -s ~/.claude/.claude.json ~/.claude.json
WORKDIR /workdir