Copenclaw / Dockerfile
conanholmes's picture
Create Dockerfile
3e39863 verified
raw
history blame contribute delete
310 Bytes
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"]