docker from git localfile

This commit is contained in:
gedin 2023-04-08 23:10:02 +02:00
parent 366a274be7
commit dab0d38bd6
2 changed files with 45 additions and 2 deletions

45
Jenkinsfile vendored
View File

@ -1 +1,44 @@
node { stage('Preparation') { properties([ parameters([ string( defaultValue: 'wiktorbombola', 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: '500', description: 'Number of head lines to be taken from test file', name: 'CUTOFF', trim: false) ]) ]) } stage('Build') { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}"]) { checkout scm sh './script.sh ${CUTOFF}' } } stage('artifacts') { echo 'saving artifacts' archiveArtifacts 'output.txt' } }
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'wiktorbombola',
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: '500',
description: 'Number of head lines to be taken from test file',
name: 'CUTOFF',
trim: false)
])
])
}
stage('Build') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}",
"CUTOFF=${params.CUTOFF}"]) {
checkout scm
def dockerimage = docker.build("titanic-image")
dockerimage.inside {
sh "KAGGLE_USERNAME= ${KAGGLE_USERNAME}"
sh "KAGGLE_KEY= ${KAGGLE_KEY}"
sh "./script.sh ${CUTOFF}"
}
}
}
stage('artifacts') {
echo 'saving artifacts'
archiveArtifacts 'output.txt'
}
}

View File

@ -17,4 +17,4 @@ ENV KAGGLE_KEY=""
COPY ./script.sh ./
CMD ./script.sh 300
# CMD ./script.sh 300