-
Notifications
You must be signed in to change notification settings - Fork 538
[v0.7.3] Add openEuler based container image #665
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
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.
For v0.7.3, please reference with #662
Dockerfile.openEuler
Outdated
| ARG COMPILE_CUSTOM_KERNELS=1 | ||
|
|
||
| ENV COMPILE_CUSTOM_KERNELS=${COMPILE_CUSTOM_KERNELS} |
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.
This shouldn't be enabled in v0.7.3
Dockerfile.openEuler
Outdated
| RUN yum update -y && \ | ||
| yum install -y python3-pip git vim wget net-tools gcc gcc-c++ make cmake numactl-devel && \ | ||
| rm -rf /var/cache/yum &&\ | ||
| rm -rf /tmp/* |
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.
not sure why tmp is here, it's a danger behavior to clean up other path beside yum related. rm -rf /var/cache/yum or yum clean all is fine
|
The way to fix DCO is reset to first commit and amend DCO (DCO require -s sgin off in each commits) |
Signed-off-by: Icey <1790571317@qq.com>
| labels: ${{ steps.meta.outputs.labels }} | ||
| tags: ${{ steps.meta.outputs.tags }} | ||
| file: Dockerfile.openEuler | ||
| # TODO: support and enable custom ops build for openEuler |
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.
no need for this TODO
What this PR does / why we need it?
Provide users with openEuler-based vllm images for vllm v0.7.3
Does this PR introduce any user-facing change?
None
How was this patch tested?