From 9a7bbdb0e3d42554a46d90661d6621f7de307699 Mon Sep 17 00:00:00 2001 From: Daniel Stamer Date: Fri, 2 Nov 2018 15:08:34 +0100 Subject: [PATCH] add pipeline for codefresh Signed-off-by: Daniel Stamer --- codefresh.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 codefresh.yaml diff --git a/codefresh.yaml b/codefresh.yaml new file mode 100644 index 0000000..57fb958 --- /dev/null +++ b/codefresh.yaml @@ -0,0 +1,16 @@ +version: '1.0' +steps: + BuildingDockerImage: + title: Building Docker Image + type: build + image_name: jockdarock/time2codeserver + working_directory: ./ + tag: '${{CF_BRANCH_TAG_NORMALIZED}}' + dockerfile: Dockerfile + PushingToDockerRegistry: + title: Pushing to Docker Registry + type: push + candidate: '${{BuildingDockerImage}}' + tag: '${{CF_BRANCH_TAG_NORMALIZED}}' + registry: cfcr +