We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e08ee5a commit 29b488dCopy full SHA for 29b488d
Dockerfile.dapper
@@ -1,3 +1,8 @@
1
+FROM registry.suse.com/bci/golang:1.19 AS helm
2
+RUN zypper -n install git
3
+RUN git -C / clone --branch release-v3.9.0 --depth=1 https://github.com/rancher/helm
4
+RUN make -C /helm
5
+
6
FROM registry.suse.com/bci/golang:1.19
7
8
ARG DAPPER_HOST_ARCH
@@ -11,6 +16,9 @@ ENV CATTLE_HELM_UNITTEST_VERSION v0.1.7-rancher4
11
16
ENV HELM_VERSION v3.9.0
12
17
ENV KUSTOMIZE_VERSION v4.5.7
13
18
19
+ENV YQ_VERSION=v4.30.8
20
+RUN wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_${ARCH} -O /usr/bin/yq && chmod +x /usr/bin/yq;
21
14
22
# kontainer-driver-metadata branch to be set for specific branch other than dev/master, logic at rancher/rancher/pkg/settings/setting.go
15
23
ENV CATTLE_KDM_BRANCH=dev-v2.7
24
0 commit comments