Revert "Update Jenkinsfile and Dockerfile"
This reverts commit 7afd9db341
.
This commit is contained in:
parent
546e7fe2dc
commit
fc008c6bd3
13
Dockerfile
13
Dockerfile
@ -1,19 +1,14 @@
|
|||||||
FROM ubuntu:latest
|
FROM ubuntu:latest
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y python3-pip unzip coreutils
|
||||||
python3-pip \
|
|
||||||
unzip \
|
|
||||||
coreutils
|
|
||||||
|
|
||||||
RUN pip install --user kaggle pandas scikit-learn tensorflow
|
RUN pip install --user kaggle pandas scikit-learn tensorflow
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY ./data_processing.sh ./
|
COPY ./data_processing.sh ./
|
||||||
COPY ./model.py ./
|
|
||||||
COPY ./OrangeQualityData.csv ./
|
COPY ./OrangeQualityData.csv ./
|
||||||
COPY ./requirements.txt ./
|
COPY ./orange_quality_model_tf.h5 ./
|
||||||
|
COPY ./predictions_tf.json ./
|
||||||
|
|
||||||
RUN pip install --user -r requirements.txt
|
CMD ["python3", "data_processing.sh"]
|
||||||
|
|
||||||
CMD ["python3", "model.py"]
|
|
||||||
|
45
Jenkinsfile
vendored
45
Jenkinsfile
vendored
@ -8,16 +8,6 @@ pipeline {
|
|||||||
defaultValue: '10000',
|
defaultValue: '10000',
|
||||||
name: 'CUTOFF',
|
name: 'CUTOFF',
|
||||||
description: 'Liczba wierszy do obcięcia ze zbioru danych')
|
description: 'Liczba wierszy do obcięcia ze zbioru danych')
|
||||||
string(
|
|
||||||
defaultValue: '',
|
|
||||||
name: 'TRAINING_PARAMS',
|
|
||||||
description: 'Parametry trenowania'
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
environment {
|
|
||||||
DATASET_PROJECT = 's123456-create-dataset'
|
|
||||||
DATA_DIR = 'data'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
@ -26,17 +16,6 @@ pipeline {
|
|||||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s464906/ium_464906']]])
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s464906/ium_464906']]])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Copy Dataset') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
copyArtifacts(
|
|
||||||
projectName: "${DATASET_PROJECT}",
|
|
||||||
selector: lastSuccessful(),
|
|
||||||
target: "${env.DATA_DIR}"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Set execute permission') {
|
stage('Set execute permission') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
@ -56,29 +35,5 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Install Dependencies') {
|
|
||||||
steps {
|
|
||||||
sh 'pip install -r requirements.txt'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('Train Model') {
|
|
||||||
steps {
|
|
||||||
sh "python model.py ${params.TRAINING_PARAMS}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('Archive Model') {
|
|
||||||
steps {
|
|
||||||
archiveArtifacts artifacts: 'orange_quality_model_tf.h5', allowEmptyArchive: true
|
|
||||||
archiveArtifacts artifacts: 'predictions_tf.json', allowEmptyArchive: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
cleanWs()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
tensorflow
|
|
||||||
pandas
|
|
||||||
scikit-learn
|
|
Loading…
Reference in New Issue
Block a user