ClaptrapBot/Jenkinsfile

36 lines
1012 B
Plaintext
Raw Normal View History

2018-02-18 19:10:39 +01:00
pipeline {
agent any
2018-02-18 12:13:50 +01:00
2018-02-18 19:10:39 +01:00
stages {
stage('Clone') { // for display purposes
2018-02-18 19:15:37 +01:00
steps{
2018-02-18 19:17:23 +01:00
def app
2018-02-18 19:15:37 +01:00
// Get some code from a GitHub repository
git 'https://github.com/BrokenFire/BrokenDiscordBot.git'
}
2018-02-18 19:10:39 +01:00
}
stage('Build image') {
2018-02-18 19:15:37 +01:00
steps {
/* This builds the actual image; synonymous to
* docker build on the command line */
2018-02-18 19:10:39 +01:00
2018-02-18 19:15:37 +01:00
app = docker.build("brokenfire/brokendiscordbot","--rm=true .")
}
2018-02-18 19:10:39 +01:00
}
stage('Push image') {
2018-02-18 19:15:37 +01:00
steps {
/* Finally, we'll push the image with two tags:
* First, the incremental build number from Jenkins
* Second, the 'latest' tag.
* Pushing multiple tags is cheap, as all the layers are reused. */
app.push("devel")
}
2018-02-18 19:10:39 +01:00
}
stage('Cleaning'){
sh "docker image prune -f"
}
2018-02-18 12:13:50 +01:00
}
}