From be8d4220703fb8798d86f18f773c709886b29302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Sk=C3=B3rzewski?= Date: Wed, 3 Apr 2024 09:40:27 +0200 Subject: [PATCH] Debug 9 --- Dockerfile | 4 +++- Jenkinsfile | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) 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' } } }