Update Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
CHANGED
|
@@ -10,10 +10,17 @@ RUN pip3 install --no-cache-dir huggingface_hub --break-system-packages
|
|
| 10 |
# 2. ๅฎ่ฃ
OpenClaw
|
| 11 |
RUN npm install -g openclaw@latest --unsafe-perm
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
# 3. ่ฎพ็ฝฎๅทฅไฝ็ฎๅฝๅนถๆท่ด่ๆฌ
|
| 14 |
WORKDIR /app
|
| 15 |
COPY sync.py .
|
| 16 |
COPY start-openclaw.sh .
|
|
|
|
| 17 |
RUN chmod +x start-openclaw.sh
|
| 18 |
|
| 19 |
# 4. ็ฏๅขๅ้
|
|
|
|
| 10 |
# 2. ๅฎ่ฃ
OpenClaw
|
| 11 |
RUN npm install -g openclaw@latest --unsafe-perm
|
| 12 |
|
| 13 |
+
# ๅจ Dockerfile ไธญ็คบไพ
|
| 14 |
+
RUN npm install -g clawhub
|
| 15 |
+
RUN clawhub install liang-tavily-search
|
| 16 |
+
RUN clawhub install agent-browser
|
| 17 |
+
RUN apt-get update && apt-get install -y --no-install-recommends google-chrome-stable
|
| 18 |
+
|
| 19 |
# 3. ่ฎพ็ฝฎๅทฅไฝ็ฎๅฝๅนถๆท่ด่ๆฌ
|
| 20 |
WORKDIR /app
|
| 21 |
COPY sync.py .
|
| 22 |
COPY start-openclaw.sh .
|
| 23 |
+
COPY tavily_search.py ./scripts
|
| 24 |
RUN chmod +x start-openclaw.sh
|
| 25 |
|
| 26 |
# 4. ็ฏๅขๅ้
|