ium_s487178/Jenkinsfile
2023-04-05 22:10:14 +02:00

23 lines
521 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487178/ium_s487178.git'
}
}
stage('Build Docker image') {
steps {
sh 'docker build -t ium_s487178 -f dockerfile3 .'
}
}
stage('Run Docker container') {
steps {
sh 'docker run -p 80:80 ium_s487178'
}
}
}
}