zhvzii commited on
Commit
bed3e6f
·
verified ·
1 Parent(s): 189096c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1 +1,6 @@
1
- FROM ghcr.io/1186258278/openclaw-zh:nightly
 
 
 
 
 
 
1
+ # Dockerfile 示例(仅作参考)
2
+ FROM node:22
3
+ WORKDIR /app
4
+ RUN git clone https://github.com/openclaw/openclaw.git .
5
+ RUN npm install
6
+ CMD ["npm", "start"]