Skip to content

Commit 8c05a01

Browse files
committed
SYS-598 improve security of several images using trivy
1 parent f797f05 commit 8c05a01

11 files changed

Lines changed: 16 additions & 14 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ easy. Contents:
1717
| ssl | PKI certificate tools (deprecated by k8s) |
1818
| stacks | container resources in docker-compose format |
1919

20-
Find images at [docker hub/instantlinux](https://hub.docker.com/r/instantlinux/).
20+
Find images at [docker hub/instantlinux](https://hub.docker.com/r/instantlinux/). Each image is scanned for published CVE vulnerabilities by (trivy)[https://trivy.dev/] before promotion to Docker Hub.
21+
2122
Find a lot more details about the Kubernetes bare-metal installer in [k8s/README](k8s/README.md).
2223

2324
### Kubernetes capabilities

images/blacklist/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ENV DEBIAN_FRONTEND=noninteractive \
2020
ARG RBLDNSD_VERSION=1.0~20210120-2
2121

2222
COPY src/ /root/
23-
RUN apt-get -yq update && \
23+
RUN apt-get -yq update && apt-get -y upgrade && \
2424
apt-get -yq --no-install-recommends install \
2525
cron curl rbldnsd=$RBLDNSD_VERSION perl libdbd-mysql-perl \
2626
mariadb-client && \

images/haproxy-keepalived/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
88
org.label-schema.vcs-ref=$VCS_REF \
99
org.label-schema.vcs-url=https://github.com/instantlinux/docker-tools
1010

11-
ARG KEEPALIVED_VERSION=2.2.7-r2
11+
ARG KEEPALIVED_VERSION=2.2.8-r0
1212
ENV KEEPALIVE_CONFIG_ID=main \
1313
PORT_HAPROXY_STATS=8080 \
1414
STATS_ENABLE=yes \

images/haproxy-keepalived/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ sources:
77
- https://github.com/haproxy/haproxy
88
- https://github.com/acassen/keepalived
99
type: application
10-
version: 0.1.10
11-
appVersion: "2.8.1-alpine-2.2.7-r2"
10+
version: 0.1.11
11+
appVersion: "2.8.1-alpine-2.2.8-r0"
1212
dependencies:
1313
- name: chartlib
1414
version: 0.1.8

images/mythtv-backend/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ ARG PPA_BRANCH=32
2929
ARG MYTHLINK_SHA=459cb8b60adae4b631a95a9cfb1b41dcb959cc4a0b9053582a711d58b8d8a0d2
3030

3131
RUN \
32-
apt-get -yq update && apt-get install -yq gnupg locales wget && \
32+
apt-get -yq update && apt-get -y upgrade && \
33+
apt-get install -yq gnupg locales wget && \
3334
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com $APT_KEY && \
3435
echo "deb $MYTHTV_PPA/ubuntu jammy main" \
3536
> /etc/apt/sources.list.d/mythbuntu.list && \

images/nagios/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
1111
ARG NAGIOS_VERSION=4.4.13-r0
1212
ARG NAGIOS_GID=1000
1313
ARG NAGIOS_UID=999
14-
ARG PLUGINS_VERSION=2.4.5-r0
14+
ARG PLUGINS_VERSION=2.4.5-r2
1515
ARG WWW_UID=33
1616
ENV AUTHORIZED_USERS=nagiosadmin \
1717
CONFIG_CHECK=yes \

images/openldap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
88
org.label-schema.vcs-ref=$VCS_REF \
99
org.label-schema.vcs-url=https://github.com/instantlinux/docker-tools
1010

11-
ARG OPENLDAP_VERSION=2.6.4-r3
11+
ARG OPENLDAP_VERSION=2.6.5-r0
1212
ENV SLAPD_DN_ATTR=uid \
1313
SLAPD_FQDN=example.com \
1414
SLAPD_LOG_LEVEL=Config,Stats \

images/openldap/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ sources:
66
- https://github.com/instantlinux/docker-tools
77
- https://git.openldap.org/openldap/openldap
88
type: application
9-
version: 0.1.3
10-
appVersion: "2.6.4-r3"
9+
version: 0.1.4
10+
appVersion: "2.6.5-r0"
1111
dependencies:
1212
- name: chartlib
1313
version: 0.1.8

images/rsyslogd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
88
org.label-schema.vcs-ref=$VCS_REF \
99
org.label-schema.vcs-url=https://github.com/instantlinux/docker-tools
1010

11-
ARG RSYSLOG_VERSION=8.2306.0-r0
11+
ARG RSYSLOG_VERSION=8.2306.0-r2
1212
ENV TZ=UTC
1313
RUN apk add --update gzip logrotate rsyslog=$RSYSLOG_VERSION \
1414
rsyslog-mysql=$RSYSLOG_VERSION tar xz && \

images/rsyslogd/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ sources:
66
- https://github.com/instantlinux/docker-tools
77
- https://github.com/rsyslog/rsyslog
88
type: application
9-
version: 0.1.8
10-
appVersion: "8.2306.0-r0"
9+
version: 0.1.9
10+
appVersion: "8.2306.0-r2"
1111
dependencies:
1212
- name: chartlib
1313
version: 0.1.8

0 commit comments

Comments
 (0)