mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-10-15 19:49:36 +00:00
11 lines
308 B
Makefile
11 lines
308 B
Makefile
# build the hyperkube image.
|
|
|
|
VERSION=v0.16.2
|
|
|
|
all:
|
|
curl -O https://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
|