Skip to content
Merged
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 scanners/semgrep/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version: "v3.1.0-alpha1"
appVersion: "1.106.0"
annotations:
versionApi: https://api.github.com/repos/semgrep/semgrep/releases/latest
supported-platforms: linux/amd64
supported-platforms: linux/amd64,linux/arm64
kubeVersion: ">=v1.11.0-0"
home: https://www.securecodebox.io/docs/scanners/semgrep
icon: https://www.securecodebox.io/img/integrationIcons/semgrep.svg # TODO: Add this
Expand Down
2 changes: 1 addition & 1 deletion scanners/ssh-audit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kubeVersion: ">=v1.11.0-0"
annotations:
versionApi: https://api.github.com/repos/jtesta/ssh-audit/releases/latest
# supported cpu architectures for which docker images for the scanner should be build
supported-platforms: linux/amd64
supported-platforms: linux/amd64,linux/arm64
keywords:
- security
- ssh
Expand Down
2 changes: 1 addition & 1 deletion scanners/sslyze/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ appVersion: "6.1.0"
kubeVersion: ">=v1.11.0-0"
annotations:
versionApi: https://api.github.com/repos/nabla-c0d3/sslyze/releases/latest
supported-platforms: linux/amd64
supported-platforms: linux/amd64,linux/arm64
keywords:
- security
- ssl
Expand Down
6 changes: 0 additions & 6 deletions scanners/sslyze/scanner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,9 @@
# SPDX-License-Identifier: Apache-2.0

ARG scannerVersion

FROM nablac0d3/sslyze:$scannerVersion

COPY wrapper.sh /wrapper.sh

USER root

RUN mkdir /home/securecodebox/

USER sslyze

ENTRYPOINT [ "sh", "/wrapper.sh" ]
Loading