Sha256: d338959b87e9b700edf6d9aac903cb32e2b02a9fd40aeda604bec630efa208fb
Contents?: true
Size: 559 Bytes
Versions: 24
Compression:
Stored size: 559 Bytes
Contents
VERSION := $(shell git describe --tags --abbrev=0 2>/dev/null | tr -d 'v') IMAGE := heliostech/kite:$(VERSION) .PHONY: default build push run ci deploy default: build run build: @echo '> Building "kite" docker image...' @docker build -t $(IMAGE) . push: build gcloud docker -- push $(IMAGE) run: @echo '> Starting "kite" container...' @docker run -d $(IMAGE) ci: @fly -t ci set-pipeline -p kite -c config/pipelines/review.yml -n @fly -t ci unpause-pipeline -p kite deploy: push @helm install ./config/charts/kite --set "image.tag=$(VERSION)"
Version data entries
24 entries across 24 versions & 1 rubygems