Open_claw / Dockerfile
AgentCrafter's picture
sfgh
e170190 verified
Raw
History Blame Contribute Delete
277 Bytes
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"]