mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
97c69546c5
Signed-off-by: Shylaja Devadiga <shylaja@rancher.com>
27 lines
984 B
Docker
27 lines
984 B
Docker
FROM golang:alpine
|
|
|
|
ARG TERRAFORM_VERSION=0.12.10
|
|
ENV TERRAFORM_VERSION=$TERRAFORM_VERSION
|
|
|
|
|
|
RUN apk update && \
|
|
apk upgrade --update-cache --available && \
|
|
apk add curl git jq bash openssh unzip gcc g++ make ca-certificates && \
|
|
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \
|
|
chmod +x ./kubectl && \
|
|
mv ./kubectl /usr/local/bin && \
|
|
mkdir tmp && \
|
|
curl "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip" -o tmp/terraform.zip && \
|
|
unzip tmp/terraform.zip -d /usr/local/bin && \
|
|
chmod +x /usr/local/bin/terraform && \
|
|
rm -rf tmp
|
|
|
|
WORKDIR $GOPATH/src/github.com/k3s-io/k3s
|
|
|
|
COPY . .
|
|
RUN go get github.com/gruntwork-io/terratest/modules/terraform
|
|
RUN go get -u github.com/onsi/gomega
|
|
RUN go get -u github.com/onsi/ginkgo/v2
|
|
RUN go get -u golang.org/x/crypto/...
|
|
RUN go get -u github.com/Thatooine/go-test-html-report
|