From 5b7d7a5624d34f93a0273524cbf7bdff697c6a7a Mon Sep 17 00:00:00 2001 From: marius Date: Tue, 21 Apr 2020 15:10:21 +0200 Subject: [PATCH] Docker build step --- Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 4a3c872..7ebeeb1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,4 +8,11 @@ node { checkout scm } + stage('Build image') { + /* This builds the actual image; synonymous to + * docker build on the command line */ + + app = docker.build("wishi/chuckjokes") + } + } \ No newline at end of file