-
Notifications
You must be signed in to change notification settings - Fork 5.9k
fix: re-enable trivvy docker scan #4943
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
Codecov Report
@@ Coverage Diff @@
## main #4943 +/- ##
=======================================
Coverage 70.30% 70.30%
=======================================
Files 29 29
Lines 1677 1677
Branches 371 371
=======================================
Hits 1179 1179
Misses 424 424
Partials 74 74 Continue to review full report at Codecov.
|
✨ Coder.com for PR #4943 deployed! It will be updated on every commit.
|
f78ac6f
to
737df7b
Compare
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.
Awesome!
* fix: re-enable trivvy docker scan * wip * fixup * fixup * fixup
This PR re-enables the trivy Docker scan as part of our CI pipeline. With this, we will have trivy do a security check on our Docker image tagged
latest
so that we can catch any security vulnerabilities.Testing
Example scan: https://github.com/coder/code-server/runs/5428919398?check_suite_focus=true
Previous Context
@code-asher I were chatting about this. We want the scan to run on
latest
instead of the local build since the local build will use the newest dependencies. Instead, we want to check what's in production and ensure that it has no issues. We'll run this new workflow nightly (once a day) and check for any issues. This way, we can stay on top of the Docker image and fix things sooner.Fixes #4903