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