mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-25 01:07:45 +00:00
11 lines
307 B
Makefile
11 lines
307 B
Makefile
# build the hyperkube image.
|
|
|
|
VERSION=v0.14.2
|
|
|
|
all:
|
|
curl -O http://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/linux/amd64/hyperkube
|
|
docker build -t gcr.io/google_containers/hyperkube:${VERSION} .
|
|
gcloud preview docker push gcr.io/google_containers/hyperkube:${VERSION}
|
|
|
|
.PHONY: all
|