13 lines
259 B
Groovy
13 lines
259 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}"
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|