fix: update dependencies in Dockerfile
Browse files- Remove nvidia-triton-client due to compatibility issues
- Use tritonclient[all] for NVIDIA Triton support
- Maintain existing dependency structure
- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -118,8 +118,7 @@ RUN pip install --no-cache-dir \
|
|
| 118 |
google-api-core \
|
| 119 |
yarl \
|
| 120 |
aiohttp \
|
| 121 |
-
|
| 122 |
-
tritonclient && \
|
| 123 |
poetry config virtualenvs.create false && \
|
| 124 |
poetry install --no-dev --no-interaction --no-ansi
|
| 125 |
|
|
|
|
| 118 |
google-api-core \
|
| 119 |
yarl \
|
| 120 |
aiohttp \
|
| 121 |
+
tritonclient[all] && \
|
|
|
|
| 122 |
poetry config virtualenvs.create false && \
|
| 123 |
poetry install --no-dev --no-interaction --no-ansi
|
| 124 |
|