[update] docker support for installation#33
Open
Thysrael wants to merge 1 commit intomit-han-lab:mainfrom
Open
[update] docker support for installation#33Thysrael wants to merge 1 commit intomit-han-lab:mainfrom
Thysrael wants to merge 1 commit intomit-han-lab:mainfrom
Conversation
This was referenced Feb 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces a Docker-based installation workflow to address environment inconsistency and dependency conflicts during the installation process.
Motivation
The original installation process for Quest involves complex system-level dependencies. Specifically, building
libraftand other custom CUDA kernels requires specific versions of:fmt)These requirements were not fully documented, often leading to installation failures on different host systems. By providing a standardized Docker environment, we encapsulate these dependencies, ensuring a "one-click" setup experience.
Key Changes
Dockerfile: A multi-stage-ready environment based on CUDA 12.4 and Ubuntu 22.04, pre-configured with the necessary Conda environment,cmake,ninja, and system libraries.README.md: Added a "Docker Installation" section as the recommended setup method, providing clear steps for building the image and running the container with GPU support.Validation
I have successfully verified this Docker-based installation on the following hardware:
On both platforms, the kernels (including
libraft) and thequestpackage compiled and ran without issues.Acknowledgements
First of all, thank you for developing such an excellent project! Quest is an amazing work, and I have found it incredibly valuable for my own research and development.
I'm contributing this Docker support to help more users get started with Quest quickly and to reduce the maintenance burden related to environment issues. I hope this enhancement is helpful to the community!