-
Notifications
You must be signed in to change notification settings - Fork 242
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
fix: [NPM] [CVEs] Update NPM Linux Dockerfile to Fix Ubuntu Vulnerabilities #3439
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.
Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.
/azp run Azure Container Networking PR |
/azp run NPM Conformance Tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run NPM Scale Test |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
Running a package upgrade in the build is generally a bad idea - you will get something different every time. And if you do a global |
I see that makes sense. We needed updates to libc-bin, libc6, and libtasn1-6 packages specifically so I can make that change
|
/azp run Azure Container Networking PR |
/azp run NPM Conformance Tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run NPM Scale Test |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
…lities (#3439) * updated npm linux dockerfile to run apt-get upgrade to fix ubuntu cves * updated to install specific packages
* fix: [NPM] [CVEs] Update NPM Linux Dockerfile to Fix Ubuntu Vulnerabilities (#3439) * updated npm linux dockerfile to run apt-get upgrade to fix ubuntu cves * updated to install specific packages * fix: [NPM] [CVEs] Update NPM Linux Dockerfile to Fix Ubuntu CVE-2024-12243 (#3461) resolved npm CVE-2024-12243
Reason for Change:
Updated NPM Linux dockerfile to manually run
apt-get install
to get latest versions of Ubuntu packages (libc-bin, libc6, and libtasn1-6) to resolve the following Ubuntu CVEs in NPM's base image.Once the base image is updated to fixes we can remove this manually installation.
libc-bin CVE-2025-0395
libc6 CVE-2025-0395
libtasn1-6 CVE-2024-12133
Trivy scan of NPM on current v1.5 release:
Trivy scan of NPM after dockerfile update:
Issue Fixed:
Requirements:
Notes: