Files
aiworker-agent/Dockerfile
Hector Ros 5707be2507
All checks were successful
Build and Push Agent / build (push) Successful in 29s
Switch to Bun runtime for Claude Code
Claude Code is optimized for Bun, use Bun instead of Node.js

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
2026-01-20 01:27:45 +01:00

25 lines
515 B
Docker

FROM oven/bun:1.3.6-alpine
# Install system dependencies
RUN apk add --no-cache \
git \
bash \
curl \
openssh-client \
ca-certificates
# Install Claude Code CLI with Bun
RUN bun install -g @anthropic-ai/claude-code
# Install common development tools with Bun
RUN bun install -g typescript
# Create workspace directory
WORKDIR /workspace
# Copy MCP configuration
COPY mcp-config.json /root/.claude/config.json
# Keep container running and ready for commands
CMD ["tail", "-f", "/dev/null"]