mirror of https://github.com/k3s-io/k3s
18 lines
384 B
Makefile
18 lines
384 B
Makefile
# Makefile for the Docker image proxy-to-service
|
|
# MAINTAINER: Tim Hockin <thockin@google.com>
|
|
# If you update this image please bump the tag value before pushing.
|
|
|
|
.PHONY: all container push
|
|
|
|
TAG = v2
|
|
PREFIX = gcr.io/google_containers
|
|
NAME = proxy-to-service
|
|
|
|
all: container
|
|
|
|
container:
|
|
docker build -t $(PREFIX)/$(NAME):$(TAG) .
|
|
|
|
push:
|
|
gcloud docker push $(PREFIX)/$(NAME):$(TAG)
|