diff --git a/readme.md b/readme.md index 8303e2a..5c2d13b 100644 --- a/readme.md +++ b/readme.md @@ -14,3 +14,7 @@ - Add integration tests to the pipeline. Focus on DB injection & test driving. - Add production profile to Google Cloud Platform. - Setup the pipeline using Garden, instead of Skaffold. Compare. + +## Instructions + + $ skaffold build diff --git a/skaffold.yaml b/skaffold.yaml new file mode 100644 index 0000000..67d88e1 --- /dev/null +++ b/skaffold.yaml @@ -0,0 +1,16 @@ +apiVersion: skaffold/v1beta14 +kind: Config +metadata: + name: k8s-nodejs-pipeline +build: + artifacts: + - image: jpsecher/k8s-nodejs-pipeline-backend + context: src + docker: + dockerfile: Dockerfile.backend + - image: jpsecher/k8s-nodejs-pipeline-frontend + context: src + docker: + dockerfile: Dockerfile.frontend + local: + push: false