faaso/Makefile

10 lines
283 B
Makefile
Raw Normal View History

build: shard.yml $(wildcard src/**/*cr)
2024-06-30 02:38:18 +00:00
shards build
proxy-image: build
2024-06-30 02:13:41 +00:00
docker build . -t faaso-proxy --no-cache
start-proxy:
docker run --network=faaso-net -v /var/run/docker.sock:/var/run/docker.sock -p 8888:8888 -p 3000:3000 faaso-proxy
.PHONY: build proxy-image start-proxy