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