-
Notifications
You must be signed in to change notification settings - Fork 645
[Build][Bugfix] Fix source code path to avoid reference error #726
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
Conversation
| rm -rf /var/cache/apt/* && \ | ||
| rm -rf /var/lib/apt/lists/* | ||
|
|
||
| WORKDIR /workspace |
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.
So this workspace is useless now? we better use /root as the default to keep the same with 0.8.4rc2 @Yikun
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.
Just FYI, vllm keep the entry path /workspace of the container.
https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile#L55
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.
Yes, we'd better follow vLLM repo to keep user experience, we can note some on 0.8.4rc2 and 0.8.5rc1 release note to show this.
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.
OK. I'm fine.
|
Please also add
to make sure This PR should also sync to v0.7.3 |
Signed-off-by: MengqingCao <[email protected]>
…#741) Backport and sync dockerfile change #726 This patch follow vLLM, move all source code into /vllm-workspace/, and keep /workspace as workdir. [1] https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile#L264C7-L264C23 [2] https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile#L52 Closes: #725 Signed-off-by: MengqingCao <[email protected]>
…roject#726) ### What this PR does / why we need it? Fix source code path to avoid reference error in docker image fix vllm-project#725 Signed-off-by: MengqingCao <[email protected]>
…roject#726) ### What this PR does / why we need it? Fix source code path to avoid reference error in docker image fix vllm-project#725 Signed-off-by: MengqingCao <[email protected]>
What this PR does / why we need it?
Fix source code path to avoid reference error in docker image
fix #725