Some checks failed
gitea/video-server-backend/pipeline/head There was a failure building this commit
12 lines
199 B
Groovy
12 lines
199 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Docker build') {
|
|
steps {
|
|
sh 'docker build -t darkbird/video-server-backend:latest .'
|
|
}
|
|
}
|
|
}
|
|
}
|