Skip to content
Closed
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
14 changes: 14 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM mcr.microsoft.com/devcontainers/base:bookworm

RUN apt-get update \
&& apt-get install -y --no-install-recommends git-lfs ca-certificates curl \
&& git lfs install \
&& rm -rf /var/lib/apt/lists/*

# Node 20.x (change 20 to 18/22 if desired)
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get update \
&& apt-get install -y --no-install-recommends nodejs \
&& rm -rf /var/lib/apt/lists/*

RUN npm install -g @anthropic-ai/claude-code
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "Codespaces (Ubuntu) + Bun",

"build": { "dockerfile": "Dockerfile" },

"remoteUser": "vscode",

"postCreateCommand": "curl -fsSL https://bun.sh/install | bash",
"remoteEnv": {
"BUN_INSTALL": "/home/vscode/.bun",
"PATH": "/home/vscode/.bun/bin:${containerEnv:PATH}"
}
}