This commit is contained in:
Paweł Skórzewski 2024-04-03 09:40:27 +02:00
parent cd99951360
commit be8d422070
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,5 @@
FROM ubuntu:latest
RUN apt update && apt install -y python3-pip
RUN apt update && apt install -y python3-pip
RUN pip3 install --user datasets kaggle
RUN pip3 list

1
Jenkinsfile vendored
View File

@ -4,6 +4,7 @@ pipeline {
stage('Test') {
steps {
sh 'pip3 --version'
sh 'pip3 list'
}
}
}