12 lines
258 B
Groovy
12 lines
258 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build Docker Image') {
|
|
steps {
|
|
sh 'docker build -t worldcraftdiscordbot:latest .'
|
|
sh 'docker tag worldcraftdiscordbot:latest worldcraftdiscordbot:latest:v${env.BUILD_ID}'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |