Skip to content

Commit

Permalink
Add a docker image for the hyperkube binary.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendandburns committed Apr 3, 2015
1 parent ab13d64 commit ee9591e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cluster/images/hyperkube/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM google/debian:wheezy

COPY hyperkube /hyperkube

10 changes: 10 additions & 0 deletions cluster/images/hyperkube/Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ee9591e

Please sign in to comment.