File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,15 @@ RUN apk add --update bash
14
14
15
15
# copy all versions of kubectl to switch between them later.
16
16
COPY --from=builder kubectl1.15 /usr/local/bin/
17
- COPY --from=builder kubectl1.14 /usr/local/bin/kubectl
17
+ COPY --from=builder kubectl1.14 /usr/local/bin/
18
18
COPY --from=builder kubectl1.12 /usr/local/bin/
19
19
COPY --from=builder kubectl1.10 /usr/local/bin/
20
20
COPY --from=builder kubectl1.6 /usr/local/bin/
21
21
22
- RUN chmod +x /usr/local/bin/kubectl /usr/local/bin/kubectl1.6 /usr/local/bin/kubectl1.10 /usr/local/bin/kubectl1.12 /usr/local/bin/kubectl1.15
22
+ # Set Default
23
+ COPY --from=builder kubectl1.14 /usr/local/bin/kubectl
24
+
25
+ RUN chmod +x /usr/local/bin/kubectl /usr/local/bin/kubectl1.6 /usr/local/bin/kubectl1.10 /usr/local/bin/kubectl1.12 /usr/local/bin/kubectl1.14 /usr/local/bin/kubectl1.15
23
26
24
27
WORKDIR /
25
28
You can’t perform that action at this time.
0 commit comments