Update the cassandra jar with the latest code.

This commit is contained in:
Brendan Burns
2015-12-17 05:38:15 -08:00
parent 0f144fd351
commit 5fe248e985
6 changed files with 20 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
# build the cassandra image.
VERSION=v7
all: build
# TODO: build the jar and copy it in
build:
docker build -t gcr.io/google_containers/cassandra:${VERSION} .
push: build
gcloud docker push gcr.io/google_containers/cassandra:${VERSION}
.PHONY: all