Spaces:
Sleeping
Sleeping
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -4,9 +4,9 @@ FROM agent0ai/agent-zero:latest
|
|
| 4 |
|
| 5 |
USER root
|
| 6 |
|
| 7 |
-
# 1. Install dependencies
|
| 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
|
|
|
|
| 4 |
|
| 5 |
USER root
|
| 6 |
|
| 7 |
+
# 1. Install dependencies including python3-pip
|
| 8 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 9 |
+
curl jq python3-pip \
|
| 10 |
&& rm -rf /var/lib/apt/lists/*
|
| 11 |
|
| 12 |
RUN pip install --no-cache-dir --break-system-packages marimo fastapi uvicorn requests
|