Files
WorldCraft_Discord_Bot/Jenkinsfile
2020-11-14 11:44:08 +01:00

13 lines
269 B
Groovy
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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}'''
}
}
}
}