This commit is contained in:
ulaniuk 2022-04-03 22:38:17 +02:00
parent 8fc2e02e74
commit 9573169b9b
2 changed files with 5 additions and 1 deletions

View File

@ -14,3 +14,6 @@ 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_data.py"]

3
Jenkinsfile vendored
View File

@ -35,12 +35,13 @@ pipeline {
}
stage("Build docker") {
steps {
sh 'echo "BUILD DOCKER"'
sh 'docker build -t ium .'
}
}
stage("Data Preparation") {
steps {
sh 'echo "PREPARATION"'
sh 'echo "DATA PREPARATION"'
sh "chmod u+x ./preparation.sh"
sh "./preparation.sh"
archiveArtifacts 'KaggleV2-May-2016.csv'