mirror of
https://github.com/fosrl/olm.git
synced 2026-02-08 05:56:41 +00:00
18 lines
196 B
Makefile
18 lines
196 B
Makefile
|
|
all: build push
|
|
|
|
build:
|
|
docker build -t fosrl/newt:latest .
|
|
|
|
push:
|
|
docker push fosrl/newt:latest
|
|
|
|
test:
|
|
docker run fosrl/newt:latest
|
|
|
|
local:
|
|
CGO_ENABLED=0 go build -o newt
|
|
|
|
clean:
|
|
rm newt
|