Skip to content

Commit bf6aad2

Browse files
Merge branch 'main' into rishabh-gupta/ui/ember-upgrade-to-v4.12
2 parents 54ea162 + f234070 commit bf6aad2

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

.changelog/23078.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:security
2+
security: upgrade internal packages of RHEL builds to include security fixes
3+
```

.release/security-scan.hcl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ binary {
8181
suppress {
8282
vulnerabilities = [
8383
"GO-2022-0635", // github.com/aws/[email protected]
84+
"CVE-2025-46394",
85+
"CVE-2024-58251",
86+
"CVE-2024-58251",
87+
"CVE-2025-46394",
88+
"CVE-2025-47268",
89+
"CVE-2025-48964",
90+
"CVE-2025-10966",
91+
"CVE-2025-30258",
8492
]
8593

8694
paths = [

Dockerfile

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,25 @@ COPY LICENSE /licenses/mozilla.txt
259259
# Its shasum is hardcoded. If you upgrade the dumb-init version you'll need to
260260
# also update the shasum.
261261
RUN set -eux && \
262-
microdnf install -y ca-certificates shadow-utils gnupg libcap openssl iputils jq iptables wget unzip tar && \
262+
microdnf update -y && \
263+
microdnf install -y \
264+
ca-certificates \
265+
shadow-utils \
266+
gnupg \
267+
libcap \
268+
openssl \
269+
iputils \
270+
jq \
271+
iptables \
272+
wget \
273+
unzip \
274+
tar && \
275+
microdnf clean all && \
263276
wget -O /usr/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.5/dumb-init_1.2.5_x86_64 && \
264277
echo 'e874b55f3279ca41415d290c512a7ba9d08f98041b28ae7c2acb19a545f1c4df /usr/bin/dumb-init' > dumb-init-shasum && \
265278
sha256sum --check dumb-init-shasum && \
266279
chmod +x /usr/bin/dumb-init
280+
267281

268282
# Create a non-root user to run the software. On OpenShift, this
269283
# will not matter since the container is run as a random user and group

0 commit comments

Comments
 (0)