diff --git a/Dockerfile b/Dockerfile index 7ddd601..3189bb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ COPY KaggleV2-May-2016.csv ./ COPY create_data.py ./ COPY stats_data.py ./ -CMD ["python", "./create_data.py"] -CMD ["python", "./stats_data.py"] +CMD ["python", "create_data.py"] +CMD ["python", "stats_data.py"] # RUN kaggle datasets download -d joniarroba/noshowappointments diff --git a/Jenkinsfile b/Jenkinsfile index ef0aede..1a1e6f5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,6 +53,7 @@ pipeline { sh "chmod u+x ./statistics.sh" sh "./statistics.sh" archiveArtifacts 'statistics.csv' + sh "python stats_data.py" } } }