From f84397db999b24dd40388c102382dff48b3484e0 Mon Sep 17 00:00:00 2001 From: jdesouza Date: Fri, 1 Dec 2023 10:43:07 -0300 Subject: [PATCH] Added AWS CLI to cloud costs image (#847) --- plugins/cloud-costs/CHANGELOG.md | 3 +++ plugins/cloud-costs/Dockerfile | 13 +++++++++++++ plugins/cloud-costs/version.txt | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/plugins/cloud-costs/CHANGELOG.md b/plugins/cloud-costs/CHANGELOG.md index a0a2e8292..bf74cb54a 100644 --- a/plugins/cloud-costs/CHANGELOG.md +++ b/plugins/cloud-costs/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.1.4 +* Installed awscli + ## 0.1.3 * Fix cloud costs content diff --git a/plugins/cloud-costs/Dockerfile b/plugins/cloud-costs/Dockerfile index 9b80ed7a7..30e5ada25 100644 --- a/plugins/cloud-costs/Dockerfile +++ b/plugins/cloud-costs/Dockerfile @@ -1,5 +1,18 @@ FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:455.0.0 +RUN apt-get update && \ + apt-get install -y \ + python3 \ + python3-pip \ + python3-setuptools \ + groff \ + less \ + jq \ + && pip3 install --upgrade pip \ + && apt-get clean + +RUN pip3 --no-cache-dir install --upgrade awscli + COPY cloud-costs.sh cloud-costs.sh CMD ["cloud-costs.sh"] diff --git a/plugins/cloud-costs/version.txt b/plugins/cloud-costs/version.txt index 7693c96bf..446ba66e7 100644 --- a/plugins/cloud-costs/version.txt +++ b/plugins/cloud-costs/version.txt @@ -1 +1 @@ -0.1.3 \ No newline at end of file +0.1.4 \ No newline at end of file