diff --git a/Dockerfile b/Dockerfile index 4887827..7f36b61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,6 @@ RUN pip install kaggle RUN pip install --user pandas RUN pip install --user scikit-learn RUN pip install --user matplotlib -RUN pip install --user geopandas WORKDIR /app diff --git a/Jenkinsfile b/Jenkinsfile index ddc67b2..401b4d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { def customImage = docker.build("custom-image") customImage.inside { - sh 'IUM_2.py' + sh 'python3 ./IUM_2.py' archiveArtifacts artifacts: 'meteorite-landings.csv meteorite_train.csv meteorite_test.csv meteorite_val.csv', onlyIfSuccessful: true } }