Spaces:
Running
Running
File size: 310 Bytes
3e39863 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM ghcr.io/1186258278/openclaw-zh:latest
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"] |