Refactor behaviour into the Funko class

This commit is contained in:
2024-06-29 23:54:14 -03:00
parent f526ccd326
commit c1308c3a36
4 changed files with 44 additions and 26 deletions

View File

@ -1,7 +1,9 @@
build: shard.yml src/*
build: shard.yml $(wildcard src/**/*cr)
shards build
proxy-image: build
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 faas
o-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