gomie/Makefile

13 lines
149 B
Makefile
Raw Permalink Normal View History

2019-04-15 12:12:50 +00:00
.PHONY: default build dependencies image
default: build
build:
2019-04-15 13:56:24 +00:00
go build
2019-04-15 12:12:50 +00:00
dependencies:
go mod download
image:
docker build -t furyfire/gomie .