mirror of
https://github.com/logos-co/wadoku.git
synced 2025-02-15 07:26:48 +00:00
11 lines
132 B
Makefile
11 lines
132 B
Makefile
.PHONY: all build
|
|
FILE=libp2p-publish
|
|
|
|
build:
|
|
go build -o $(FILE)
|
|
|
|
docker: build
|
|
docker build --rm -t $(FILE):alpha .
|
|
|
|
all: build
|