From c6b6789a34908171edafaba3760bac3ccd07bdb4 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 28 May 2020 18:40:13 +0800 Subject: [PATCH] modified: Dockerfile modified: Jenkinsfile Updated to use master branch --- Dockerfile | 2 +- Jenkinsfile | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e50feec..d5ba588 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /src RUN apk add --no-cache --virtual .build-deps \ git python make g++ \ && apk add --no-cache openssh-client \ - && git clone https://github.com/krishnasrinivas/wetty --branch v1.3.0 /src \ + && git clone https://github.com/krishnasrinivas/wetty --branch master /src \ && npm install \ && apk del .build-deps \ && adduser -h /src -D term \ diff --git a/Jenkinsfile b/Jenkinsfile index 67eedb0..033c346 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,8 +14,7 @@ node("docker-node") { stage "publish" app.push("${env.BUILD_NUMBER}") app.push("latest") - app.push("1.3.0") - app.push("1.3") + app.push("master") stage('Deploy on K8s'){ sh "/usr/local/bin/kubectl -n wetty delete po --all"