13 lines
269 B
Groovy
13 lines
269 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}'''
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|