mirror of https://github.com/k3s-io/k3s
17 lines
397 B
Makefile
17 lines
397 B
Makefile
# The build rule builds a Docker image that logs all Docker contains logs to
|
|
# Google Compute Platform using the Cloud Logging API. The push rule pushes
|
|
# the image to DockerHub.
|
|
# Satnam Singh (satnam@google.com)
|
|
|
|
.PHONY: build push
|
|
|
|
|
|
TAG = 1.2
|
|
|
|
build:
|
|
docker build -t gcr.io/google_containers/fluentd-gcp:$(TAG) .
|
|
|
|
push:
|
|
gcloud preview docker push gcr.io/google_containers/fluentd-gcp:$(TAG)
|
|
|