forked from kemvoueric/MIX3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (19 loc) · 754 Bytes
/
Copy pathDockerfile
File metadata and controls
29 lines (19 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM google/cloud-sdk:160.0.0
RUN apt-get update -y
RUN apt-get install wget -y \
curl \
vim \
unzip \
git
### KUBECTL INSTALLATIN
RUN curl -o kubectl https://amazon-eks.s3.us-west-2.amazonaws.com/1.17.9/2020-08-04/bin/linux/amd64/kubectl \
&& chmod +x ./kubectl \
&& mv kubectl /usr/local/bin/
### INSTALL KUBECTX AND KUBENS
RUN wget https://raw.githubusercontent.com/ahmetb/kubectx/master/kubectx \
&& wget https://raw.githubusercontent.com/ahmetb/kubectx/master/kubens \
&& chmod +x kubectx kubens \
&& mv kubens kubectx /usr/local/bin
### HELM INSTALLATIN
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 \
&& chmod +x get_helm.sh && ./get_helm.sh