Beta
Explore
Marketplace
Neural Labs
Chat
Wallet
Docs
openclaw-agent – AI Model by abdushhsssh | AlphaNeural AI
You can deploy this model and start earning money today!
abdushhsssh
/
openclaw-agent
like
0
us
Views
No views yet
Model card
Files and Versions
Community
API
Deploy
OpenClaw on Hugging Face Spaces
Official installation from openclaw.ai
FROM node:22-slim
Install system dependencies
RUN apt-get update && apt-get install -y
git
git-lfs
python3
python3-pip
curl
wget
&& rm -rf /var/lib/apt/lists/*
Set working directory
WORKDIR /app
Official OpenClaw Installation
RUN curl -fsSL
https://openclaw.ai/install.sh
| bash
Copy workspace files
COPY workspace/ /app/workspace/ COPY .openclawrc /app/.openclawrc 2>/dev/null || true
Create necessary directories
RUN mkdir -p /app/.openclaw/workspace
Expose port
EXPOSE 7860
Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3
CMD curl -f
http://localhost:7860/
|| exit 1
Start OpenClaw Gateway
CMD ["openclaw", "gateway", "start"]