Spaces:
Running
Running
Trisha Tomy
commited on
Commit
·
cc42de8
1
Parent(s):
90940ac
Fix pip editable install EOFError by forcing no-input and reinstall
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -60,7 +60,7 @@ RUN pip install --no-cache-dir --upgrade pip setuptools wheel
|
|
60 |
|
61 |
# Install proxy-lite in "editable" mode directly from its GitHub repository.
|
62 |
# This explicitly tells pip to clone and link it, essential for its structure.
|
63 |
-
RUN pip install --no-cache-dir -e git+https://github.com/convergence-ai/proxy-lite.git#egg=proxy-lite
|
64 |
|
65 |
# --- END: Critical steps for proxy-lite and permissions ---
|
66 |
|
|
|
60 |
|
61 |
# Install proxy-lite in "editable" mode directly from its GitHub repository.
|
62 |
# This explicitly tells pip to clone and link it, essential for its structure.
|
63 |
+
RUN pip install --no-cache-dir --no-input --force-reinstall -e git+https://github.com/convergence-ai/proxy-lite.git#egg=proxy-lite
|
64 |
|
65 |
# --- END: Critical steps for proxy-lite and permissions ---
|
66 |
|