mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-03 03:58:54 +00:00
Uninstall the preinstalled cmake in tensorrt image because it's too old (#1316)
This commit is contained in:
parent
a077ac8df5
commit
28759e2f6f
1 changed files with 2 additions and 1 deletions
|
|
@ -7,7 +7,8 @@ FROM nvcr.io/nvidia/tensorrt:19.02-py3
|
|||
ARG PYTHON_VERSION=3.5
|
||||
|
||||
ADD scripts /tmp/scripts
|
||||
RUN /tmp/scripts/install_ubuntu.sh -p ${PYTHON_VERSION} && /tmp/scripts/install_deps.sh && rm -rf /tmp/scripts
|
||||
RUN /tmp/scripts/install_ubuntu.sh -p ${PYTHON_VERSION} && /tmp/scripts/install_deps.sh && rm -rf /tmp/scripts \
|
||||
&& rm /usr/local/bin/cmake && rm /usr/local/bin/ctest && rm -r /usr/local/share/cmake-3.12
|
||||
|
||||
WORKDIR /root
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue