Initial commit
This commit is contained in:
21
Dockerfile
Normal file
21
Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM ubuntu:23.10
|
||||
RUN apt-get update -qq \
|
||||
&& apt-get install -qqy apt-transport-https ca-certificates curl gnupg2 software-properties-common jq
|
||||
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
|
||||
RUN curl https://get.docker.com/ > dockerinstall && chmod 777 dockerinstall && ./dockerinstall
|
||||
|
||||
## Install K6
|
||||
RUN curl https://github.com/grafana/k6/releases/download/v0.48.0/k6-v0.48.0-linux-amd64.tar.gz -L | tar xvz --strip-components 1
|
||||
RUN mv k6 /usr/local/bin/
|
||||
RUN chmod +x /usr/local/bin/k6
|
||||
|
||||
RUN curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash
|
||||
RUN mv kustomize /usr/local/bin/kustomize
|
||||
|
||||
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
|
||||
RUN chmod 700 get_helm.sh
|
||||
RUN ./get_helm.sh
|
||||
|
||||
RUN curl -LO https://dl.k8s.io/release/v1.29.0/bin/linux/amd64/kubectl
|
||||
RUN chmod +x kubectl
|
||||
RUN mv kubectl /usr/local/bin/kubectl
|
||||
Reference in New Issue
Block a user