1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/cmd/api/Makefile
Maksym Pavlenko 072dccff4e Rename app to api
2019-03-06 22:19:59 -08:00

15 lines
214 B
Makefile

OUT := api
SRC := $(wildcard *.go)
build: $(SRC)
GOOS=linux go build -v -o $(OUT)
.PHONY: push
push: build
docker build -t mxpv/podsync_api .
docker push mxpv/podsync_api
.PHONY: clean
clean:
- rm -f $(OUT)