This commit is contained in:
ulaniuk 2022-04-03 22:21:06 +02:00
parent 6e6ab65fe5
commit e93c360f94
2 changed files with 3 additions and 2 deletions

View File

@ -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

1
Jenkinsfile vendored
View File

@ -53,6 +53,7 @@ pipeline {
sh "chmod u+x ./statistics.sh"
sh "./statistics.sh"
archiveArtifacts 'statistics.csv'
sh "python stats_data.py"
}
}
}