-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update blueprint images dependencies to fix reported vulnerabilities
Update base images Build go libs in kanister-tools image Remove unused tools with vulnerabilities Expand vulnerability report tool output to show more information
- Loading branch information
Showing
12 changed files
with
134 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
FROM bitnami/cassandra:3.11.8-debian-10-r20 | ||
# We get tools from tools image | ||
# Tools are not up to date in debian repos | ||
ARG TOOLS_IMAGE | ||
FROM ${TOOLS_IMAGE} AS TOOLS_IMAGE | ||
|
||
# Actual image base | ||
FROM bitnami/cassandra:4.1.3-debian-11-r76 | ||
|
||
MAINTAINER "Tom Manville <tom@kasten.io>" | ||
|
||
# Install restic to take backups | ||
COPY --from=restic/restic:0.11.0 /usr/bin/restic /usr/local/bin/restic | ||
COPY --from=TOOLS_IMAGE /usr/local/bin/restic /usr/local/bin/restic | ||
# Update gosu from recent version | ||
COPY --from=TOOLS_IMAGE /usr/local/bin/gosu /usr/local/bin/gosu | ||
|
||
# Install kando | ||
# Install kando | ||
ADD kando /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
FROM bitnami/mongodb:5.0.14-debian-11-r0 | ||
# We get tools from tools image | ||
# Tools are not up to date in debian repos | ||
ARG TOOLS_IMAGE | ||
FROM ${TOOLS_IMAGE} AS TOOLS_IMAGE | ||
|
||
FROM bitnami/mongodb:7.0.4-debian-11-r0 | ||
|
||
LABEL maintainer="Tom Manville <tom@kasten.io>" | ||
|
||
# Update gosu from recent version | ||
COPY --from=TOOLS_IMAGE /usr/local/bin/gosu /usr/local/bin/gosu | ||
|
||
# Install kando | ||
ADD kando /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters