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