Skip to content
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

CVE-2024-6232 #34442

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/chromium/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Last modified: 2024-11-21T16:39:36.391539+00:00
# Last modified: 2024-11-25T12:39:36.391539+00:00
FROM demisto/python3-deb:3.11.10.117398

COPY requirements.txt .
Expand Down
9 changes: 8 additions & 1 deletion docker/sane-doc-reports/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ FROM demisto/python3-deb:3.11.10.117398
WORKDIR "/app"

SHELL ["/bin/bash", "-c"]

# Verify and remove Python 3.9 if present
RUN apt-get update && apt-get remove -y python3.9 python3.9-dev && rm -rf /var/lib/apt/lists/*

# Ensure Python 3.11 is default
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.11 1

RUN apt-get update -y -q && \
apt-get install -y -q nodejs npm gconf-service \
libasound2 libatk1.0-0 libatk-bridge2.0-0 \
Expand Down Expand Up @@ -32,4 +39,4 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git \
npm \
python3-dev \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*
Loading