leemissen commited on
Commit
75adfe0
·
verified ·
1 Parent(s): e2c062b

Update Dockerfile

Browse files

add golang install

Files changed (1) hide show
  1. 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