vane 0.8.14

A flow-based reverse proxy with multi-layer routing and programmable pipelines.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
IMAGE=canmi/vane
TAG=$(shell git rev-parse --short HEAD)

build-and-push:
	docker buildx build \
	  --platform linux/amd64,linux/arm64 \
	  -t $(IMAGE):$(TAG) \
	  -t $(IMAGE):latest \
	  -f Dockerfile . --push

push: build-and-push
	docker pushrm $(IMAGE)

clean:
	docker buildx prune -f