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