Bust Docker layer cache to fix CVE-2025-68973 (gpgv)#133
Open
willyguggenheim wants to merge 1 commit intoFusionAuth:developfrom
Open
Bust Docker layer cache to fix CVE-2025-68973 (gpgv)#133willyguggenheim wants to merge 1 commit intoFusionAuth:developfrom
willyguggenheim wants to merge 1 commit intoFusionAuth:developfrom
Conversation
The published image has gpgv 2.4.4-2ubuntu17.3 which is affected by CVE-2025-68973 (HIGH). The Dockerfile already runs apt-get upgrade but the cached layer prevents it from executing. This one-time cache bust forces a fresh apt-get update && upgrade on the next build.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
apt-get update && apt-get upgradeto run on the next build, picking up thegpgvfix (2.4.4-2ubuntu17.3 → 2.4.4-2ubuntu17.4)Motivation
The published
fusionauth/fusionauth-app:latestimage on Docker Hub hasgpgv2.4.4-2ubuntu17.3 which is affected by:The Dockerfile already has
apt-get -y upgradebut Docker layer caching prevents it from running. This one-line change invalidates the cached layer.Additional note
Trivy also reports two HIGH findings in
lz4-java1.8.0 (CVE-2025-12183 and CVE-2025-66566) bundled in the FusionAuth app zip fromfiles.fusionauth.io. These require updating the lz4-java dependency in the FusionAuth app build, which is outside the scope of this Dockerfile.Change
Test plan
fusionauth/fusionauth-app:lateston Docker Hub has CVE-2025-68973 via trivy scan--build-arg FUSIONAUTH_VERSION=1.62.1 --no-cache