Files
gerbil/Makefile
Owen Schwartz ceae8134b7 Add new readme
2025-01-03 21:48:14 -05:00

17 lines
343 B
Makefile

all: build push
build:
docker build -t fossorial/gerbil:latest .
push:
docker push fossorial/gerbil:latest
test:
docker run -it -p 3002:3002 -v ./config_example.json:/config/config.json --cap-add=NET_ADMIN --cap-add=SYS_MODULE gerbil --config /config/config.json
local:
CGO_ENABLED=0 GOOS=linux go build -o gerbil
clean:
rm gerbil