Files
nas-tools/claude-dev/Dockerfile
T
Gan, Jimmy 801616acda feat: add claude-dev docker setup & update openclaw config
Added Dockerfile and docker-compose.yml for claude-dev on NAS. Updated openclaw docker-compose.yml to include --allow-unconfigured argument.
2026-02-20 09:19:36 +08:00

6 lines
233 B
Docker

FROM node:20-slim
RUN apt-get update && apt-get install -y git openssh-client tmux && rm -rf /var/lib/apt/lists/*
RUN npm install -g @anthropic-ai/claude-code
WORKDIR /workspace
ENTRYPOINT ["tmux", "new-session", "-A", "-s", "main"]