Attempt 2

This commit is contained in:
Paweł Skórzewski 2024-04-10 09:19:02 +02:00
parent 561b359494
commit 988621e1d8
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@ FROM ubuntu:latest
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
RUN apt update && apt install -y python3-pip
RUN pip3 install --user datasets kaggle
RUN pip3 install datasets kaggle
RUN pip3 list

View File

@ -50,7 +50,9 @@ pipeline {
sh 'pip3 --version'
sh 'python3 --version'
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'find . -name .kaggle'
sh 'ls -al'
sh 'find / -name .kaggle'
sh 'ls -al /'
sh 'kaggle datasets list'
}