changed dockerfile once again...
This commit is contained in:
parent
3bbf6d316d
commit
9d13064890
@ -8,6 +8,4 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|||||||
|
|
||||||
COPY Data_download.ipynb ./
|
COPY Data_download.ipynb ./
|
||||||
|
|
||||||
COPY --chmod=755 /scripts /scripts
|
ENTRYPOINT ["/bin/bash"]
|
||||||
|
|
||||||
ENTRYPOINT ["/scripts/entrypoint.sh"]
|
|
||||||
|
1
Jenkinsfile
vendored
1
Jenkinsfile
vendored
@ -26,6 +26,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
withEnv(["KAGGLE_USERNAME=${KAGGLE_USERNAME}",
|
withEnv(["KAGGLE_USERNAME=${KAGGLE_USERNAME}",
|
||||||
"KAGGLE_KEY=${KAGGLE_KEY}" ]) {
|
"KAGGLE_KEY=${KAGGLE_KEY}" ]) {
|
||||||
|
sh 'jupyter execute Data_download.ipynb'
|
||||||
sh 'chmod 777 ./data_download.sh'
|
sh 'chmod 777 ./data_download.sh'
|
||||||
sh './data_download.sh --cutoff ${CUTOFF}'
|
sh './data_download.sh --cutoff ${CUTOFF}'
|
||||||
archiveArtifacts artifacts: 'test_without_id_column.csv,cutoff_train.csv,test.csv,train.csv', followSymlinks: false
|
archiveArtifacts artifacts: 'test_without_id_column.csv,cutoff_train.csv,test.csv,train.csv', followSymlinks: false
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
jupyter execute Data_download.ipynb
|
|
||||||
/bin/bash
|
|
Loading…
Reference in New Issue
Block a user