-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Docker image with openssl package update (#58)
- Loading branch information
1 parent
9b4a3e6
commit effd229
Showing
2 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
general: | ||
vulnerabilities: | ||
# We do not use glibc | ||
# No fixes for these at this time | ||
- CVE-2019-25013 | ||
# We do not use sqlite-libs | ||
- CVE-2019-5827 | ||
# At the time of this comment, these were still under analysis | ||
- CVE-2021-3449 | ||
- CVE-2021-3450 | ||
- CVE-2021-20305 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
FROM registry.access.redhat.com/ubi8:8.3 | ||
RUN dnf -y install openssl | ||
COPY podmon /podmon | ||
ENTRYPOINT [ "/podmon" ] |