Compare commits

...

2 Commits

Author SHA1 Message Date
144ee6c2d6 forgot about jupyter 2024-03-29 15:34:52 +01:00
754356990a hope it runs now :v 2024-03-29 15:31:16 +01:00
3 changed files with 6 additions and 5 deletions

View File

@ -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
View File

@ -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
View File

@ -2,7 +2,6 @@ pipeline {
agent {
docker {
image 'jvncziii/ium:latest'
args '-it --entrypoint=/bin/bash'
}
}
parameters {