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