Skip to content

Commit

Permalink
Make Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
shuuji3 committed Aug 7, 2020
1 parent bbdf9c3 commit 758e9a1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.PHONY: build push deploy run

GOOGLE_CLOUD_PROJECT = api-project-466263183174
IMAGE_TAG = gcr.io/$(GOOGLE_CLOUD_PROJECT)/twins-notification

build:
docker build -t $(IMAGE_TAG) .

push:
docker push $(IMAGE_TAG)

deploy:
kubectl apply -f cronjob.yaml

run:
yarn start

0 comments on commit 758e9a1

Please sign in to comment.