wadoku/waku/filter/Makefile
2023-01-11 12:27:40 +05:30

11 lines
129 B
Makefile

.PHONY: all build
FILE=waku-filter
build:
go build -o $(FILE)
docker: build
docker build --rm -t $(FILE):alpha .
all: build