created dockerfile

This commit is contained in:
s495716 2024-03-29 10:47:21 +01:00
parent 9e80e83826
commit eb59558e96
4 changed files with 22 additions and 2 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM jupyter/tensorflow-notebook
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY Data_download.ipynb ./
CMD jupyter execute Data_download.ipynb

4
Jenkinsfile vendored
View File

@ -1,5 +1,7 @@
pipeline {
agent any
agent {
dockerfile true
}
parameters {
string(
defaultValue: 'worldwidepaniel',

5
requirements.txt Normal file
View File

@ -0,0 +1,5 @@
numpy==1.26.4
kaggle==1.6.8
pandas==2.2.1
jupyterlab==4.1.5
scikit-learn==1.4.0

4
stats/Jenkinsfile vendored
View File

@ -1,5 +1,7 @@
pipeline {
agent any
agent {
dockerfile { image 'jvncziii/ium:latest' }
}
parameters {
buildSelector(
defaultSelector: lastSuccessful(),