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 KaggleV2-May-2016.csv ./
COPY create_data.py ./ COPY create_data.py ./
COPY stats_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") { stage("Build docker") {
steps { steps {
sh 'echo "BUILD DOCKER"'
sh 'docker build -t ium .' sh 'docker build -t ium .'
} }
} }
stage("Data Preparation") { stage("Data Preparation") {
steps { steps {
sh 'echo "PREPARATION"' sh 'echo "DATA PREPARATION"'
sh "chmod u+x ./preparation.sh" sh "chmod u+x ./preparation.sh"
sh "./preparation.sh" sh "./preparation.sh"
archiveArtifacts 'KaggleV2-May-2016.csv' archiveArtifacts 'KaggleV2-May-2016.csv'