Skip to content

Commit a5ba715

Browse files
Saving new files for 25.9.1.8-cap
1 parent 9ded62f commit a5ba715

File tree

4 files changed

+6
-31
lines changed

4 files changed

+6
-31
lines changed

repo-integrations/wss-ghe-app/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mend/base-repo-controller:25.10.1.2
1+
FROM mend/base-repo-controller:25.9.1.8-cap
22

33
ARG USER_NAME=user
44
ARG USER_ID=1542

repo-integrations/wss-remediate/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mend/base-repo-remediate:25.10.1.2
1+
FROM mend/base-repo-remediate:25.9.1.8-cap
22

33
# The containerbase supports custom user but Renovate requires ubuntu
44
ARG USER_NAME=ubuntu

repo-integrations/wss-scanner/docker/Dockerfile

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mend/base-repo-scanner:25.10.1.2
1+
FROM mend/base-repo-scanner:25.9.1.8-cap
22

33
ARG USER_NAME=wss-scanner
44
ARG USER_ID=1000
@@ -22,17 +22,12 @@ SHELL ["/bin/bash", "-c"]
2222
RUN echo "Downloading PSB version 8.1"
2323
ARG PSB_URL=https://downloads.mend.io/production/sca/pre-scan-builder/25.8.1/linux_amd64/psb
2424
RUN curl $PSB_URL --create-dirs -o /psb/bin/psb && chmod 0775 -R /psb
25-
# ┌────────────┬────────────┬────────────────────────────────────────────────────┐
26-
# │ Severity │ Count │ CVEs │
27-
# ├────────────┼────────────┼────────────────────────────────────────────────────┤
28-
# │ High │ 2 │ CVE-2025-47907, CVE-2024-34156 │
29-
# └────────────┴────────────┴────────────────────────────────────────────────────┘
3025
ENV PATH=$PATH:/psb/bin/
3126

3227
# Download the mend sca tool
3328
#--build-arg $SCA_TOOL_URL=URL
3429
USER 0
35-
ARG SCA_TOOL_URL=https://downloads.mend.io/production/sca/sca-wrapper/25.9.1.1/linux_amd64/sca-wrapper
30+
ARG SCA_TOOL_URL=https://downloads.mend.io/production/sca/sca-wrapper/25.8.2.3/linux_amd64/sca-wrapper
3631
RUN echo "Downloading Mend SCA tool [$SCA_TOOL_URL]"
3732
RUN curl $SCA_TOOL_URL --create-dirs -o /sca-wrapper/bin/sca-wrapper && chmod 0777 -R /sca-wrapper
3833
ENV MEND_SCA_BIN_DIR=/sca-wrapper/bin
@@ -41,22 +36,8 @@ ENV MEND_SCA_SCAN_PRINT_ENGINE_LOGS=true
4136
USER ${USER_ID}
4237
RUN sca_tool_version="$(sca-wrapper version)" && echo "Mend-SCA-Tool Version:" $sca_tool_version
4338
RUN sca-wrapper init
44-
# ┌────────────┬────────────┬────────────────────────────────────────────────────┐
45-
# │ Severity │ Count │ CVEs │
46-
# ├────────────┼────────────┼────────────────────────────────────────────────────┤
47-
# │ Critical │ 1 │ CVE-2023-42282 │
48-
# ├────────────┼────────────┼────────────────────────────────────────────────────┤
49-
# │ High │ 3 │ CVE-2024-29415, CVE-2024-21538, CVE-2022-25883 │
50-
# └────────────┴────────────┴────────────────────────────────────────────────────┘
5139
USER 0
5240
RUN chmod 0777 -R /sca-wrapper
53-
# ┌────────────┬────────────┬───────────────────────────────────────────────────────────────────┐
54-
# │ Severity │ Count │ CVEs │
55-
# ├────────────┼────────────┼───────────────────────────────────────────────────────────────────┤
56-
# │ High │ 12 │ CVE-2025-22869, CVE-2025-47907, CVE-2025-47907, CVE-2024-34156 │
57-
# │ │ │ CVE-2025-47907, CVE-2025-22874, CVE-2025-30204, CVE-2025-47907 │
58-
# │ │ │ CVE-2024-7254, CVE-2022-3510, CVE-2022-3509, CVE-2022-3171 │
59-
# └────────────┴────────────┴───────────────────────────────────────────────────────────────────┘
6041

6142
# Download the SAST CLI and set it in $PATH, can be replaced by:
6243
#--build-arg SASTCLI=URL
@@ -67,12 +48,6 @@ ENV PATH=$PATH:/sast/bin
6748

6849
### copy folder
6950
COPY docker-image-scanner/ /
70-
# ┌────────────┬────────────┬─────────────────────────────────────────────────────────────────┐
71-
# │ Severity │ Count │ CVEs │
72-
# ├────────────┼────────────┼─────────────────────────────────────────────────────────────────┤
73-
# │ High │ 7 │ CVE-2025-58056, CVE-2024-7254, CVE-2025-58057, CVE-2023-3894 │
74-
# │ │ │ CVE-2022-3510, CVE-2022-3509, CVE-2022-3171 │
75-
# └────────────┴────────────┴─────────────────────────────────────────────────────────────────┘
7651

7752

7853
RUN chmod 755 /start.sh

repo-integrations/wss-scanner/docker/Dockerfilefull

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mend/base-repo-scanner:25.10.1.2-full
1+
FROM mend/base-repo-scanner:25.9.1.8-cap-full
22

33
ARG USER_NAME=wss-scanner
44
ARG USER_ID=1000
@@ -25,7 +25,7 @@ ENV PATH=$PATH:/psb/bin/
2525
# Download the mend sca tool
2626
#--build-arg $SCA_TOOL_URL=URL
2727
USER 0
28-
ARG SCA_TOOL_URL=https://downloads.mend.io/production/sca/sca-wrapper/25.9.1.1/linux_amd64/sca-wrapper
28+
ARG SCA_TOOL_URL=https://downloads.mend.io/production/sca/sca-wrapper/25.8.2.3/linux_amd64/sca-wrapper
2929
RUN echo "Downloading Mend SCA tool [$SCA_TOOL_URL]"
3030
RUN curl $SCA_TOOL_URL --create-dirs -o /sca-wrapper/bin/sca-wrapper && chmod 0775 -R /sca-wrapper
3131
ENV MEND_SCA_BIN_DIR=/sca-wrapper/bin

0 commit comments

Comments
 (0)