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
4 changes: 4 additions & 0 deletions images/base/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
FROM buildpack-deps:trixie-curl

RUN apt-get update \
&& apt-get install -y --no-install-recommends tmux \
&& rm -rf /var/lib/apt/lists/*

# Default Prettier configuration (fallback for projects without .prettierrc)
COPY .prettierrc /workspaces/.prettierrc
3 changes: 2 additions & 1 deletion images/base/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"version": "latest",
"ppa": "false"
},
"ghcr.io/devcontainers/features/node:1": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:2": {
"version": "24"
},
"ghcr.io/shokkunrf/devcontainer-features/claude-code:1": {},
Expand Down
2 changes: 2 additions & 0 deletions images/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ Base devcontainer image with common tools.
| --- | --- |
| common-utils (`developer` user) | [devcontainers/features/common-utils](https://github.com/devcontainers/features/tree/main/src/common-utils) |
| git | [devcontainers/features/git](https://github.com/devcontainers/features/tree/main/src/git) |
| GitHub CLI (`gh`) | [devcontainers/features/github-cli](https://github.com/devcontainers/features/tree/main/src/github-cli) |
| Node.js 24 + npm | [devcontainers/features/node](https://github.com/devcontainers/features/tree/main/src/node) |
| prettier | [prettier](https://www.npmjs.com/package/prettier) |
| Claude Code | [@anthropic-ai/claude-code](https://www.npmjs.com/package/@anthropic-ai/claude-code) |
| Gemini CLI | [@google/gemini-cli](https://www.npmjs.com/package/@google/gemini-cli) |
| tmux | Debian apt |

## Testing

Expand Down
2 changes: 2 additions & 0 deletions images/base/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ check "prettier" prettier --version
check "claude" claude --version
check "gemini" gemini --version
check "wd" wd --version
check "gh" gh --version
check "tmux" tmux -V

# Config checks
check "prettierrc" test -f /workspaces/.prettierrc
Expand Down