Compare commits
2 Commits
72fd6e2f6f
...
144ee6c2d6
Author | SHA1 | Date | |
---|---|---|---|
144ee6c2d6 | |||
754356990a |
@ -1,4 +1,7 @@
|
||||
FROM jupyter/tensorflow-notebook
|
||||
FROM ubuntu:latest
|
||||
|
||||
RUN apt update && apt install -y \
|
||||
python3-pip
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
@ -6,6 +9,4 @@ COPY requirements.txt ./
|
||||
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY Data_download.ipynb ./
|
||||
|
||||
CMD jupyter execute Data_download.ipynb
|
||||
COPY Data_download.ipynb ./
|
||||
|
1
Jenkinsfile
vendored
1
Jenkinsfile
vendored
@ -26,6 +26,7 @@ pipeline {
|
||||
steps {
|
||||
withEnv(["KAGGLE_USERNAME=${KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${KAGGLE_KEY}" ]) {
|
||||
sh 'jupyter execute Data_download.ipynb'
|
||||
sh 'chmod 777 ./data_download.sh'
|
||||
sh './data_download.sh --cutoff ${CUTOFF}'
|
||||
archiveArtifacts artifacts: 'test_without_id_column.csv,cutoff_train.csv,test.csv,train.csv', followSymlinks: false
|
||||
|
1
stats/Jenkinsfile
vendored
1
stats/Jenkinsfile
vendored
@ -2,7 +2,6 @@ pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 'jvncziii/ium:latest'
|
||||
args '-it --entrypoint=/bin/bash'
|
||||
}
|
||||
}
|
||||
parameters {
|
||||
|
Loading…
Reference in New Issue
Block a user