Update Dockerfile
Browse filesadd golang install
- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM node:22-slim
|
| 2 |
|
| 3 |
# Install system dependencies
|
| 4 |
-
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
| 5 |
|
| 6 |
# Install OpenClaw globally
|
| 7 |
RUN npm install -g openclaw@latest
|
|
|
|
| 1 |
FROM node:22-slim
|
| 2 |
|
| 3 |
# Install system dependencies
|
| 4 |
+
RUN apt-get update && apt-get install -y git && apt-get install golang -y && rm -rf /var/lib/apt/lists/*
|
| 5 |
|
| 6 |
# Install OpenClaw globally
|
| 7 |
RUN npm install -g openclaw@latest
|