mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-21 19:59:21 +00:00
12 lines
213 B
Plaintext
12 lines
213 B
Plaintext
|
pipeline {
|
||
|
agent { docker { image "registry.docker.internal/pierre42100/docker-comunicwebappscratch" } }
|
||
|
stages {
|
||
|
stage("build") {
|
||
|
steps {
|
||
|
sh 'php --version'
|
||
|
sh './builder build offline'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|