13 lines
153 B
Makefile
13 lines
153 B
Makefile
|
.PHONY: default build dependencies image
|
||
|
|
||
|
default: build
|
||
|
|
||
|
build:
|
||
|
go build -v
|
||
|
|
||
|
dependencies:
|
||
|
go mod download
|
||
|
|
||
|
image:
|
||
|
docker build -t furyfire/gomie .
|