mirror of
https://github.com/30hours/blah2.git
synced 2024-11-08 12:25:42 +00:00
28 lines
625 B
Groovy
28 lines
625 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Checkout') {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building the project'
|
|
sh "docker build -t 30hours/blah2 -f Dockerfile ."
|
|
sh "docker build -t 30hours/blah2_api -f ./api/Dockerfile ."
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Running tests'
|
|
}
|
|
}
|
|
stage('Push') {
|
|
steps {
|
|
echo 'Pushing the application'
|
|
}
|
|
}
|
|
}
|
|
}
|