Skip to content

Commit

Permalink
Updating images for vulnerabilities (#919)
Browse files Browse the repository at this point in the history
* Updating images for vulnerabilities

* Updating images for vulnerabilities

* Updating images for vulnerabilities

* Trying to fix vulns

* Trying to fix vulns

* Trying to fix vulns
  • Loading branch information
jdesouza authored May 1, 2024
1 parent 8b0b175 commit 6651d10
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 10 deletions.
3 changes: 3 additions & 0 deletions plugins/cloud-costs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.3.2
* Removed anthoscli

## 0.3.1
* Replaced cloud costs image

Expand Down
1 change: 1 addition & 0 deletions plugins/cloud-costs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ RUN if [ "${TARGETARCH}" = "arm64" ] ; then googleArch="arm"; else googleArch="x
./google-cloud-sdk/install.sh && \
rm -rf google-cloud-sdk.tar.gz

RUN rm ./google-cloud-sdk/bin/anthoscli
RUN ./google-cloud-sdk/bin/gcloud components install bq

COPY cloud-costs.sh cloud-costs.sh
Expand Down
2 changes: 1 addition & 1 deletion plugins/cloud-costs/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
3 changes: 3 additions & 0 deletions plugins/postgres-partman/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 14.8.0
* upgrading postgres version

## 14.7.1
* Add `apt-get update` to Dockerfile

Expand Down
17 changes: 9 additions & 8 deletions plugins/postgres-partman/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
FROM docker.io/bitnami/postgresql:14.7.0-debian-11-r31
FROM postgres:14.10-alpine3.19

USER root
ENV PG_PARTMAN_VERSION v4.7.3
RUN apt-get update
RUN install_packages wget
RUN install_packages make
RUN install_packages gcc
RUN install_packages libc6-dev
RUN wget -O pg_partman.tar.gz "https://github.com/pgpartman/pg_partman/archive/$PG_PARTMAN_VERSION.tar.gz"
ENV PG_PARTMAN_VERSION v4.6.2

RUN apk -U upgrade
RUN apk update && apk upgrade

RUN apk add curl make gcc libc-dev postgresql-dev

RUN curl -L https://github.com/pgpartman/pg_partman/archive/$PG_PARTMAN_VERSION.tar.gz -o "pg_partman.tar.gz"
RUN mkdir -p /usr/src/pg_partman \
&& tar \
--extract \
Expand Down
2 changes: 1 addition & 1 deletion plugins/postgres-partman/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.7.1
14.8.0

0 comments on commit 6651d10

Please sign in to comment.