Update 'Jenkinsfile-Docker'

This commit is contained in:
Wojciech Mikołajski 2023-04-19 18:53:55 +02:00
parent 67ec22404a
commit c1d525dd55

View File

@ -1,34 +1,27 @@
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'login',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
),
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
),
string(
defaultValue: '7999',
description: 'Cut off value',
name: 'CUT',
trim: false
)
])
])
}
stage('checkout: Check out from version control') {
checkout scm
}
stage('Build Docker Image') {
def dockerImage = docker.build("create-dataset")
sh 'docker run python3 create_dataset.py $CUT'
pipeline {
agent {
dockerfile true
}
archiveArtifacts artifacts: 'waterQuality.csv, output.txt'
}
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build Docker image') {
steps {
sh 'docker build -t wujt89 -f Dockerfile .'
}
}
stage('Run command in Docker container') {
steps {
script {
sh "docker run -v ${env.WORKSPACE}/artifacts:/app/artifacts wujt89 python3 create_dataset.py"
}
}
}
}
}