mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-23 04:08:59 +00:00
10 lines
143 B
Makefile
Executable File
10 lines
143 B
Makefile
Executable File
.PHONY: build push
|
|
|
|
TAG = 1.0
|
|
|
|
build:
|
|
docker build -t kubernetes/elasticsearch:$(TAG) .
|
|
|
|
push:
|
|
docker push kubernetes/elasticsearch:$(TAG)
|