iumKC/JenkinsDatastatsDockerfile

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-04-03 08:47:40 +02:00
pipeline {
agent {
dockerfile true
}
parameters {
string(
defaultValue: 'karol9',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
string(
defaultValue: '100',
description: 'Dataset cutoff size',
name: 'CUTOFF'
)
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
}
stages {
stage('Checkout') {
steps {
git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s495715/iumKC.git'
}
}
stage('Stats in docker') {
steps {
// run python3 main.py inside docker created from dockerfile in iumKC directory
sh "docker build -t iumkc ."
2024-04-03 08:53:46 +02:00
sh "docker run -v ${PWD}:/app iumkc python3 main.py"
2024-04-03 08:47:40 +02:00
}
}
}
}