From 93c7bc89fc3ef53ce3401a072cbaea41da36f5b9 Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Sat, 6 Oct 2018 19:25:07 -0700 Subject: [PATCH] Update build script and .gitignore --- .gitignore | 4 +++- build.sh | 7 ++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 467c953..b8e5d46 100644 --- a/.gitignore +++ b/.gitignore @@ -33,4 +33,6 @@ Gopkg.lock node_modules/ package-lock.json dist/ -venv/ \ No newline at end of file +venv/ + +.DS_Store \ No newline at end of file diff --git a/build.sh b/build.sh index 3c90c0b..0110d28 100755 --- a/build.sh +++ b/build.sh @@ -1,3 +1,4 @@ -docker build -t app . -docker tag app gcr.io/pod-sync/app -gcloud docker -- push gcr.io/pod-sync/app \ No newline at end of file +#!/usr/bin/env bash + +docker build -t mxpv/podsync . +docker push mxpv/podsync