Files
WorldCraft_Discord_Bot/Jenkinsfile
2020-11-14 11:41:19 +01:00

12 lines
249 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 .
docker tag worldcraftdiscordbot:latest worldcraftdiscordbot:latest:v${env.BUILD_ID}'''
}
}
}
}