Loaded full build file.
Some checks failed
Home Cluster Builds/Image-ElixirPhoenix-1.11.3/pipeline/head There was a failure building this commit

This commit is contained in:
2023-01-10 15:39:52 +02:00
parent adf3634535
commit 5bf4f669d5
2 changed files with 13 additions and 55 deletions

14
cicd/Jenkinsfile vendored
View File

@@ -35,7 +35,19 @@ spec:
stages {
stage('Build') {
steps {
sh 'No build steps configured.'
sh 'echo "No build steps configured."'
}
}
stage('Test') {
steps {
sh 'echo "No test steps configured."'
}
}
stage('Docker Build and Push') {
steps {
container("kaniko") {
sh '/kaniko/executor --dockerfile `pwd`/cicd/'+env.BRANCH_NAME+'/Dockerfile --context `pwd` --destination 192.168.195.195:30000/elixir-phoenix:1.11.3-amd64'
}
}
}
}