-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update versions of k8s, go, alpine, dep (#84)
- Loading branch information
1 parent
b91c711
commit cbc53f6
Showing
5 changed files
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
FROM alpine:3.7 AS build | ||
FROM alpine:3.8 AS build | ||
|
||
# Install kubectl. | ||
ENV K8S_VERSION v1.13.1 | ||
ENV K8S_VERSION v1.13.2 | ||
RUN apk add --no-cache wget | ||
RUN wget -q https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl | ||
RUN chmod +x ./kubectl | ||
RUN mv ./kubectl /bin/kubectl | ||
|
||
FROM alpine:3.7 | ||
FROM alpine:3.8 | ||
COPY --from=build /bin/kubectl /bin/kubectl | ||
COPY deliver_kubectl.sh . | ||
ENTRYPOINT ["./deliver_kubectl.sh"] |