forked from RishabhK103/claude-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
31 lines (21 loc) · 1.19 KB
/
Dockerfile
File metadata and controls
31 lines (21 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# ─────────────────────────────────────────────────────────────
# Claude Code CLI — Development Container
# ─────────────────────────────────────────────────────────────
# This image provides a ready-to-explore environment for the
# leaked source. It does NOT produce a runnable build (the
# original build tooling was not included in the leak).
# ─────────────────────────────────────────────────────────────
FROM oven/bun:1-alpine AS base
WORKDIR /app
# Install OS-level dependencies used at runtime
RUN apk add --no-cache git ripgrep
# Copy manifests first for layer caching
COPY package.json bun.lockb* ./
# Install npm packages
RUN bun install --frozen-lockfile || bun install
# Copy source
COPY . .
# Typecheck (optional — fails loudly if deps are wrong)
# RUN bun run typecheck
# Default: drop into a shell for exploration
CMD ["sh"]