Jenkinsfile 4 and dockerfile 2
This commit is contained in:
parent
524581b6d5
commit
0c72f98e1b
27
Dockerfile_2
Normal file
27
Dockerfile_2
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# Nasz obraz będzie dzidziczył z obrazu Ubuntu w wersji latest
|
||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
|
||||||
|
RUN apt update && apt install -y figlet
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN apt-get install -y python3
|
||||||
|
RUN apt-get install -y python3-pip
|
||||||
|
RUN python3 -m pip install pandas
|
||||||
|
RUN python3 -m pip install numpy
|
||||||
|
RUN python3 -m pip install torch
|
||||||
|
RUN python3 -m pip install torchvision
|
||||||
|
|
||||||
|
COPY ./zadanie1.py ./
|
||||||
|
COPY ./Customers.csv ./
|
||||||
|
#COPY ./train.py ./
|
||||||
|
COPY ./test.py ./
|
||||||
|
#COPY ./cifar_net.pth ./
|
||||||
|
|
||||||
|
RUN chmod +r ./Customers.csv
|
||||||
|
#RUN chmod +x ./zadanie1.py
|
||||||
|
#RUN chmod +x ./train.py
|
||||||
|
RUN chmod +x ./test.py
|
||||||
|
|
||||||
|
CMD python3 ./test.py
|
44
Jenkinsfile_4
Normal file
44
Jenkinsfile_4
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
filename 'Dockerfile_2.build'
|
||||||
|
// dir 'build'
|
||||||
|
label 'label'
|
||||||
|
//additionalBuildArgs '--build-arg version=1.0.2'
|
||||||
|
//args '-v /tmp:/tmp'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
parameters {
|
||||||
|
buildSelector (
|
||||||
|
name: 'BUILD_SELECTOR',
|
||||||
|
defaultSelector: lastSuccessful(),
|
||||||
|
description: 'Which build to use for copying artifacts?',
|
||||||
|
)
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Load Artifact') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
copyArtifacts fingerprintArtifacts: true, projectName: 's452627-training', selector: buildParameter("BUILD_SELECTOR")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Run Script') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
//sh "chmod +x -R ${env.WORKSPACE}"
|
||||||
|
//sh './make_statistic.sh | tee output_statistic.txt'
|
||||||
|
// sh 'docker build . -t jhenyk/ium:latest'
|
||||||
|
// sh 'docker run jhenyk/ium:latest'
|
||||||
|
sh 'node --version'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
stage('Archive Output') {
|
||||||
|
steps {
|
||||||
|
archiveArtifacts 'testresults.txt'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user