Skip to content
Open
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ RUN npm install -g openclaw@2026.2.3 \
# Create OpenClaw directories
# Legacy .clawdbot paths are kept for R2 backup migration
RUN mkdir -p /root/.openclaw \
&& mkdir -p /root/clawd \
&& mkdir -p /root/clawd/skills
&& mkdir -p /root/.openclaw/workspace \
&& mkdir -p /root/.openclaw/workspace/skills

# Copy startup script
# Build cache bust: 2026-02-06-v29-sync-workspace
COPY start-openclaw.sh /usr/local/bin/start-openclaw.sh
RUN chmod +x /usr/local/bin/start-openclaw.sh

# Copy custom skills
COPY skills/ /root/clawd/skills/
COPY skills/ /root/.openclaw/workspace/skills/

# Set working directory
WORKDIR /root/clawd
Expand Down