.PHONY: default build dependencies image
default: build
build:
go build
dependencies:
go mod download
image:
docker build -t furyfire/gomie .