Skip to content
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.1.0] - 2021-04-12
### Add
- Added gettext
- Install gcloud beta

## [3.0.0] - 2021-04-08
### Add
- Added yq, git, zip
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM docker:19.03

RUN apk add --no-cache bash coreutils curl jq git python3 rsync zip py3-pip
RUN apk add --no-cache bash coreutils curl jq git python3 rsync zip py3-pip gettext
RUN pip3 install yq

ENV PATH "$PATH:/opt/google-cloud-sdk/bin"
Expand All @@ -10,6 +10,8 @@ RUN wget -q "https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz"
gcloud config set component_manager/disable_update_check true && \
gcloud components install kubectl && \
gcloud components install gsutil && \
gcloud components install beta && \
gcloud components update && \
rm google-cloud-sdk.tar.gz

RUN wget -q https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz -O helm.tar.gz && \
Expand Down