wadoku/waku/filter/Makefile

11 lines
129 B
Makefile
Raw Normal View History

2023-01-11 12:27:40 +05:30
.PHONY: all build
FILE=waku-filter
build:
go build -o $(FILE)
docker: build
docker build --rm -t $(FILE):alpha .
all: build