Update Dockerfile
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
|
@@ -1 +1,6 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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"]
|