Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
// NOTE: VSC will copy some files post-config; .ssh/known_hosts, .gitconfig, etc
"mounts": [
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind",
"source=${localEnv:HOME}/.ssh,target=/home/${localEnv:USER}/.ssh,type=bind"
"source=${localEnv:HOME}/.ssh,target=/home/${localEnv:USER}/.ssh,type=bind",
"source=${localEnv:HOME}/.claude,target=/home/${localEnv:USER}/.claude,type=bind"
Comment thread
tleacmcsa marked this conversation as resolved.
],

// By setting this value to true, VSC will not run the entrypoint/CMD in the Dockerfile
Expand Down
6 changes: 6 additions & 0 deletions docker/Dockerfile.devcontainer
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@ RUN npm install -g @fission-ai/openspec@v1.4.1
# Formatting tooling for the pre-commit hook: Prettier formats the JavaScript SBMD
# drivers (see .prettierrc.yaml) and lint-staged runs it over staged files.
RUN npm install -g prettier@3.3.3 lint-staged@15.2.10

# User local installations
USER $BUILDER_USER

RUN curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/refs/heads/master/install.sh | sh
ENV PATH="/home/${BUILDER_USER}/.local/bin:${PATH}"
Loading