Update 'Jenkinsfile-Docker'
This commit is contained in:
parent
f647e0ecbf
commit
a29429e576
@ -1,12 +1,18 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
|
|
||||||
agent {
|
agent {
|
||||||
dockerfile true
|
agent any
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
|
stage('Build Image') {
|
||||||
|
steps {
|
||||||
|
sh 'docker build --no-cache -t wujt -Dockerfile'
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
sh 'ls -l'
|
sh 'ls -l'
|
||||||
sh 'python3 create_dataset.py'
|
sh 'docker run wujt python3 create_dataset.py'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user