fasdafsdafs
This commit is contained in:
parent
0710ae8d0b
commit
8056ebb002
17
Dockerfile
17
Dockerfile
@ -1,18 +1,23 @@
|
||||
FROM python:3.7
|
||||
|
||||
ARG KAGGLE_USERNAME
|
||||
|
||||
ARG KAGGLE_KEY
|
||||
|
||||
WORKDIR /
|
||||
|
||||
RUN pip install --user kaggle
|
||||
|
||||
RUN pip install --user pandas
|
||||
|
||||
RUN pip install --user sklearn
|
||||
|
||||
COPY KaggleV2-May-2016.csv ./
|
||||
|
||||
COPY create_data.py ./
|
||||
|
||||
COPY stats_data.py ./
|
||||
|
||||
CMD python create_data.py
|
||||
CMD python stats.py
|
||||
CMD ["python", "./create_data.py"]
|
||||
|
||||
CMD ["python", "./stats_data.py"]
|
||||
|
||||
# RUN kaggle datasets download -d joniarroba/noshowappointments
|
||||
|
||||
# RUN unzip -o noshowappointments.zip
|
25
Jenkinsfile
vendored
25
Jenkinsfile
vendored
@ -11,10 +11,16 @@ pipeline {
|
||||
description: 'Kaggle username',
|
||||
name: 'KAGGLE_USERNAME'
|
||||
)
|
||||
string(
|
||||
defaultValue: '10',
|
||||
description: 'Value for head command',
|
||||
name: 'CUTOFF'
|
||||
)
|
||||
}
|
||||
environment {
|
||||
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
|
||||
KAGGLE_KEY="$params.KAGGLE_KEY"
|
||||
CUTOFF="$params.CUTOFF"
|
||||
}
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
@ -29,8 +35,23 @@ pipeline {
|
||||
}
|
||||
stage("Build Docker") {
|
||||
steps {
|
||||
sh 'docker build -t ium .'
|
||||
}
|
||||
sh 'docker build -t ium_478855 .'
|
||||
}
|
||||
}
|
||||
stage("Dara Preparation") {
|
||||
steps {
|
||||
sh 'echo "PREPARATION"'
|
||||
sh "chmod u+x ./preparation.sh"
|
||||
sh "./preparation.sh"
|
||||
archiveArtifacts 'KaggleV2-May-2016.csv'
|
||||
}
|
||||
}
|
||||
stage("Statistics") {
|
||||
steps {
|
||||
sh 'echo "STATISTICS"'
|
||||
sh "chmod u+x ./statistics.sh"
|
||||
sh "./statistics.sh"
|
||||
archiveArtifacts 'statistics.csv'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user