We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 157e725 commit 9f29555Copy full SHA for 9f29555
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM alpine:3.12.0 as fetcher
2
+
3
+ARG KUSTOMIZE_VERSION=v3.8.1
4
5
+ADD https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/${KUSTOMIZE_VERSION}/kustomize_${KUSTOMIZE_VERSION}_darwin_amd64.tar.gz /usr/local/bin/kustomize
6
7
+RUN chmod +x /usr/local/bin/kustomize
8
9
+FROM alpine:3.12.0
10
11
+WORKDIR /workdir
12
13
+ENTRYPOINT [ "/usr/local/bin/kustomize" ]
14
15
+COPY --from=fetcher /usr/local/bin/kustomize /usr/local/bin/kustomize
0 commit comments