created dockerfile
This commit is contained in:
parent
9e80e83826
commit
eb59558e96
11
Dockerfile
Normal file
11
Dockerfile
Normal 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
4
Jenkinsfile
vendored
@ -1,5 +1,7 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
dockerfile true
|
||||
}
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: 'worldwidepaniel',
|
||||
|
5
requirements.txt
Normal file
5
requirements.txt
Normal 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
4
stats/Jenkinsfile
vendored
@ -1,5 +1,7 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
dockerfile { image 'jvncziii/ium:latest' }
|
||||
}
|
||||
parameters {
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
|
Loading…
Reference in New Issue
Block a user