mirror of https://github.com/k3s-io/k3s
16 lines
357 B
Makefile
16 lines
357 B
Makefile
all: serve_hostname
|
|
|
|
TAG = 1.1
|
|
|
|
serve_hostname: serve_hostname.go
|
|
CGO_ENABLED=0 go build -a -installsuffix cgo --ldflags '-w' ./serve_hostname.go
|
|
|
|
container: serve_hostname
|
|
sudo docker build -t gcr.io/google-containers/serve_hostname:$(TAG) .
|
|
|
|
push:
|
|
gcloud preview docker push gcr.io/google-containers/serve_hostname:$(TAG)
|
|
|
|
clean:
|
|
rm -f serve_hostname
|