Spaces:
Runtime error
Runtime error
Paijo commited on
Add Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
FROM node:22-slim
|
| 2 |
|
| 3 |
-
# Create app directory
|
| 4 |
WORKDIR /home/node/openclaw
|
| 5 |
|
| 6 |
# Install OpenClaw globally
|
|
@@ -12,8 +12,5 @@ ENV OPENCLAW_NODE_MODE=true
|
|
| 12 |
# Expose default Gateway port
|
| 13 |
EXPOSE 18789
|
| 14 |
|
| 15 |
-
# Set working directory for OpenClaw
|
| 16 |
-
WORKDIR /home/node/openclaw
|
| 17 |
-
|
| 18 |
# Command to start the Gateway
|
| 19 |
CMD ["openclaw", "gateway", "--port", "18789"]
|
|
|
|
| 1 |
FROM node:22-slim
|
| 2 |
|
| 3 |
+
# Create app directory and set working directory
|
| 4 |
WORKDIR /home/node/openclaw
|
| 5 |
|
| 6 |
# Install OpenClaw globally
|
|
|
|
| 12 |
# Expose default Gateway port
|
| 13 |
EXPOSE 18789
|
| 14 |
|
|
|
|
|
|
|
|
|
|
| 15 |
# Command to start the Gateway
|
| 16 |
CMD ["openclaw", "gateway", "--port", "18789"]
|