This commit is contained in:
Paweł Skórzewski 2024-04-10 09:14:02 +02:00
parent e59191d963
commit f19da69a9f
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ WORKDIR /app
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
COPY ./create-dataset.py ./
COPY ~/.kaggle ./
# # Domyślne polecenie, które zostanie uruchomione w kontenerze po jego starcie
# CMD python3 create-dataset.py

View File

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