Skip to content

Commit

Permalink
[Issue #3855] Address anchore issues (#3856)
Browse files Browse the repository at this point in the history
## Summary
Fixes #3855

### Time to review: __3 mins__

## Changes proposed
Upgrade the debian library to get a patched version, ignore the esbuild
issue for now since we don't install/call it and it's low likelihood of
exploit.
  • Loading branch information
mdragon authored Feb 11, 2025
1 parent d49c2fc commit f4990b0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .grype.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ ignore:
# Issue with asyncio library in Python, should be fixed
# in 3.13.2 (early February 2025)
- vulnerability: CVE-2024-12254

# https://github.com/HHS/simpler-grants-gov/issues/3855
# esbuild fixed in a new minor version, but we don't install/call esbuild directly
- vulnerability: GHSA-67mh-4wv8-2f99
1 change: 1 addition & 0 deletions analytics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ RUN apt-get update \
libpq-dev \
postgresql \
wget \
libtasn1-6 \
# Reduce the image size by clear apt cached lists
# Complies with https://github.com/codacy/codacy-hadolint/blob/master/codacy-hadolint/docs/description/DL3009.md
&& rm -fr /var/lib/apt/lists/* \
Expand Down
1 change: 1 addition & 0 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ RUN apt-get update \
libpq-dev \
postgresql \
wget \
libtasn1-6 \
# Reduce the image size by clear apt cached lists
# Complies with https://github.com/codacy/codacy-hadolint/blob/master/codacy-hadolint/docs/description/DL3009.md
&& rm -fr /var/lib/apt/lists/* \
Expand Down
1 change: 1 addition & 0 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ WORKDIR /frontend
RUN apt-get update \
&& apt-get upgrade -y --no-install-recommends \
&& apt-get install -y --only-upgrade libc-bin libc6 \
&& apt-get install --no-install-recommends --yes libtasn1-6 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit f4990b0

Please sign in to comment.