diff --git a/Dockerfile b/Dockerfile index a64ea55..43bec08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,5 @@ FROM ubuntu:latest -RUN apt update && apt install -y python3-pip \ No newline at end of file +RUN apt update && apt install -y python3-pip +RUN pip3 install --user datasets kaggle +RUN pip3 list \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile index b4c2ae3..caa776a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,7 @@ pipeline { stage('Test') { steps { sh 'pip3 --version' + sh 'pip3 list' } } }