Spaces:
Paused
Paused
Arshit Malik commited on
Commit ·
a326bb7
1
Parent(s): 4d9a3de
fix: pin cmdop<=2026.3.20 to match openclaw 2026.3.20
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -6,7 +6,11 @@ RUN apt-get update && apt-get install -y \
|
|
| 6 |
|
| 7 |
RUN curl -fsSL https://ollama.com/install.sh | sh
|
| 8 |
|
| 9 |
-
RUN pip install --no-cache-dir
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
RUN printf 'server {\n listen 7860;\n location / {\n proxy_pass http://127.0.0.1:8080;\n proxy_http_version 1.1;\n proxy_set_header Upgrade $http_upgrade;\n proxy_set_header Connection "upgrade";\n proxy_set_header Host $host;\n }\n}\n' > /etc/nginx/sites-available/default
|
| 12 |
|
|
|
|
| 6 |
|
| 7 |
RUN curl -fsSL https://ollama.com/install.sh | sh
|
| 8 |
|
| 9 |
+
RUN pip install --no-cache-dir \
|
| 10 |
+
"cmdop<=2026.3.20" \
|
| 11 |
+
tenacity \
|
| 12 |
+
"openclaw==2026.3.20" \
|
| 13 |
+
huggingface_hub
|
| 14 |
|
| 15 |
RUN printf 'server {\n listen 7860;\n location / {\n proxy_pass http://127.0.0.1:8080;\n proxy_http_version 1.1;\n proxy_set_header Upgrade $http_upgrade;\n proxy_set_header Connection "upgrade";\n proxy_set_header Host $host;\n }\n}\n' > /etc/nginx/sites-available/default
|
| 16 |
|