1
0
Fork 0
editiCollaborativo/Makefile

14 lines
172 B
Makefile
Raw Normal View History

2017-02-08 02:02:35 +01:00
REPO=msoedov/hacker-slides
2017-02-08 02:06:16 +01:00
default: repo
repo:
@echo $(REPO)
2017-02-08 02:02:35 +01:00
build:
@GOOS=linux CGO_ENABLE=0 go build main.go
@docker build -t $(REPO) .
push:
@docker push $(REPO)