FROM node:22-bookworm RUN apt-get update && \ apt-get install -y git curl && \ rm -rf /var/lib/apt/lists/* WORKDIR /app RUN git clone https://github.com/openclaw/openclaw.git . RUN corepack enable RUN pnpm install ENV PORT=7860 EXPOSE 7860 CMD ["pnpm", "start"]