mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-04-27 09:10:12 -04:00
14 lines
269 B
Makefile
14 lines
269 B
Makefile
# 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
|