add Jenkinsfile for docker
This commit is contained in:
parent
e0883e654e
commit
01717da2d9
23
Docker/Jenkinsfile
vendored
23
Docker/Jenkinsfile
vendored
@ -1,10 +1,19 @@
|
|||||||
pipeline {
|
node {
|
||||||
agent { dockerfile true }
|
def app
|
||||||
stages {
|
stage('Clone repository') {
|
||||||
stage('Launch Docker') {
|
|
||||||
steps {
|
checkout scm
|
||||||
sh 'ls -la'
|
}
|
||||||
}
|
|
||||||
|
stage('Build image') {
|
||||||
|
|
||||||
|
app = docker.build("sparafinski/ium")
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Test image') {
|
||||||
|
app.inside {
|
||||||
|
|
||||||
|
sh 'echo "Tests passed"'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user