Add a docker image for the hyperkube binary.

This commit is contained in:
Brendan Burns 2015-04-03 14:54:09 -07:00
parent ab13d64255
commit ee9591e25d
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,4 @@
FROM google/debian:wheezy
COPY hyperkube /hyperkube

View File

@ -0,0 +1,10 @@
# build the hyperkube image.
VERSION=dev
all:
cp ../../../_output/release-stage/server/linux-amd64/kubernetes/server/bin/hyperkube ./
docker build -t gcr.io/google_containers/hyperkube:${VERSION} .
gcloud preview docker push gcr.io/google_containers/hyperkube:${VERSION}
.PHONY: all