Dockerfile
This commit is contained in:
parent
5f21137f2d
commit
5bcd4e4c8e
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -22,7 +22,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
withEnv (["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
withEnv (["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
||||||
sh 'python create-dataset.py'
|
sh 'python3 create-dataset.py'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Install the Kaggle API
|
||||||
|
pip install kaggle
|
||||||
# Download the dataset from Kaggle
|
# Download the dataset from Kaggle
|
||||||
kaggle datasets download -d mlg-ulb/creditcardfraud
|
kaggle datasets download -d mlg-ulb/creditcardfraud
|
||||||
|
|
Loading…
Reference in New Issue
Block a user