-
Notifications
You must be signed in to change notification settings - Fork 25
feat(all): adaption of apollo on cuda 12+trt10 #57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 44-feature-add-jetpack-62-r3643-nx-support
Are you sure you want to change the base?
Conversation
| DOCKER_IMAGE_TAG_X86_64=${DOCKER_IMAGE_TAG_X86_64:="dev-x86_64-20.04-20250713_1555"} | ||
| DOCKER_IMAGE_TAG_X86_64_TESTING=${DOCKER_IMAGE_TAG_X86_64_TESTING:="dev-x86_64-20.04-20250710_2109"} | ||
| DOCKER_IMAGE_TAG_AARCH64=${DOCKER_IMAGE_TAG_AARCH64:="dev-aarch64-22.04-20251107_1200"} | ||
| [[ "$RELEASE_TARGET" == "20.04" ]] && DOCKER_IMAGE_TAG_AARCH64=${DOCKER_IMAGE_TAG_AARCH64:="dev-aarch64-20.04-20250714_2123"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The selection depends on the operating system and chip; a refactoring is required.
lykling
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are no major issues overall, you can double check the logic of the new dockerfile
| RUN apt-get update && apt-get install -y --no-install-recommends sudo gnupg2 curl ca-certificates \ | ||
| && rm -rf /var/lib/apt/lists/* /usr/local/bin/cmake /usr/local/share/cmake-3.14 | ||
|
|
||
| RUN apt update && DEBIAN_FRONTEND=noninteractive TZ="Asian/China" apt-get -y install tzdata |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Asian/China invalid,use Asia/Shanghai instead
| RUN bash /opt/apollo/installers/install_gpu_support.sh | ||
| RUN bash /opt/apollo/installers/install_release_deps.sh | ||
|
|
||
| RUN bash /opt/apollo/installers/post_install.sh dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Post install has an action to modify chfn for the cyber phase. Now, starting directly from the base image, we need to see if it is still necessary to execute it
add nx