diff --git a/Triton_Inference_Server_Python_API/docker/Dockerfile b/Triton_Inference_Server_Python_API/docker/Dockerfile index dd28b017..b07b655c 100644 --- a/Triton_Inference_Server_Python_API/docker/Dockerfile +++ b/Triton_Inference_Server_Python_API/docker/Dockerfile @@ -40,8 +40,6 @@ COPY ./deps/requirements_vllm.txt /tmp/requirements_vllm.txt COPY ./deps/requirements_python_repl.txt /tmp/requirements_python_repl.txt -COPY ./deps/tritonserver-2.46.0.dev0-py3-none-any.whl /tmp/tritonserver-2.46.0.dev0-py3-none-any.whl - RUN pip install --timeout=2000 -r /tmp/requirements.txt # Finish pyright install @@ -51,8 +49,6 @@ RUN pyright --help RUN find /opt/tritonserver/python -maxdepth 1 -type f -name \ "tritonserver-*.whl" | xargs -I {} pip3 install --force-reinstall --upgrade {}[all] -RUN pip3 install --force-reinstall --upgrade /tmp/tritonserver-2.46.0.dev0-py3-none-any.whl[all] - ARG TRITON_CLI_TAG="0.0.8" RUN pip install git+https://github.com/triton-inference-server/triton_cli.git@${TRITON_CLI_TAG}