TheEdict commited on
Commit
6919e4b
·
verified ·
1 Parent(s): 9a03317

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -1,16 +1,15 @@
1
  # Marimo Zero - Agent Zero + Marimo + OmniRoute
2
- # Clean minimal setup
3
 
4
  FROM agent0ai/agent-zero:latest
5
 
6
  USER root
7
 
8
- # 1. Install dependencies
9
  RUN apt-get update && apt-get install -y --no-install-recommends \
10
- curl jq python3-pip \
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
- RUN pip install --no-cache-dir marimo fastapi uvicorn requests
14
 
15
  # 2. Install OmniRoute
16
  RUN npm install -g omniroute
 
1
  # Marimo Zero - Agent Zero + Marimo + OmniRoute
 
2
 
3
  FROM agent0ai/agent-zero:latest
4
 
5
  USER root
6
 
7
+ # 1. Install dependencies (Kali needs --break-system-packages)
8
  RUN apt-get update && apt-get install -y --no-install-recommends \
9
+ curl jq \
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
+ RUN pip install --no-cache-dir --break-system-packages marimo fastapi uvicorn requests
13
 
14
  # 2. Install OmniRoute
15
  RUN npm install -g omniroute