mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-02 06:47:34 +00:00
15 lines
269 B
Makefile
15 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
|