fasdafsdafs

This commit is contained in:
ulaniuk 2022-04-03 22:16:19 +02:00
parent 0710ae8d0b
commit 8056ebb002
2 changed files with 36 additions and 10 deletions

View File

@ -1,18 +1,23 @@
FROM python:3.7 FROM python:3.7
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
WORKDIR / WORKDIR /
RUN pip install --user kaggle RUN pip install --user kaggle
RUN pip install --user pandas RUN pip install --user pandas
RUN pip install --user sklearn 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", "./create_data.py"]
CMD python stats.py
CMD ["python", "./stats_data.py"]
# RUN kaggle datasets download -d joniarroba/noshowappointments
# RUN unzip -o noshowappointments.zip

29
Jenkinsfile vendored
View File

@ -11,10 +11,16 @@ pipeline {
description: 'Kaggle username', description: 'Kaggle username',
name: 'KAGGLE_USERNAME' name: 'KAGGLE_USERNAME'
) )
string(
defaultValue: '10',
description: 'Value for head command',
name: 'CUTOFF'
)
} }
environment { environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME" KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
KAGGLE_KEY="$params.KAGGLE_KEY" KAGGLE_KEY="$params.KAGGLE_KEY"
CUTOFF="$params.CUTOFF"
} }
stages { stages {
stage('Checkout') { stage('Checkout') {
@ -27,11 +33,26 @@ pipeline {
} }
} }
} }
stage ("Build Docker") { stage("Build Docker") {
steps { 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'
} }
} }
}
} }
} }