Skip to content

Commit

Permalink
update expat to fix critical CVEs (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
arikalon1 authored Oct 8, 2024
1 parent 6dfe7e8 commit 04cadbb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ ENV PATH="/app/venv/bin:$PATH"
RUN apt-get update && \
dpkg --add-architecture arm64

# We're installing here libexpat1, to upgrade the package to include a fix to 3 high CVEs. CVE-2024-45491,CVE-2024-45490,CVE-2024-45492
RUN apt-get update \
&& apt-get install -y --no-install-recommends libexpat1 \
&& rm -rf /var/lib/apt/lists/*

# Set the working directory
WORKDIR /app

Expand Down

0 comments on commit 04cadbb

Please sign in to comment.