1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
2019-07-10 19:36:31 -07:00

15 lines
223 B
Makefile

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