claw / Dockerfile
yzwwxm's picture
Update Dockerfile
56db339 verified
raw
history blame contribute delete
311 Bytes
FROM ghcr.io/1186258278/openclaw-zh:nightly
ENV OPENCLAW_STATE_DIR=/data/.openclaw \
OPENCLAW_CONFIG_PATH=/data/.openclaw/openclaw.json \
OPENCLAW_SKIP_CANVAS_HOST=1
WORKDIR /app
COPY start.sh /start.sh
COPY openclaw.json /template_openclaw.json
RUN chmod +x /start.sh
EXPOSE 7860
CMD ["/start.sh"]