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

SYS-622 trivy scan fixes - postfix-python, udp-nginx, wxcam-upload #163

Merged
merged 1 commit into from
Jul 3, 2024
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
5 changes: 5 additions & 0 deletions .image-gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ security_scan_trivy:
--exit-code 0 --format table --output medium-vulns.txt
- cat medium-vulns.txt
- echo CVE-2023-2253 > .trivyignore
# These are for blacklist image, there's a won't-fix note for zlib1g
- echo CVE-2023-31484 >> .trivyignore
- echo CVE-2023-45853 >> .trivyignore
# TODO remove this openssh bypass once repo is updated
- echo CVE-2024-6387 >> .trivyignore
- trivy image "${REGISTRY}/${IMAGE}:${TAG}"
cache:
paths: [ .trivycache ]
Expand Down
2 changes: 1 addition & 1 deletion images/postfix-python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docopt==0.6.2
PyMySQL==1.0.2
PyMySQL==1.1.1
SQLAlchemy==1.3.23
2 changes: 1 addition & 1 deletion images/udp-nginx-proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.25.3-alpine
FROM nginx:1.27.0-alpine
MAINTAINER Rich Braun "[email protected]"
ARG BUILD_DATE
ARG VCS_REF
Expand Down
2 changes: 1 addition & 1 deletion images/wxcam-upload/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM instantlinux/proftpd:1.3.7e-r0
FROM instantlinux/proftpd:1.3.8b-r2
MAINTAINER Rich Braun "[email protected]"
ARG BUILD_DATE
ARG VCS_REF
Expand Down
4 changes: 2 additions & 2 deletions images/wxcam-upload/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ sources:
- https://github.com/instantlinux/docker-tools
- https://github.com/proftpd/proftpd
type: application
version: 0.1.2
appVersion: "1.3.7e-r0"
version: 0.1.3
appVersion: "1.3.8b-r2"
dependencies:
- name: chartlib
version: 0.1.8
Expand Down
Loading